Update to 2.14.0
- Translation update from Weblate (de, nl, pl, sv, tr, uk updated to 100%) - Update emoji annotations from CLDR - Improve code to determine the default dictionaries and input methods for the current locale (Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/209) - Improve behaviour of key combinations which normally select text when a preëdit is open (Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/210) - Show possible compose completions on request (Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/208) - When setting self._input_mode to False (direct input), set self._hide_input to False as well - Never mix context from surrounding text with remembered context (Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/204) - Rename the option “Use a workaround for a bug in Qt im module” to “Avoid using the forward_key_event() function” (Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/200) - Handle End, Home, KP_End, KP_Home also as commit trigger keys. For normal preedits *and* for compose preedits. (Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/199) - Improve typing space or Tab when the cursor is not at the end of the preedit (Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/198) - Completly new implementation of reopening the preedit on arrow-keys, BackSpace and Delete. Should be much more reliable. (Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/196) - Special handling of Left and BackSpace when a candidate is manually selected (Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/178)
This commit is contained in:
parent
8b207af513
commit
05088ef1ca
11
.gitignore
vendored
11
.gitignore
vendored
@ -168,3 +168,14 @@
|
|||||||
/ibus-typing-booster-2.12.1.tar.gz
|
/ibus-typing-booster-2.12.1.tar.gz
|
||||||
/ibus-typing-booster-2.13.0.tar.gz
|
/ibus-typing-booster-2.13.0.tar.gz
|
||||||
/ibus-typing-booster-2.13.1.tar.gz
|
/ibus-typing-booster-2.13.1.tar.gz
|
||||||
|
/ibus-typing-booster-2.13.2.tar.gz
|
||||||
|
/ibus-typing-booster-2.13.3.tar.gz
|
||||||
|
/ibus-typing-booster-2.13.4.tar.gz
|
||||||
|
/ibus-typing-booster-2.13.5.tar.gz
|
||||||
|
/ibus-typing-booster-2.13.6.tar.gz
|
||||||
|
/ibus-typing-booster-2.13.7.tar.gz
|
||||||
|
/ibus-typing-booster-2.13.8.tar.gz
|
||||||
|
/ibus-typing-booster-2.13.9.tar.gz
|
||||||
|
/ibus-typing-booster-2.13.10.tar.gz
|
||||||
|
/ibus-typing-booster-2.13.11.tar.gz
|
||||||
|
/ibus-typing-booster-2.14.0.tar.gz
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
Name: ibus-typing-booster
|
Name: ibus-typing-booster
|
||||||
Version: 2.13.1
|
Version: 2.14.0
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: A completion input method
|
Summary: A completion input method
|
||||||
License: GPLv3+ and ASL 2.0
|
License: GPLv3+ and ASL 2.0
|
||||||
@ -239,6 +239,35 @@ fi
|
|||||||
%{_datadir}/applications/emoji-picker.desktop
|
%{_datadir}/applications/emoji-picker.desktop
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Aug 12 2021 Mike FABIAN <mfabian@redhat.com> - 2.14.0-1
|
||||||
|
- Update to 2.14.0
|
||||||
|
- Translation update from Weblate (de, nl, pl, sv, tr, uk updated to 100%)
|
||||||
|
- Update emoji annotations from CLDR
|
||||||
|
- Improve code to determine the default dictionaries and input methods
|
||||||
|
for the current locale
|
||||||
|
(Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/209)
|
||||||
|
- Improve behaviour of key combinations which normally select text when a preëdit is open
|
||||||
|
(Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/210)
|
||||||
|
- Show possible compose completions on request
|
||||||
|
(Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/208)
|
||||||
|
- When setting self._input_mode to False (direct input),
|
||||||
|
set self._hide_input to False as well
|
||||||
|
- Never mix context from surrounding text with remembered context
|
||||||
|
(Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/204)
|
||||||
|
- Rename the option “Use a workaround for a bug in Qt im module” to
|
||||||
|
“Avoid using the forward_key_event() function”
|
||||||
|
(Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/200)
|
||||||
|
- Handle End, Home, KP_End, KP_Home also as commit trigger keys.
|
||||||
|
For normal preedits *and* for compose preedits.
|
||||||
|
(Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/199)
|
||||||
|
- Improve typing space or Tab when the cursor is not at the end of the preedit
|
||||||
|
(Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/198)
|
||||||
|
- Completly new implementation of reopening the preedit on
|
||||||
|
arrow-keys, BackSpace and Delete. Should be much more reliable.
|
||||||
|
(Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/196)
|
||||||
|
- Special handling of Left and BackSpace when a candidate is manually selected
|
||||||
|
(Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/178)
|
||||||
|
|
||||||
* Tue Aug 03 2021 Mike FABIAN <mfabian@redhat.com> - 2.13.1-1
|
* Tue Aug 03 2021 Mike FABIAN <mfabian@redhat.com> - 2.13.1-1
|
||||||
- Update to 2.13.1
|
- Update to 2.13.1
|
||||||
- Translation update from Weblate (de, nl, pl, tr, uk updated to 100%)
|
- Translation update from Weblate (de, nl, pl, tr, uk updated to 100%)
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (ibus-typing-booster-2.13.1.tar.gz) = 41e9ac6a1e8805ec42532c7819c30971f3923ae28ef67965df7f42b79037bcabab61e2aa2c96e572d57e9ec9dc4fb9f3fc52cfef1b53e93dbef127cbe55db79a
|
SHA512 (ibus-typing-booster-2.14.0.tar.gz) = 5db5791e25caba4fa845c33198c20365c1e07cbbbfd6fe2d1d3145771b16031cc9baa55f950870fc11d4079ce04dac246603e45285550e856fc403342ae51676
|
||||||
|
Loading…
Reference in New Issue
Block a user