forked from rime/librime
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix(user_db): unwanted implicit instantiation of UserDbFormat template Fixes rime#188: UserDbFormat<BaseDb>::extension not working * fix(config_compiler): "/" mistaken as path separator in merged map key (rime#192) Fixes rime#190 * fix(ConfigFileUpdate): no need to create user build if shared build is up-to-date * fix(SchemaUpdate): read compiled schema from shared build if there is no user build * chore(release tag): deprecating tag name prefix 'rime-' in favor of conventional 'v' BREAKING CHANGE: After 1.3.0 release, we'll no longer be creating tags in the format 'rime-X.Y.Z'. Downstream packagers please change automated scripts accordingly. * chore(CMakeLists.txt): bump version to 1.3.0 * chore(release): 1.3.0 🎉 * chore(tags): adopt semver "X.Y.Z" without prefix [ci skip] * fix(config_file_update): clean up deprecated user copy (rime#193) * fix(config_file_update): trash deprecated user copy created by older rime version * fix(config_file_update): create trash directory when needed to trash config files * fix(config_file_update): prefer rime-installed user copy to shared minimal version if numbers match' * fix(thirdparty/src/leveldb): do not link to snappy library * chore(bump-version.sh): npm version script * chore(release): 1.3.1 🎉 * docs(README): replace rime/brise with rime/plum * Add ENABLE_ASAN option This enable the Address Sanitizer memory detect when turns on, make us easy to find out the memory problems. * Fix a heap-use-after-free error found by asan ctx->composition().Forward() might invalidated the iterator when did a push_back, we can't use `seg` anymore. * chore(engine.cc): Google code style; more informative name * chore(REAME.md): require boost>=1.48, for boost::locale [ci skip] * fix(config_compiler): support creating list in-place by __patch and __merge * fix(CMakeLists.txt): do not link binaries when building static library * refactor(editor): extract helper class key_binding_processor * refactor(navigator): key bindings * fix(config_compiler): ambiguous operator overload with cmake option ENABLE_LOGGING=OFF Fixes rime#211 * feat(language): shared user dictionary per language (Closes rime#184) (rime#214) * fix(table_translator): enable encoding uniquified commit history * feat: always_show_comments option (rime#220) * feat: add always_show_comments option * fix: address feedback Line wraps
- Loading branch information
Showing
38 changed files
with
611 additions
and
333 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
tag-version-prefix="rime-" | ||
tag-version-prefix="" | ||
message="chore(release): %s :tada:" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
version=$(node -p 'require("./package.json").version') | ||
|
||
sed -i'~' 's/set(\(rime_version\) .*)/set(\1 '$version')/' CMakeLists.txt | ||
rm 'CMakeLists.txt~' | ||
git add CMakeLists.txt | ||
|
||
conventional-changelog -p angular -i CHANGELOG.md -s | ||
git add CHANGELOG.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.