update to 0.0.30 upstream version
- simplify database structure and code - The Swedish hunspell dictionary is in UTF-8, not ISO-8859-1 - SQL LIKE should behave case sensitively - Do not throw away the input phrase in hunspell_suggest.suggest() - Merge candidates which have the same resulting phrase in select_words() - Remove phrases always from the user database when typing Alt+Number - Sync memory user database “mudb” to disk user database “user_db” on focus out - Delete all records from mudb after syncing to user_db - Do not prevent phrases of length < 4 to be added to the frequency database - Resolves: #966947 - When typing a/ with the da_DK ibus-typing-booster, one gets weird matches like a/ACJSTVW - Do not use lang_chars for matching in the hunspell dictionaries, return immediately if input contains a “/” (Resolves: #966947) - Remove lang_chars variable - Use re.escape() to escape the string typed by the user correctly for use in a regular expression - When removing a phrase with Alt+Number, remove it independent of the input_phrase
This commit is contained in:
parent
d354b70403
commit
11cb1b4d39
1
.gitignore
vendored
1
.gitignore
vendored
@ -21,3 +21,4 @@
|
|||||||
/ibus-typing-booster-0.0.27.tar.gz
|
/ibus-typing-booster-0.0.27.tar.gz
|
||||||
/ibus-typing-booster-0.0.28.tar.gz
|
/ibus-typing-booster-0.0.28.tar.gz
|
||||||
/ibus-typing-booster-0.0.29.tar.gz
|
/ibus-typing-booster-0.0.29.tar.gz
|
||||||
|
/ibus-typing-booster-0.0.30.tar.gz
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
Name: ibus-typing-booster
|
Name: ibus-typing-booster
|
||||||
Version: 0.0.29
|
Version: 0.0.30
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: A typing booster engine for the IBus platform
|
Summary: A typing booster engine for the IBus platform
|
||||||
License: GPLv3+
|
License: GPLv3+
|
||||||
@ -74,6 +74,23 @@ make install DESTDIR=${RPM_BUILD_ROOT} NO_INDEX=true INSTALL="install -p" pkg
|
|||||||
%{_datadir}/applications/ibus-setup-typing-booster.desktop
|
%{_datadir}/applications/ibus-setup-typing-booster.desktop
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sun May 26 2013 Mike FABIAN <mfabian@redhat.com> - 0.0.30-1
|
||||||
|
- Update to 0.0.30 upstream version
|
||||||
|
- simplify database structure and code
|
||||||
|
- The Swedish hunspell dictionary is in UTF-8, not ISO-8859-1
|
||||||
|
- SQL LIKE should behave case sensitively
|
||||||
|
- Do not throw away the input phrase in hunspell_suggest.suggest()
|
||||||
|
- Merge candidates which have the same resulting phrase in select_words()
|
||||||
|
- Remove phrases always from the user database when typing Alt+Number
|
||||||
|
- Sync memory user database “mudb” to disk user database “user_db” on focus out
|
||||||
|
- Delete all records from mudb after syncing to user_db
|
||||||
|
- Do not prevent phrases of length < 4 to be added to the frequency database
|
||||||
|
- Resolves: #966947 - When typing a/ with the da_DK ibus-typing-booster, one gets weird matches like a/ACJSTVW
|
||||||
|
- Do not use lang_chars for matching in the hunspell dictionaries, return immediately if input contains a “/” (Resolves: #966947)
|
||||||
|
- Remove lang_chars variable
|
||||||
|
- Use re.escape() to escape the string typed by the user correctly for use in a regular expression
|
||||||
|
- When removing a phrase with Alt+Number, remove it independent of the input_phrase
|
||||||
|
|
||||||
* Tue May 14 2013 Mike FABIAN <mfabian@redhat.com> - 0.0.29-1
|
* Tue May 14 2013 Mike FABIAN <mfabian@redhat.com> - 0.0.29-1
|
||||||
- Update to 0.0.29 upstream version
|
- Update to 0.0.29 upstream version
|
||||||
- Resolves: #962609 - [abrt] ibus-typing-booster-0.0.28-1.fc19: main.py:107:__init__:AttributeError: tabsqlitedb instance has no attribute 'get_ime_property' (Fix setup tool to use the new class for parsing the config files)
|
- Resolves: #962609 - [abrt] ibus-typing-booster-0.0.28-1.fc19: main.py:107:__init__:AttributeError: tabsqlitedb instance has no attribute 'get_ime_property' (Fix setup tool to use the new class for parsing the config files)
|
||||||
|
Loading…
Reference in New Issue
Block a user