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

Skip to content

Commit ac5720a

Browse files
committed
Bump 0.0.7
1 parent 7c854ac commit ac5720a

File tree

5 files changed

+43
-4
lines changed

5 files changed

+43
-4
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.6)
3+
project(fcitx5-android VERSION 0.0.7)
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 = 4
16+
private const val baseVersionCode = 5
1717

1818
fun calculateVersionCode(abi: String): Int {
1919
val abiId = when (abi) {
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# 0.0.7 - Plugin Service and User Data Export/Import
2+
3+
## Highlights
4+
5+
- Plugin Service: plugins can have their own service and communicate with the input method. Currently "Clipboard Filter Plugin" is available for applying ClearURLs rules.
6+
- User Data Export/Import: export Android preference and Fcitx configuration as .zip archive, then import it later or on other devices.
7+
8+
### libime 1.1.1
9+
10+
- Updated language model, which may "improve the experience on Pinyin in a significant way"
11+
12+
### fcitx5-chinese-addons 5.1.0
13+
14+
- New custom phrase in Pinyin, Learn more at https://github.com/fcitx/fcitx5-chinese-addons/pull/138
15+
16+
## New features
17+
18+
- Show a smile face icon on comma key to indicate it's long press action
19+
- Scale candidate text if it's too long
20+
- Keypress sound effect settings
21+
- Plugins can have their own service
22+
- Option for switch back to keyboard after paste in clipboard UI
23+
- Don't follow system font scale settings in keyboard buttons
24+
- Save fcitx state before device shutdown
25+
- Option for switch back to keyboard on focus change
26+
- User data export and import
27+
- Exclude Activity launched by keyboard from recents
28+
- Prompt before clear clipboard database in developer settings
29+
- Option to reset cursor position after commit text
30+
31+
## Bug fixes
32+
33+
- Missing character in some emoticon
34+
- Missing EditorInfo inspector preference UI
35+
- Potential crash in InlineSuggestionsUi
36+
- Import table configuration file with empty value
37+
- Edit another clipboard entry while in clipboard editing dialog
38+
- Potential crash when showing the keyboard for the first time
39+
- Changes to fcitx configuration via settings UI cannot be saved sometimes

lib/fcitx5/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-lib-fcitx5 VERSION 0.0.5)
3+
project(fcitx5-android-lib-fcitx5 VERSION 0.0.7)
44

55
set(CMAKE_CXX_STANDARD 17)
66

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.6)
3+
project(fcitx5-android-plugin-anthy VERSION 0.0.7)
44

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

0 commit comments

Comments
 (0)