Skip to content

Commit

Permalink
docs: update CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
kanru committed Jul 22, 2024
1 parent f1178cd commit 80a76c7
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 5 deletions.
23 changes: 20 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,32 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [unreleased]
## [v2.1.0-rc.1] - 2024-07-22

### Added
### Features

- Add Carpalx, Colemak-DH ANSI, and Colemak-DH Orth layout.
- Now requires libchewing 0.9.0 to build.
- Add Carpalx, Colemak-DH ANSI, Colemak-DH Orth, and Workman layout.
- Support toneless (fuzzy) conversion modes from libchewiwng.
- New about dialog in the setup program with easy to access debug-info.
- Settings schema now has value range.
- New option to disable Shift+Space as fullwidth toggle key.
- New option to disable Chi/Eng toggle key.
- New option to start ibus-chewing in English mode.

### Changed

- Clear pre-edit buffer before commit it to engine to avoid showing both buffer
on the screen.
- Replace deprecated AdwPreferencesWindow with AdwApplicationWindow.
- Cleanup unused code created by GOB.
- Use GSettings binding to handle settings update.
- Miscellaneous compiler warning fixes.

### Removed

- Remove log file support.
- Remove unused input style code.

## [v2.0.0] - 2024-02-17

Expand Down Expand Up @@ -58,4 +74,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

See [ChangeLog-1.x](./ChangeLog-1.x)

[v2.1.0-rc.1]: https://github.com/chewing/ibus-chewing/compare/v2.0.0...v2.1.0-rc.1
[v2.0.0]: https://github.com/chewing/ibus-chewing/compare/1.6.2...HEAD
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ set(PRJ_SUMMARY "The Chewing engine for IBus input platform")
set(SUMMARY_TRANSLATIONS "zh_TW" "IBus新酷音輸入法")

set(PRJ_VER_MAJOR 2)
set(PRJ_VER_MINOR 0)
set(PRJ_VER_MINOR 1)
set(PRJ_VER_PATCH 0)
set(PRJ_VER_EXTRA "")
set(PRJ_VER_EXTRA "rc.1")

set(PRJ_VER "${PRJ_VER_MAJOR}.${PRJ_VER_MINOR}.${PRJ_VER_PATCH}")
if(DEFINED PRJ_VER_EXTRA)
Expand Down

0 comments on commit 80a76c7

Please sign in to comment.