Skip to content

Commit

Permalink
chore(release): 1.4.0 🎉
Browse files Browse the repository at this point in the history
  • Loading branch information
lotem committed Jan 28, 2019
1 parent 392f1b8 commit 1bd13ab
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
15 changes: 13 additions & 2 deletions CHANGES.md → CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
<a name="1.4.0"></a>
## 1.4.0 (2019-01-28)


* migrate to librime 1.x API
* **rime.xml:** udpate ibus component name to `im.rime.Rime`

#### Bug Fixes

* **rime_main.cc:** deploy ibus_rime.yaml on maintenance ([8e081264](https://github.com/rime/ibus-rime/commit/8e081264977bfefdd233ebeb1235f11be55b28f8))



<a name="1.3.0"></a>
## 1.3.0 (2018-04-22)

Expand Down Expand Up @@ -76,5 +89,3 @@
* **UI**: new Rime logo.
* **UI**: add Chinese/ascii mode indicator, and Deploy button to status bar.
* **UI**: show notification when deploying Rime.


2 changes: 1 addition & 1 deletion librime
Submodule librime updated 52 files
+37 −0 CHANGELOG.md
+21 −13 CMakeLists.txt
+36 −0 Dockerfile
+2 −0 README.md
+5 −5 appveyor.install.bat
+0 −1 build.bat
+8 −0 data/test/config_merge_test.yaml
+1 −1 package.json
+49 −8 src/rime/algo/syllabifier.cc
+12 −2 src/rime/algo/syllabifier.h
+4 −0 src/rime/common.h
+15 −2 src/rime/config/config_compiler.cc
+2 −4 src/rime/config/config_compiler.h
+2 −4 src/rime/config/config_compiler_impl.h
+19 −4 src/rime/config/config_component.cc
+22 −7 src/rime/config/config_component.h
+5 −4 src/rime/core_module.cc
+313 −0 src/rime/dict/corrector.cc
+131 −0 src/rime/dict/corrector.h
+29 −7 src/rime/dict/dict_compiler.cc
+2 −0 src/rime/dict/dict_compiler.h
+3 −0 src/rime/dict/dict_module.cc
+10 −11 src/rime/dict/dictionary.cc
+5 −4 src/rime/dict/dictionary.h
+1 −2 src/rime/dict/prism.cc
+4 −3 src/rime/dict/prism.h
+6 −7 src/rime/dict/user_dictionary.cc
+1 −1 src/rime/dict/user_dictionary.h
+9 −71 src/rime/gear/editor.cc
+2 −7 src/rime/gear/editor.h
+10 −11 src/rime/gear/gears_module.cc
+46 −0 src/rime/gear/key_binding_processor.h
+91 −0 src/rime/gear/key_binding_processor_impl.h
+10 −3 src/rime/gear/memory.cc
+4 −6 src/rime/gear/memory.h
+78 −45 src/rime/gear/navigator.cc
+16 −7 src/rime/gear/navigator.h
+4 −4 src/rime/gear/poet.h
+140 −48 src/rime/gear/script_translator.cc
+7 −0 src/rime/gear/script_translator.h
+4 −15 src/rime/gear/table_translator.cc
+7 −7 src/rime/gear/table_translator.h
+4 −4 src/rime/gear/translator_commons.h
+18 −0 src/rime/language.cc
+34 −0 src/rime/language.h
+10 −4 src/rime/lever/deployment_tasks.cc
+7 −0 src/rime/service.cc
+1 −0 src/rime/service.h
+6 −0 test/config_compiler_test.cc
+6 −4 test/config_test.cc
+151 −0 test/corrector_test.cc
+1 −1 travis-before-install.sh
2 changes: 1 addition & 1 deletion plum
2 changes: 1 addition & 1 deletion rime_config.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef RIME_CONFIG_H_
#define RIME_CONFIG_H_

#define RIME_VERSION "1.3"
#define RIME_VERSION "1.4.0"

#define IBUS_RIME_INSTALL_PREFIX "/usr"
#define IBUS_RIME_SHARED_DATA_DIR IBUS_RIME_INSTALL_PREFIX "/share/rime-data"
Expand Down

0 comments on commit 1bd13ab

Please sign in to comment.