Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 024241c

Browse files
committed
Bump 0.0.6
1 parent 94bf2dd commit 024241c

File tree

4 files changed

+27
-3
lines changed

4 files changed

+27
-3
lines changed

app/src/main/cpp/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.18)
22

3-
project(fcitx5-android VERSION 0.0.5)
3+
project(fcitx5-android VERSION 0.0.6)
44

55
set(CMAKE_CXX_STANDARD 17)
66

build-logic/convention/src/main/kotlin/Versions.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ object Versions {
1313
private const val defaultBuildTools = "33.0.2"
1414

1515
// NOTE: increase this value to bump version code
16-
private const val baseVersionCode = 3
16+
private const val baseVersionCode = 4
1717

1818
fun calculateVersionCode(abi: String): Int {
1919
val abiId = when (abi) {
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# 0.0.6 - Candidates Paging and Plugin System
2+
3+
## Highlights
4+
5+
- Candidates Paging: candidates are loaded on demand while scrolling through expanded candidate list
6+
- Plugin System: load fcitx addon from plugin apk to support more languages. Currently "Anthy Plugin" is available for Japanese input
7+
8+
## New features
9+
10+
- Load candidates on demand
11+
- Plugin System for build/detect/load fcitx addon from installed apk
12+
- Redesign CustomThemeActivity and LogActivity to look like AppCompact style
13+
- Show a button to switch to Google Voice Input if available
14+
- Automatically restart fcitx to reload input methods after import/delete table input methods
15+
- Support multi-select and delete in TableInputMethodFragment
16+
- Long press on switch preference to restore default value
17+
18+
## Bug fixes
19+
20+
- InputView won't be destroyed when switching theme, causing memory leak
21+
- Buttons on keyboard toolbar would disappear sometimes
22+
- Settings activity toolbar title would flash when enter/leave certain fragment
23+
- Keyboard keys won't accept touch events while pressing keyboard padding space
24+
- Selecting numeric characters from keyboard long-press popup would select candidate

plugin/anthy/src/main/cpp/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.18)
22

3-
project(fcitx5-android-plugin-anthy VERSION 0.0.5)
3+
project(fcitx5-android-plugin-anthy VERSION 0.0.6)
44

55
# For reproducible build
66
add_link_options("LINKER:--hash-style=gnu,--build-id=none")

0 commit comments

Comments
 (0)