1Name:       ibus-typing-booster
2Version:    2.13.0
3Release:    1%{?dist}
4Summary:    A completion input method
5License:    GPLv3+ and ASL 2.0
6URL:        https://mike-fabian.github.io/ibus-typing-booster/
7Source0:    https://github.com/mike-fabian/ibus-typing-booster/releases/download/%{version}/ibus-typing-booster-%{version}.tar.gz
8Requires:   ibus >= 1.5.3
9Requires:   m17n-lib
10%{?__python3:Requires: %{__python3}}
11Requires:   python3-dbus
12Requires:   python3-distro
13# Because of “from packing import version”:
14Requires:   python3-packaging
15Requires:   python3-enchant
16Requires:   python3-pyxdg
17%if 0%{?fedora} >= 24 || 0%{?rhel} > 7
18# Recommend reasonably good fonts which have most of the emoji:
19%if 0%{?fedora} <= 26
20Recommends: google-noto-emoji-fonts
21%endif
22Recommends: google-noto-emoji-color-fonts
23Recommends: gdouros-symbola-fonts
24# For better description of the dictionaries in the setup tool
25# makes it possible to search for full language and territory names
26# and not just locale codes:
27Recommends: langtable
28# To play a sound on error:
29Recommends: python3-simpleaudio
30%endif
31%if 0%{?fedora} >= 26 || 0%{?rhel} > 7
32# Save some space in the binary rpm by requiring the Fedora
33# packages which contain the emoji data files:
34Requires: cldr-emoji-annotation
35Requires: unicode-ucd
36%endif
37BuildRequires:  ibus-devel
38BuildRequires:  gcc
39%if 0%{?fedora} >= 24 || 0%{?rhel} > 7
40BuildRequires:  python3-devel
41BuildRequires:  python3-pyxdg
42%else
43BuildRequires:  python34-devel
44%endif
45# for the unit tests
46BuildRequires:  m17n-lib
47BuildRequires:  m17n-db-extras
48BuildRequires:  python3-enchant
49# Because of “from packing import version”:
50BuildRequires:   python3-packaging
51%if 0%{?fedora} && 0%{?fedora} >= 34
52BuildRequires:  python3-libvoikko
53BuildRequires:  voikko-fi
54%endif
55%if 0%{?fedora}
56BuildRequires:  appstream
57%endif
58BuildRequires:  libappstream-glib
59BuildRequires:  desktop-file-utils
60BuildRequires:  python3-gobject
61BuildRequires:  python3-gobject-base
62BuildRequires:  hunspell-cs
63BuildRequires:  hunspell-de
64BuildRequires:  hunspell-en
65BuildRequires:  hunspell-es
66BuildRequires:  hunspell-fr
67BuildRequires:  hunspell-it
68BuildRequires:  hunspell-ko
69BuildRequires:  glib2
70BuildRequires:  gtk3
71BuildRequires:  dconf
72BuildRequires:  dbus-x11
73BuildRequires:  ibus
74BuildRequires:  xorg-x11-server-Xvfb
75BuildRequires:  glibc-langpack-en
76BuildRequires:  glibc-langpack-cs
77BuildRequires:  glibc-langpack-km
78BuildRequires:  glibc-langpack-pt
79BuildRequires:  glibc-langpack-am
80BuildRequires:  glibc-langpack-de
81BuildRequires:  glibc-langpack-ar
82BuildRequires: make
83# A window manger is needed for the GUI test
84# BuildRequires:  i3
85BuildArch:  noarch
86
87%description
88Ibus-typing-booster is a context sensitive completion
89input method to speedup typing.
90
91%package tests
92Summary:        Tests for the %{name} package
93Requires:       %{name} = %{version}-%{release}
94
95%description tests
96The %{name}-tests package contains tests that can be used to verify
97the functionality of the installed %{name} package.
98
99%package -n emoji-picker
100Summary: An emoji selection tool
101Requires: ibus-typing-booster = %{version}-%{release}
102
103%description -n emoji-picker
104A simple application to find and insert emoji and other
105Unicode symbols.
106
107%prep
108%setup -q
109
110
111%build
112export PYTHON=%{__python3}
113%configure --disable-static --disable-additional --enable-installed-tests
114%make_build
115
116%install
117export PYTHON=%{__python3}
118%make_install NO_INDEX=true  pkgconfigdir=%{_datadir}/pkgconfig
119%py_byte_compile %{python3} /usr/share/ibus-typing-booster/engine
120%py_byte_compile %{python3} /usr/share/ibus-typing-booster/setup
121%if 0%{?fedora} >= 26 || 0%{?rhel} > 7
122    # These files are in the required package “cldr-emoji-annotation”
123    rm $RPM_BUILD_ROOT/%{_datadir}/%{name}/data/annotations/*.xml
124    rm $RPM_BUILD_ROOT/%{_datadir}/%{name}/data/annotationsDerived/*.xml
125    # This file is in the required package “unicode-ucd”:
126    rm $RPM_BUILD_ROOT/%{_datadir}/%{name}/data/UnicodeData.txt
127    # At least emoji-data.txt emoji-sequences.txt emoji-zwj-sequences.txt
128    # are still there even on Fedora >= 26 they are not available in any packages:
129    gzip -n --force --best $RPM_BUILD_ROOT/%{_datadir}/%{name}/data/*.txt
130    # The json file from emojione is not deleted anymore because
131    # the package nodejs-emojione-json has been orphaned:
132    gzip -n --force --best $RPM_BUILD_ROOT/%{_datadir}/%{name}/data/*.json
133%else
134    gzip -n --force --best $RPM_BUILD_ROOT/%{_datadir}/%{name}/data/*.{txt,json}
135    gzip -n --force --best $RPM_BUILD_ROOT/%{_datadir}/%{name}/data/annotations/*.xml
136    gzip -n --force --best $RPM_BUILD_ROOT/%{_datadir}/%{name}/data/annotationsDerived/*.xml
137%endif
138
139%find_lang %{name}
140
141%check
142export LC_ALL=C.UTF-8
143%if 0%{?fedora}
144  #appstreamcli validate --pedantic --no-net %{buildroot}/%{_datadir}/metainfo/*.appdata.xml
145%endif
146appstream-util validate-relax --nonet %{buildroot}/%{_datadir}/metainfo/*.appdata.xml
147desktop-file-validate \
148    $RPM_BUILD_ROOT%{_datadir}/applications/ibus-setup-typing-booster.desktop
149desktop-file-validate \
150    $RPM_BUILD_ROOT%{_datadir}/applications/emoji-picker.desktop
151pushd engine
152    # run doctests
153    python3 hunspell_suggest.py
154    python3 m17n_translit.py
155    python3 itb_emoji.py
156    python3 itb_util.py
157popd
158mkdir -p /tmp/glib-2.0/schemas/
159cp org.freedesktop.ibus.engine.typing-booster.gschema.xml \
160   /tmp/glib-2.0/schemas/org.freedesktop.ibus.engine.typing-booster.gschema.xml
161glib-compile-schemas /tmp/glib-2.0/schemas #&>/dev/null || :
162export XDG_DATA_DIRS=/tmp
163eval $(dbus-launch --sh-syntax)
164dconf dump /
165dconf write /org/freedesktop/ibus/engine/typing-booster/offtherecord false
166dconf write /org/freedesktop/ibus/engine/typing-booster/usedigitsasselectkeys true
167dconf write /org/freedesktop/ibus/engine/typing-booster/addspaceoncommit true
168dconf write /org/freedesktop/ibus/engine/typing-booster/tabenable false
169dconf write /org/freedesktop/ibus/engine/typing-booster/inputmethod "'NoIME'"
170dconf write /org/freedesktop/ibus/engine/typing-booster/rememberlastusedpreeditime true
171dconf write /org/freedesktop/ibus/engine/typing-booster/mincharcomplete 1
172dconf write /org/freedesktop/ibus/engine/typing-booster/dictionary "'en_US'"
173dconf write /org/freedesktop/ibus/engine/typing-booster/emojipredictions true
174dconf write /org/freedesktop/ibus/engine/typing-booster/autocommitcharacters "''"
175dconf write /org/freedesktop/ibus/engine/typing-booster/pagesize 6
176dconf write /org/freedesktop/ibus/engine/typing-booster/shownumberofcandidates true
177dconf write /org/freedesktop/ibus/engine/typing-booster/showstatusinfoinaux true
178dconf write /org/freedesktop/ibus/engine/typing-booster/inlinecompletion false
179dconf write /org/freedesktop/ibus/engine/typing-booster/keybindings "{'next_input_method': <['Control+Down', 'Control+KP_Down']>, 'previous_input_method': <['Control+Up', 'Control+KP_Up']>, 'lookup_related': <['Mod5+F12']>, 'enable_lookup': <['Tab', 'ISO_Left_Tab', 'KP_Divide']>, 'select_next_candidate': <['Tab', 'ISO_Left_Tab', 'Down', 'KP_Down']>, 'lookup_table_page_down': <['Page_Down', 'KP_Page_Down', 'KP_Next']>, 'toggle_emoji_prediction': <['Mod5+F6']>, 'lookup_table_page_up': <['Page_Up', 'KP_Page_Up', 'KP_Prior']>, 'toggle_off_the_record': <['Mod5+F9']>, 'cancel': <['Escape']>, 'setup': <['Mod5+F10']>, 'select_previous_candidate': <['Shift+Tab', 'Shift+ISO_Left_Tab', 'Up', 'KP_Up']>}"
180dconf dump /
181export DISPLAY=:1
182Xvfb $DISPLAY -screen 0 1024x768x16 &
183# A window manager and and ibus-daemon are needed to run the GUI
184# test tests/test_gtk.py, for example i3 can be used.
185#
186# To debug what is going on if there is a problem with the GUI test
187# add BuildRequires: x11vnc and start a vnc server:
188#
189#     x11vnc -display $DISPLAY -unixsock /tmp/mysock -bg -nopw -listen localhost -xkb
190#
191# Then one can view what is going on outside of the chroot with vncviewer:
192#
193#     vncviewer /var/lib/mock/fedora-32-x86_64/root/tmp/mysock
194#
195# The GUI test will be skipped if XDG_SESSION_TYPE is not x11 or wayland.
196#
197#ibus-daemon -drx
198#touch /tmp/i3config
199#i3 -c /tmp/i3config &
200#export XDG_SESSION_TYPE=x11
201
202make check && rc=0 || rc=1
203cat tests/*.log
204if [ $rc != 0 ] ; then
205    exit $rc
206fi
207
208%posttrans
209[ -x %{_bindir}/ibus ] && \
210  %{_bindir}/ibus write-cache --system &>/dev/null || :
211
212%files -f %{name}.lang
213%doc AUTHORS COPYING README README.html README.md
214%{_datadir}/%{name}
215%{_datadir}/metainfo/typing-booster.appdata.xml
216%{_datadir}/ibus/component/typing-booster.xml
217%{_datadir}/icons/hicolor/16x16/apps/ibus-typing-booster.png
218%{_datadir}/icons/hicolor/22x22/apps/ibus-typing-booster.png
219%{_datadir}/icons/hicolor/32x32/apps/ibus-typing-booster.png
220%{_datadir}/icons/hicolor/48x48/apps/ibus-typing-booster.png
221%{_datadir}/icons/hicolor/64x64/apps/ibus-typing-booster.png
222%{_datadir}/icons/hicolor/128x128/apps/ibus-typing-booster.png
223%{_datadir}/icons/hicolor/256x256/apps/ibus-typing-booster.png
224%{_datadir}/icons/hicolor/scalable/apps/ibus-typing-booster.svg
225%{_libexecdir}/ibus-engine-typing-booster
226%{_libexecdir}/ibus-setup-typing-booster
227%{_datadir}/applications/ibus-setup-typing-booster.desktop
228%{_datadir}/glib-2.0/schemas/org.freedesktop.ibus.engine.typing-booster.gschema.xml
229
230%files tests
231%dir %{_libexecdir}/installed-tests
232%{_libexecdir}/installed-tests/%{name}
233%dir %{_datadir}/installed-tests
234%{_datadir}/installed-tests/%{name}
235
236%files -n emoji-picker
237%{_bindir}/emoji-picker
238%{_datadir}/metainfo/emoji-picker.appdata.xml
239%{_datadir}/applications/emoji-picker.desktop
240
241%changelog
242* Sat Jul 31 2021 Mike FABIAN <mfabian@redhat.com> - 2.13.0-1
243- Update to 2.13.0
244- Translation update from Weblate (de, uk updated to 100%)
245- Use colour for the compose part of preedit
246  (Resolves: Use colour for the compose part of preedit)
247- When a compose sequence becomes invalid, don’t throw it away
248  (Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/180)
249- Cancelling a compose sequence should not beep
250  (Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/179)
251- Don’t spell check the preedit while a compose sequence is in progress
252  (Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/181)
253
254* Wed Jul 28 2021 Mike FABIAN <mfabian@redhat.com> - 2.12.1-1
255- Update to 2.12.1
256- Starting a compose sequence while a candidate is selected should
257  append to the selection
258  (Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/175)
259- Translation update from Weblate (de, nl, pl, tr, uk all updated to 100%)
260- Fix typo in translatable message (Thanks to Yuri Chornoivan)
261- Add a few more combining chars for dead keys to the list (Thanks to Matthias Clasen)
262- Reduce grid row spacing from 10 to 5 in the setup tool
263
264* Tue Jul 27 2021 Mike FABIAN <mfabian@redhat.com> - 2.12.0-1
265- Use the dead keys added recently to ibus as soon as they become available
266  by an ibus update
267  (see: https://github.com/ibus/ibus/commit/3e2609e68c9107ce7c65e2d5876bfdc9f0f8c854)
268- Make Compose preedit less intrusive, show compose key only in
269  the middle of the sequence or when it is the only key so far
270- Use · U+00B7 MIDDLE DOT instead of ⎄ U+2384 COMPOSITION SYMBOL to display
271  Multi_key in pre-edit.
272- Add an option to play a sound on error (for example invalid compose sequence)
273- Don’t include the system compose files unconditionally if a user compose file exists
274  (Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/170)
275- Add option to choose whether to start up in direct input mode
276  (Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/169)
277- Change default input methods for Indian locales to inscript2
278
279* Mon Jul 26 2021 Mike FABIAN <mfabian@redhat.com> - 2.11.5-3
280- Fix license tag
281
282* Thu Jul 08 2021 Mike FABIAN <mfabian@redhat.com> - 2.11.5-2
283- Resolves: rhbz#1978361
284  (itb_emoji.py:44:<module>:ModuleNotFoundError: No module named 'packaging')
285
286* Mon Jun 21 2021 Mike FABIAN <mfabian@redhat.com> - 2.11.5-1
287- Update to 2.11.5
288- Resolves: rhbz#1970626 Ensure enum.Flag's obj._value_ is an integer
289  Thanks to Miro Hrončok!
290- Use version.parse from packaging instead of LooseVersion from distutils.version
291  (To fix a deprecation warning, see: https://www.python.org/dev/peps/pep-0632/)
292- Update py-compile to the version from automake-1.16
293  (To fix DeprecationWarning: the imp module is deprecated in favour of
294  importlib and slated for removal in Python 3.12;)
295
296* Thu Apr 29 2021 Mike FABIAN <mfabian@redhat.com> - 2.11.4-1
297- Update to 2.11.4
298- In main.py “import factory” only when the --xml option is not used
299  Resolves: rhbz#1711646
300- Limit the “capitalize” case mode used in auto-capitalization to the
301  first index in a string
302  Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/167
303
304* Wed Apr 21 2021 Takao Fujiwara <tfujiwar@redhat.com> - 2.11.2-4
305- Resolves: #1948197 Change post to posttrans
306
307* Mon Apr 19 2021 Mike FABIAN <mfabian@redhat.com> - 2.11.2-3
308- Remove post and postun (Related: rhbz#1948197)
309
310* Sun Mar 14 2021 Mike FABIAN <mfabian@redhat.com> - 2.11.2-1
311- Update to 2.11.2
312- Improve the handling of typing digits into the preedit
313  Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/164
314- Make the keybindings treeview also sortable by clicking the column headers
315- Make custom shortcut treeview sortable by clicking on the column headers
316- Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/163
317- Don’t use surrounding text if InputPurpose.TERMINAL is set
318
319* Thu Mar 11 2021 Mike FABIAN <mfabian@redhat.com> - 2.11.0-1
320- Update to 2.11.0
321- Use sensitivity feature of buttons in the setup tool tab where shortcuts are defined
322- Don’t let dialog action area of setup tool expand.
323- Improve the setup tool to make it possible to enter multi-line expansions of shortcuts
324- Resolves https://github.com/mike-fabian/ibus-typing-booster/issues/158
325- Elide extremely long candidates in the lookup table in the middle.
326- If a candidate contains newlines, replace the newlines with arrows in the lookup table.
327- If a commit string contains new-lines, commit it in several chunks
328  and forward Return between the chunks.
329- Update emoji annotations from CLDR
330- Put the remote icon back in emoji-picker.appdata.xml, it was a
331  false positive by appstreamcli
332- Translation update from Weblate (pt_PT updated, 100% complete now)
333- Skip the inscript2 test cases if these transliterations are not available.
334
335* Mon Feb 22 2021 Mike FABIAN <mfabian@redhat.com> - 2.10.5-3
336- Remove gnome-desktop-testing and ibus-desktop-testing from the requires
337  of the ibus-typing-booster-tests subpackage
338
339* Fri Feb 19 2021 Mike FABIAN <mfabian@redhat.com> - 2.10.5-2
340- Use the voikko build requires only for Fedora. They are only
341  needed to run the voikko test cases during build.
342
343* Wed Feb 17 2021 Mike FABIAN <mfabian@redhat.com> - 2.10.5-1
344- Update to 2.10.5
345- Run the voikko tests only for libvoikko version >= 4.3
346- Adapt voikko test cases to the newest voikko version
347  libvoikko-4.3-3, python3-libvoikko-4.3-3, voikko-fi-2.4-3
348- Log a warning when language is “fi” and “import libvoikko” failed
349- Return an empty list [] in spellcheck_suggest_voikko() when libvoikko was not imported
350- Update emoji annotations from CLDR, switching “no” and “nb”
351  See: https://unicode-org.atlassian.net/browse/CLDR-2698
352- Remove icon in emoji-picker.appdata.xml (to avoid warnings
353  from appstream-util and appstreamcli).
354
355* Wed Feb 17 2021 Mike FABIAN <mfabian@redhat.com> - 2.10.4-2
356- Use “BuildRequires:  appstream” only on Fedora
357
358* Tue Feb 02 2021 Mike FABIAN <mfabian@redhat.com> - 2.10.4-1
359- Update to 2.10.4
360- Use “from unittest import mock” instead of just “import mock”.
361- Update emoji annotations from CLDR
362- Translation update from Weblate for zh_CN (still 100% complete)
363
364* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.10.3-2
365- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
366
367* Sun Jan 24 2021 Mike FABIAN <mfabian@redhat.com> - 2.10.3-1
368- Update to 2.10.3
369- Update emoji annotations from CLDR
370- Translation update from Weblate for ja, zh_CN
371  (zh_CN is 100% complete now)
372
373* Thu Dec 17 2020 Mike FABIAN <mfabian@redhat.com> - 2.10.2-1
374- Update to 2.10.2
375- Add vi-telex to the default input methods for vi_VN locale
376- Enable Unicode 13.1 Emoji in emoji-picker by default
377- Update emoji data to Unicode 13.1
378- Translation update from Weblate for zh_CN
379
380* Tue Nov 10 2020 Mike FABIAN <mfabian@redhat.com> - 2.10.1-1
381- Update to 2.10.1
382- Use IBus.InputHints.{UPPERCASE_CHARS,UPPERCASE_WORDS,LOWERCASE}
383- Add utility to manually test input purpose and input
384- Improve handling of input purpose and input hints
385- Add compatibility enum classes InputPurpose and InputHints
386- Add type hints
387- Change default for emoji_unicode_min to 0.0
388  (fixes emoji omitted from browsing in emoji-picker)
389
390* Mon Oct 19 2020 Mike FABIAN <mfabian@redhat.com> - 2.10.0-1
391- Update to 2.10.0
392- Add option to automatically capitalize after punctuation
393  (Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/96)
394- Don't record in user database when stripped_input_phrase or
395  stripped_commit_phrase are emty
396- When interactively deleting a candidate from the user database,
397  remove all case modes
398- Add 4 more characters ÞĦŊŦ to get special treatment in remove_accents()
399- Translation updates from Weblate for ca, es, fr, it, ja, nl, sv
400
401* Thu Oct 08 2020 Mike FABIAN <mfabian@redhat.com> - 2.9.9-1
402- Update to 2.9.9
403- Fix typo in variable name in do_reset()
404- KP_Delete should be handled the same way as Delete
405- Translation update form Weblate for de, he, pl, tr, uk
406
407* Tue Oct 06 2020 Mike FABIAN <mfabian@redhat.com> - 2.9.8-1
408- Update to 2.9.8
409- Prevent also Delete from reopening a preedit when the option
410  “Arrow keys can reopen a preedit” is off
411- When the input is empty, Escape should be passed through,
412  not inserted into the preedit
413- Fix itb_util.tokenize(): if the input is only whitespace,
414  the return should be an empty list
415- Don’t clear context after typing Return, KP_Enter, ISO_Enter
416- Improve behaviour of case modes
417- Update emoji annotations from CLDR
418
419* Mon Sep 07 2020 Mike FABIAN <mfabian@redhat.com> - 2.9.7-1
420- Update to 2.9.7
421- Add commands “next_case_mode” and “previous_case_mode”
422  with configurable key bindings
423- Better hot key handling for modifier keys like Shift_L, …
424- Use labels 1, 2, 3, … for the lookup table instead of 1., 2., 3., …
425- Update emoji annotations from CLDR
426
427* Thu Aug 27 2020 Mike FABIAN <mfabian@redhat.com> - 2.9.6-1
428- Update to 2.9.6
429- Make translations of 'Edit key bindings for command “%s”' work
430- Don't hide emoji-picker.desktop from AppStream (by Gunnar Hjalmarsson)
431- Translation update from Weblate for pt_BR, sv (100%)
432
433* Wed Aug 05 2020 Mike FABIAN <mfabian@redhat.com> - 2.9.5-1
434- Update to 2.9.5
435- Treat characters 'ÅåÄäÖö' as special when matching in the Swedish dictionary
436  (Resolves: http ://github.com/mike-fabian/ibus-typing-booster/issues/126)
437- Update emoji annotations from CLDR
438- AppStream tweaks by Gunnar Hjalmarsson
439- Translation update from Weblate for ca, de, es, sv
440
441* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.9.4-4
442- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
443
444* Thu Jul 16 2020 Mike FABIAN <mfabian@redhat.com> - 2.9.4-2
445- Fix build on rawhide and f31
446
447* Tue Jul 14 2020 Mike FABIAN <mfabian@redhat.com> - 2.9.4-1
448- Update to 2.9.4
449- Add emoji-picker.appdata.xml
450- Fix warnings and errors in typing-booster.appdata.xml
451- Update emoji annotations from CLDR
452- Support %%S expansion in include statements in compose files
453- Translation update from Weblate for fr, he, hu, zh_CN
454
455* Mon Jul 13 2020 Tom Stellard <tstellar@redhat.com> - 2.9.3-2
456- Use make macros
457- https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro
458
459* Mon Jun 22 2020 Mike FABIAN <mfabian@redhat.com> - 2.9.3-1
460- Update to 2.9.3
461- Translation updates from Weblate for he
462- Fix wrong indentation of push_context() in _commit_string()
463
464* Mon Jun 08 2020 Mike FABIAN <mfabian@redhat.com> - 2.9.2-1
465- Update to 2.9.2
466- Translation updates from Weblate for es
467- Ignore invalid compose sequences when reading compose files
468- Update emoji annotations from CLDR
469
470* Thu Jun 04 2020 Miro Hrončok <mhroncok@redhat.com> - 2.9.1-2
471- Don't explicitly require python(abi) >= 3.3
472
473* Wed May 27 2020 Mike FABIAN <mfabian@redhat.com> - 2.9.1-1
474- Update to 2.9.1
475- Translation updates form Weblate for fr, nl, zh_TW
476- Make keyboard shortcuts like Control+a work on non-ASCII keyboard layouts
477  (Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/107)
478- Fix broken adding of key bindings
479  (Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/109)
480
481* Wed May 20 2020 Mike FABIAN <mfabian@redhat.com> - 2.9.0-1
482- Translation updates from Weblate for de, ja, pl, tr, uk, zh_CN
483- Update ibus-typing-booster.pot (Some new translatable strings, tooltips for 2 new buttons)
484- Improve matching of keybindings, consider IBus.ModifierType.MODIFIER_MASK
485  (Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/94)
486- Show the list of dictionaries in the setup tool only if it is more than just ['None']
487- If a real dictionary is added in the setup tool, remove dummy dictionary 'None'.
488- Add black flag for the special dummy dictionary 'None'
489- Add doctests to check that the special dictionary 'None' is handled correctly
490- When the list of imes or dictionaries is emptied by the user, set it to 'NoIME' or 'None'
491  (Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/98)
492- Add "Set to default" buttons for the list of input methods and dictionaries
493- Remove the special candidate which is shown when a dictionary is missing
494
495* Fri May 15 2020 Mike FABIAN <mfabian@redhat.com> - 2.8.3-2
496- Do not run the Gtk GUI test from the spec file.
497
498* Sun May 03 2020 Mike FABIAN <mfabian@redhat.com> - 2.8.3-1
499- Update to 2.8.3
500- Save default dictionaries and input methods when making the lists
501  empty in the setup tool
502- Fix reading “include” instructions in Compose files and observe XCOMPOSEFILE
503  (Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/93)
504- Fix right-to-left detection for LC_MESSAGES=C
505  (Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/97)
506- GUI tests added thanks to Takao Fujiwara
507- Update UnicodeData.txt to Unicode 13.0.0
508- Translation updates for it, hu, tr, pt_BR
509
510* Tue Mar 31 2020 Mike FABIAN <mfabian@redhat.com> - 2.8.2-1
511- Update to 2.8.2
512- Translation updates from Weblate for ar, tr
513- Update emoji annotations from CLDR
514
515* Thu Feb 27 2020 Mike FABIAN <mfabian@redhat.com> - 2.8.1-1
516- Update to 2.8.1
517- Prevent also BackSpace from reopening a preedit when the option
518  “Arrow keys can reopen a preedit” is off
519- Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/87
520- Resolves: rhbz#1637647
521- Translation updates from Weblate for es, tr, he
522- Update emoji annotations from CLDR
523
524* Tue Feb 04 2020 Mike FABIAN <mfabian@redhat.com> - 2.8.0-1
525- Update to 2.8.0
526- Translation updates from Weblate for ca, de, es, fr, nl, pl, uk
527- Update emoji annotations from CLDR
528- Update emoji data to Unicode 13.0 final
529- New option to choose whether spellchecking is done on the preedit
530  and which colour to use
531- Spellcheck typed string in preedit and colour it if it is likely to be misspelled
532- More test cases for spellchecking and spellchecking suggestions
533- Restructure code for spellchecking and spellchecking suggestions
534
535* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.7.7-2
536- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
537
538* Fri Jan 24 2020 Mike FABIAN <mfabian@redhat.com> - 2.7.7-1
539- Update to 2.7.7
540- Translation updates from Weblate for es, de, pl, he, fr, uk, tr, nl
541- Generate README.html and README from README.md
542- A thorough upgrade to README.md
543  Resolves: https://github.com/mike-fabian/ibus-typing-booster/pull/74
544- Set button label of google application credentials button correctly
545  Resolves: rhbz#1793460
546- Make si-wijesekera the default input method for si_LK.UTF-8 locale
547- Add another test case for libvoikko spellchecking together with
548  en_GB spellchecking
549
550* Sun Jan 05 2020 Mike FABIAN <mfabian@redhat.com> - 2.7.6-1
551- Update to 2.7.6
552- Use included fi_FI.dic for Finnish word suggestions
553- Add Finnish ispell dictionary fi_FI.dic
554- Minor translation updates from Weblate for pl, tr, zh_CN
555
556* Wed Dec 18 2019 Mike FABIAN <mfabian@redhat.com> - 2.7.5-1
557- Update to 2.7.5
558- Add libvoikko support for Finnish
559- Add support for (almost) arbitrary dead key sequences
560  (suggested by Marko Myllynen)
561
562* Sat Dec 14 2019 Mike FABIAN <mfabian@redhat.com> - 2.7.4-1
563- Update to 2.7.4
564- Updated Portuguese (Brazil) translations from Weblate (100.0% translated)
565- Updated Turkish translations from Weblate (100.0% translated)
566- Remove weird spelling “preëdit” from messageid
567  (Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/62)
568- Update emoji annotations from CLDR
569
570* Mon Nov 25 2019 Mike FABIAN <mfabian@redhat.com> - 2.7.3-1
571- Update to 2.7.3
572- Correct release dates of Unicode 12.0.0 and 12.1.0 in emoji_picker.py
573- Add workaround if key codes cannot be found for key values
574  (workaround for big endian platforms)
575- Fix race condition in itb_util.xdg_save_data_path()
576  Resolves: rhbz#1770072
577  Resolves: rhbz#1713963
578  Resolves: rhbz#1764520
579  Resolves: rhbz#1768016
580- Another fix for right-to-left languages: fix wrong order of globe emoji
581- Small fix in parsing emoji-test.txt which slightly changes the emoji sorting order
582- Adapt parsing of the emoji data files to the changes in Unicode 13.0
583- Fix emoji test cases for new emoji data files for Unicode 13.0
584- Update emoji data to current Unicode 13.0 draft
585- Add fa, it, tr to LINGUAS
586- Updated Odia translations from Weblate (53.4% translated)
587- Updated Czech translations from Weblate (100.0% translated)
588- Updated Catalan translations from Weblate (17.1% translated)
589- Added Turkish translations from Weblate (100.0% translated)
590- Added Italian translations from  Weblate (5.2% translated)
591- Portuguese (Portugal) translations moved from pt_PT to pt (23.8% translated)
592- Update French translations from Weblate (100.0% translated)
593- Added Persian translations from Weblate (0% translated)
594
595* Wed Nov 06 2019 Mike FABIAN <mfabian@redhat.com> - 2.7.2-1
596- Update to 2.7.2
597- Fix display for right-to-left languages in the dictionaries and
598  input methods tab in the setup tool
599- Added Swahili translations from Weblate (30.1% translated)
600- Added Traditional Chinese translations from Weblate (0.5% translated)
601- Added Portuguese (Portugal) translations from Weblate (23.8% translated)
602- Update Hebrew translations from Weblate (100% translated)
603- Update Arabic translations from Weblate (100% translated)
604- Update Odia translations from Weblate (44.0% translated)
605- Update Spanisch translations from Weblate (93.3% translated)
606
607* Thu Oct 31 2019 Mike FABIAN <mfabian@redhat.com> - 2.7.1-1
608- Update to 2.7.1
609- Update Chinese (Simplified) translations from Weblate (13.5% translated)
610- Update Spanish translations from Weblate (92.2% translated)
611- Update Catalan translations from Weblate (12.4% translated)
612- Add Hebrew translation from Weblate (67.4% translated)
613- Add Arabic translation from Weblate (28.0% translated)
614- Update Ukrainian translations from Weblate (100.0% translated)
615- Update German translations from Weblate (100.0% translated)
616- Update Japanese translations from Weblate (35.2% translated)
617- Update French translations from Weblate (93.8% translated)
618- Add Hungarian translation from Weblate (58.0% translated)
619- Add Odia translations from Weblate (2.6% translated)
620- Improve compose file parsing to get results containing \" correct
621- More test cases for compose sequences
622- Change README.md to refer to Weblate for translations instead of Zanata
623- Fix display of code points in emoji-picker when running in or_IN.UTF-8 locale
624
625* Fri Oct 18 2019 Mike FABIAN <mfabian@redhat.com> - 2.7.0-1
626- Update to 2.7.0
627- Add support for compose sequences
628  Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/47
629  Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/36
630- Test cases for compose support
631- When using doctest: log to stderr and set logging level to DEBUG
632- Properly close file handles when loading hunspell dictionaries
633
634* Fri Oct 11 2019 Mike FABIAN <mfabian@redhat.com> - 2.6.8-1
635- Update to 2.6.8
636- Quote the tables for the key and mouse bindings in the README.md as code
637- Do not hardcode the list of useful m17n input methods
638- Use LOGGER.exeption() in exception handlers
639- Use python logging module with log file rotation instead of writing to stdout/stderr
640- Fix set_preedit_underline() with parameter update_gsettings=True
641
642* Tue Oct 01 2019 Mike FABIAN <mfabian@redhat.com> - 2.6.7-1
643- Update to 2.6.7
644- If the first candidate is exactly the same as the typed string
645  prefer longer candidates (Extends inline completions automatically)
646- Move README to README.md and use some markdown to make it look better on github
647- When showing similar emoji in the lookup table, show the list of keywords
648  which matched only when debugging is on
649- Update emoji annotations from CLDR
650- More unittests, restructure test files, move some doctests to unittests
651- Add a utility class KeyvalsToKeycodes to find ibus key codes
652  instead of hardcoding them
653- Add ceb to CLDR_ANNOTATION_FILES
654
655* Wed Sep 11 2019 Mike FABIAN <mfabian@redhat.com> - 2.6.6-1
656- When checking whether to show inline completion, normalize the first candidate as well
657- Two more test cases in hunspell_suggest.py
658- Make it work correctly with newer French hunspell dictionaries
659- Skip some unittests when dictionaries or python modules needed are not installed
660- Update emoji annotations from CLDR
661- Add more test cases to m17n_translit_test.py for si-sayura.mim
662
663* Wed Aug 28 2019 Mike FABIAN <mfabian@redhat.com> - 2.6.5-1
664- Added Dutch translation (Thanks to Heimen Stoffels)
665- Add si-sayura to the list of M17N input methods
666
667* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.4-2
668- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
669
670* Wed Jul 17 2019 Mike FABIAN <mfabian@redhat.com> - 2.6.4-1
671- Update to 2.6.4
672- Update translations from zanata (cs updated, now 100% complete)
673- Do not crash if initializing enchant or pyhunspell fails,
674  continue without spellchecking (Currently, on openSUSE Tumbleweed,
675  python3-pyenchant seems broken)
676- Try to install myspell-xx_YY packages instead of hunspell-xx package on SUSE
677- Fix loading of cldr annotations when the .xml files are zipped
678- Add JoyPixels to good_emoji_fonts list
679
680* Wed Jun 19 2019 Mike FABIAN <mfabian@redhat.com> - 2.6.3-1
681- Update to 2.6.3
682- Performance improvement of around 30% in EmojiMatcher._match()
683- Tiny performance improvement in itb_emoji.py _set_seq1()
684
685* Wed Jun 05 2019 Mike FABIAN <mfabian@redhat.com> - 2.6.2-1
686- Update to 2.6.2
687- Emoji ZWJSequence “people holding hands” is 12.0, not 10.0
688- Update emoji annotations from CLDR
689- icons: Regenerate with proper transparency (Thanks to FeRD (Frank Dana))
690- Remove enable-background from icon SVG (Thanks to FeRD (Frank Dana))
691- Update UnicodeData.txt to current Unicode 12.1.0
692
693* Mon Mar 04 2019 Mike FABIAN <mfabian@redhat.com> - 2.6.1-1
694- Update to 2.6.1
695- Support emoji presentation and text presentation in emoji-picker
696- Improve itb_emoji.py to also support text presentation of emoji
697- Update emoji annotations from CLDR
698
699* Thu Feb 21 2019 Mike FABIAN <mfabian@redhat.com> - 2.6.0-1
700- Update to 2.6.0
701- Update translations from zanata (de updated)
702- Update emoji annotations from CLDR
703- When Left or BackSpace trigger a commit, forward Left events only
704  when no candidate was selected (i.e. the preëdit was committed)
705- If a candidate is shown inline and *manually* selected, show the caret
706  at the end of the candidate
707- Right, Left, BackSpace, and Delete edit the preëdit only if no
708  candidate is *manually* selected
709- If an input char is typed while a candidate is *manually* selected,
710  add that input to the candidate
711- Change option name 'Add a space when committing by label or mouse'
712  in setup tool
713- Remove option “Use digits as select keys”
714- Make key bindings to commit or remove candidates via label configurable
715  (Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/48)
716- Multi word suggestions: Commit the current commit phrase and the
717  previous phrase as a single unit as well
718  (Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/49)
719- Fix wrong tooltip for “Automatically select the best candidate” option
720- Run time consuming tests simultaneously via script (thanks to
721  Marguerite Su <i@marguerite.su>)
722
723* Mon Feb 11 2019 Mike FABIAN <mfabian@redhat.com> - 2.5.3-1
724- Update to 2.5.3
725- Update translations from zanata (ja, pl updated)
726- Update emoji annotations from CLDR
727- Use “NoIME” instead of “NoIme” as the internal name of the dummy input method
728- Remove “Recommends: python3-pyaudio” (Resolves: rhbz#1672562)
729- Add gcc to BuildRequires
730
731* Wed Feb 06 2019 Mike FABIAN <mfabian@redhat.com> - 2.5.2-1
732- Update to 2.5.2
733- Fix test case for selecting non existing candidates for Fedora rawhide
734- Update UnicodeData.txt to current Unicode 12.0 draft
735- Update emoji data to Unicode 12.0 final for 2019
736- Update emoji annotations from CLDR
737- Initialize self.dictionary_sub_properties_prop_list = [] in self._init_properties()
738  (Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/46)
739- Fix test case for case mode change
740- Improve filter for dictionary selection if langtable available
741- Add BuildRequires: gcc
742
743* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.5.1-2
744- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
745
746* Tue Jan 29 2019 Mike FABIAN <mfabian@redhat.com> - 2.5.1-1
747- Update to 2.5.1
748- Update translations from zanata (de, ja, fr, pl updated)
749- Show also dictionary when “Show status in auxiliary text” is on
750- Set notebook in setup tool to scrollable
751- Make filter for dictionary selection work for language descriptions if langtable available
752- Show names of languages and territories in setup tool if langtable is available
753- Add missing flag for csb_PL
754- Add option to automatically select the best candidate
755- Pressing Shift should not immediately change the case mode of the candidates
756
757* Wed Jan 16 2019 Mike FABIAN <mfabian@redhat.com> - 2.5.0-1
758- Update to 2.5.0
759- Update translations from zanata (de, ja, uk updated)
760- Add a property menu for the highest priority dictonary
761- Add a missing _update_preedit()
762- When lookup is enabled by tab but the lookup table is empty,
763  the first cancel should clear the input
764- Reset self.is_lookup_table_enabled_by_tab and
765  self.is_lookup_table_enabled_by_min_char_complete when input is cleared
766- Get suggestions from hunspell dictionaries only for input
767  which does not contain spaces
768- Don’t reinitialize the dictionaries if only the order of the dictionaries has changed
769- Add key bindings to change the priority of dictionaries
770- Speech recognition input using Google speech-to-text
771- Change the default input methods for as_IN, kn_IN, and ta_IN
772- Make ur-phonetic the default input method for ur_IN and add en_GB dictionary to default
773- Update emoji annotations from CLDR
774- Add Recommends: python3-pyaudio (For voice recognition)
775
776* Sun Dec 30 2018 Mike FABIAN <mfabian@redhat.com> - 2.4.1-1
777- Update to 2.4.1
778- Update translations from zanata (pl updated)
779- Add direct input mode
780  (Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/25)
781- Fix start of setup tool when libexedir is not /usr/libexec/
782  (Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/42)
783
784* Wed Dec 19 2018 Mike FABIAN <mfabian@redhat.com> - 2.4.0-1
785- Update to 2.4.0
786- Update translations from zanata (de, es, fr, ja, pl, uk updated)
787- Add new command 'toggle_hide_input' to hide the preëdit, lookup table, and auxiliary text
788- Add an option to use preedit style only if lookup is enabled
789- Add an option to choose the style of underlining the preedit
790- Don’t try to record the first candidate when there is none
791  after an automatic commit on focus out or reset
792  (Resolves: rhbz#1659128)
793- Add an option in the setup tool to set the debug level
794- Move appearance related options to the new “Appearance” tab
795- Add settings for colour and other appearance stuff
796- Move “Dictionaries and input methods” Tab in the setup tool to the first position
797- Update the shortcut hints in the tooltips when keybindings change
798- Only show the label in the panel menus for emoji-mode and off-the-record-mode
799- Don’t show the shortcut hints in the menu labels, takes too much space there.
800- Update README because of the recent change to make keybindings configurable.
801
802* Thu Dec 13 2018 Mike FABIAN <mfabian@redhat.com> - 2.3.3-1
803- Update to 2.3.3
804- Toggle candidates between 'title', 'upper', and 'lower' case
805  when Shift is typed.
806- Improve Spanish translation (Thanks to Ismael Venegas Castelló)
807
808* Tue Dec 11 2018 Mike FABIAN <mfabian@redhat.com> - 2.3.2-1
809- Update to 2.3.2
810- Key bindings should match independent of whether
811  Num Lock or Caps Lock are on or off.
812
813* Sat Dec 08 2018 Mike FABIAN <mfabian@redhat.com> - 2.3.1-1
814- Update to 2.3.1
815- Update translations from zanata (cs, de, es, fr, ja, pl, pt_BR, uk, zh_CN updated)
816- Avoid some PyGTKDeprecationWarnings
817- Don’t show Unicode 12.0 draft emoji by default in emoji-picker
818- Update emoji data to Unicode 12.0 draft
819- Update emoji annotations from CLDR
820
821* Wed Dec 05 2018 Mike FABIAN <mfabian@redhat.com> - 2.3.0-1
822- Update to 2.3.0
823- Update translations from zanata (de, ja, uk updated)
824- Commit the current preëdit when the focus changes
825- When preëdit empty or lookup table not enabled by key: clear the lookup table
826- Make key bindings configurable
827  (Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/15)
828- Correct tooltips for the “up” and “down” buttons for
829  input methods dictionaries
830
831* Wed Nov 28 2018 Mike FABIAN <mfabian@redhat.com> - 2.2.1-1
832- Update to 2.2.1
833- Update translations from zanata (pl, uk updated)
834
835* Wed Nov 21 2018 Mike FABIAN <mfabian@redhat.com> - 2.2.0-1
836- Update translations from zanata (de updated)
837- Save some screen space in the setup tool
838- Add inline completion feature
839- Tab should force a lookup when the minimum number of characters is not yet reached
840
841* Wed Nov 07 2018 Mike FABIAN <mfabian@redhat.com> - 2.1.3-2
842- Use C.UTF-8 instead of en_US.UTF-8 when running the test cases.
843  (Because of https://fedoraproject.org/wiki/Changes/Remove_glibc-langpacks-all_from_buildroot)
844- Add desktop-file-utils, python3-gobject, python3-gobject-base, gtk3,
845  dconf, dbus-x11, ibus to BuildRequires.
846
847* Mon Sep 24 2018 Mike FABIAN <mfabian@redhat.com> - 2.1.3-1
848- Require the Python interpreter directly instead of using the package name
849- Related: rhbz#1619153
850- Update translations from zanata (uk updated)
851
852* Mon Sep 24 2018 Mike FABIAN <mfabian@redhat.com> - 2.1.2-1
853- Update to 2.1.2
854- Update translations from zanata (de, pl updated)
855- Add typing-booster.its and typing-booster.loc to avoid making the
856  release descriptions and developer name in typing-booster.appdata.xml
857  translatable.
858- Remove code to check whether another instance of the setup tool is running.
859- Add new option to avoid adding a space when committing by label or mouse
860  (Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/39)
861- Update emoji annotations from CLDR
862- Do not try to commit if index is >= the current number of candidates
863  (Resolves: rhbz#1630349)
864- Add test case for https://bugzilla.redhat.com/show_bug.cgi?id=1630349
865
866* Tue Sep 04 2018 Mike FABIAN <mfabian@redhat.com> - 2.1.1-1
867- Update translations from zanata (es updated, 100% complete now)
868
869* Thu Aug 23 2018 Mike FABIAN <mfabian@redhat.com> - 2.1.0-2
870- Make “make check“ test cases work again when building the rpm
871
872* Tue Jul 24 2018 Mike FABIAN <mfabian@redhat.com> - 2.1.0-1
873- Update to 2.1.0
874- emoji-picker: Show a concise description of a selected emoji in the header bar
875- Update the setup UI when settings are changed outside of the setup UI
876- Migrate IBusConfig to GSettings (The old settings are
877  unfortunately lost, so one has to open the setup tool
878  and recreate ones favourite settings).
879- Read emoji data files always in UTF-8
880
881* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.2-3
882- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
883
884* Mon Jul 02 2018 Miro Hrončok <mhroncok@redhat.com> - 2.0.2-2
885- Rebuilt for Python 3.7
886
887* Wed Jun 27 2018 Mike FABIAN <mfabian@redhat.com> - 2.0.2-1
888- Update to 2.0.2
889- Better Tab handling, use Tab to switch to the next candidate, not to commit
890
891* Thu Jun 21 2018 Mike FABIAN <mfabian@redhat.com> - 2.0.1-1
892- Update to 2.0.1
893- Update translations from zanata (ja updated)
894- Update emoji annotations from CLDR
895- Fix some bugs in the usage of “prefix” for prefixes other than “/usr” (For FreeBSD)
896- Make itb_util.get_ime_help() work on FreeBSD
897- Update UnicodeData.txt to Unicode 11.0.0
898- Remove useless 't-nil vi-base': 'vi-base.mim', from M17N_INPUT_METHODS
899- Remove extra space in entry for sa-IAST input method to make it work
900- Show in the setup tool in the input listbox whether minput_open_im() succeeded.
901- Use the rocket icon emoji_u1f680.svg from the “Noto Color Emoji” font
902
903* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 2.0.0-2
904- Rebuilt for Python 3.7
905
906* Mon May 28 2018 Mike FABIAN <mfabian@redhat.com> - 2.0.0-1
907- Update to 2.0.0
908- Update translations because of the merge of the engines (de, pl, uk updated)
909- Update emoji annotations from CLDR
910- Do not hardcode icon names in desktop files
911  (Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/17)
912- Change the default for “Unicode symbols and emoji predictions” to “False”
913- Merge all typing-booster engines into one
914- Change the UI of the setup tool to make it possible to select
915  multiple input methods and dictionaries
916- Move the buttons to learn from a file and to delete learned data to the options tab
917- Use the same “About” dialog in the setup tool as in emoji-picker
918
919* Tue May 22 2018 Mike FABIAN <mfabian@redhat.com> - 1.5.38-2
920- Update to 1.5.38
921- Refresh french translation (thanks to Thierry Thomas)
922- Mark comments in the emoji-picker about dialog as translatable
923
924* Mon May 14 2018 Mike FABIAN <mfabian@redhat.com> - 1.5.37-1
925- Update to 1.5.37
926- Update translations from Zanata (pl and uk updated)
927- Make “Add direct input” option work correctly when
928  “Remember last preedit input method” option is off
929- Fix test case for Korean
930- Rewrite setup UI completely in Python, without using Glade
931- Fix format string in debug message when a dictionary .aff file has no encoding
932  (Resolves: rhbz#1575659)
933- Return False in read_training_data_from_file() if file cannot be opened
934
935* Tue Apr 10 2018 Mike FABIAN <mfabian@redhat.com> - 1.5.36-1
936- Update to 1.5.36
937- Make the default for self.show_status_info_in_auxiliary_text False
938  (Resolves: rhbz#156435)
939- Adapt hunspell_suggest.py to work with pyhunspell 0.5.4
940
941* Wed Mar 07 2018 Mike FABIAN <mfabian@redhat.com> - 1.5.35-1
942- Update to 1.5.35
943- Update translations from zanata (es, pl and uk updated)
944- Update UnicodeData.txt to UnicodeData-11.0.0d13.txt
945- Read also the emoji names from the emoji-test.txt file
946- Update Unicode emoji data to a prerelease of Unicode Emoji Data 11.0
947- Fix PyGTKDeprecationWarning: Using positional arguments with the GObject constructor has been deprecat
948-d.
949- Add “Twemoji” as a good colour emoji font to the emoji-picker font list
950- Don’t show the languages en_001 and  es_419 in the browsing treeview
951- Use romaji=True by default in EmojiMatcher
952- Update emoji annotations from CLDR
953- Fix Source URL in spec file, fedorahosted is retired.
954- Use gzip -n to not include build timestamps in .gz headers
955
956* Fri Feb 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.5.34-4
957- Escape macros in %%changelog
958
959* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.34-3
960- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
961
962* Tue Jan 02 2018 Troy Dawson <tdawson@redhat.com> - 1.5.34-2
963- Update conditionals
964
965* Thu Oct 05 2017 Mike FABIAN <mfabian@redhat.com> - 1.5.34-1
966- update to 1.5.34
967- Update translations from zanata (cs new, de updated)
968- Add some tooltips
969- Add an option whether to use pango font fallback to emoji-picker
970- Update emoji annotations from CLDR
971- Add Recommends: google-noto-emoji-color-fonts
972
973* Mon Sep 11 2017 Mike FABIAN <mfabian@redhat.com> - 1.5.33-1
974- update to 1.5.33
975- Update translations from zanata (es new)
976- Install appstream metadata to /usr/share/metainfo/
977- Update UnicodeData.txt to Unicode 10.0.0
978- Fix test cases and kakasi support for the update of the
979  emoji annotations from CLDR
980- Update emoji annotations from CLDR
981- Skip the emoji which already have skin tone modifiers
982  in itb_emoji.emoji_by_label()
983- Never load characters of Unicode categories “Cc”, “Co”,
984  and “Cs” into the emoji dictionary
985- Update emoji-data.txt to 5.0
986
987* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.32-3
988- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
989
990* Mon Apr 24 2017 Mike FABIAN <mfabian@redhat.com> - 1.5.32-2
991- Do not require nodejs-emojione-json anymore, that package has been orphaned
992
993* Mon Apr 24 2017 Mike FABIAN <mfabian@redhat.com> - 1.5.32-1
994- update to 1.5.32
995- Fix error when starting emoji-picker when the “recently-used” does not yet exist
996- Update emojione.json to version 3.0
997- Add the data from CLDR common/annotationsDerived
998- Load also the CLDR annotations from “annotationsDerived”
999
1000* Tue Apr 18 2017 Mike FABIAN <mfabian@redhat.com> - 1.5.31-1
1001- update to 1.5.31
1002- Rename option --use_vs16 to --non_fully_qualified
1003  (effectivly reversing the default)
1004- Make description labels in info popover selectable to be able
1005  to copy and paste their contents
1006- Sort similar emoji with the same number of matching labels
1007  by cldr_order distance
1008- Map cldr subgroup 'person-sport' to emojione category 'activity'
1009- Make the categorie listings and the search work right
1010  when using --use_vs16
1011- Always store only non-fully-qualified emoji or emoji-sequences
1012  in the internal dictionary
1013- Update emoji annotations from CLDR
1014
1015* Mon Mar 27 2017 Mike FABIAN <mfabian@redhat.com> - 1.5.30-1
1016- update to 1.5.30
1017- Update translations from zanata (de, pl, uk updated)
1018- Use string order as a fallback to cldr_order in category listings
1019- The rainbow flag should be a zwj sequence
1020- Also display the Unicode version in the emoji info popover
1021- When looking up emoji or other characters via Unicode codepoint,
1022  ignore surrogates and private use characters
1023- Show the fonts really used to render an emoji in the
1024  info popover for the emoji
1025- Fix typo in translatable string
1026- itb_emoji.py: Use CLDR order to sort the candidates and
1027  the similar emoji if score is the same
1028
1029* Mon Mar 20 2017 Mike FABIAN <mfabian@redhat.com> - 1.5.29-1
1030- update to 1.5.29
1031- Add Recommends: google-noto-emoji-fonts, “Noto Color Emoji”
1032  looks much better than “Symbola” even in gray scale.
1033- Update translations from zanata (de, pl updated)
1034- Add a “--version” command line option to emoji-picker
1035- itb_emoji.py: Also read emoji-test.txt (from unicode.org)
1036- emoji-picker: Set default font to first available in
1037  ['Noto Color Emoji', 'Emoji One', 'Symbola']
1038- Small parsing improvement of emoji-sequences.txt
1039- Add support to either use U+FE0F VARIATION SELECTOR-16 in emoji sequences or not
1040- emoji-picker: Show “∅ Search produced empty result.” when nothing matches in a search
1041
1042* Sat Mar 18 2017 Mike FABIAN <mfabian@redhat.com> - 1.5.28-1
1043- update to 1.5.28
1044- Allow query by code point even if Python’s unicodedata.name()
1045  does not know the character
1046- Also read names from emoji-sequences.txt and emoji-zwj-sequences.txt
1047- itb_emoji.py: Also read emoji-sequences.txt (from unicode.org)
1048- Fix positioning of info popover (fix a typo in an “if” statement)
1049- Show emoji properties from unicode.org when debugging is on
1050- itb_emoji.py: Also read emoji-zwj-sequences.txt (from unicode.org)
1051- Also use the emoji properties from unicode.org to decide whether
1052  to offer a lookup on emojipedia
1053- Use property “Emoji_Modifier_Base” from emoji-data.txt to check
1054  whether an emoji supports skin tones
1055- itb_emoji.py: Also read emoji-data.txt (from unicode.org)
1056- Tentative skin tone support for families
1057- Improve skin tone support: make it work for professions (roles) as well
1058- Make skin tone popover scrollable and limit its maximum size
1059
1060* Fri Mar 17 2017 Mike FABIAN <mfabian@redhat.com> - 1.5.27-1
1061- update to 1.5.27
1062- Update translations from zanata (pl, uk updated)
1063- emoji-picker: make skin tone selection work for gendered emoji
1064
1065* Thu Mar 16 2017 Mike FABIAN <mfabian@redhat.com> - 1.5.26-1
1066- update to 1.5.26
1067- Update translations from zanata (de updated)
1068- Fix display of warning message when a dictionary is not installed.
1069- Emulate xdg.BaseDirectory.save_data_path() on systems which lack pyxdg
1070- Show the skin tone popover also on a long press gesture
1071- Fix pyhunspell support
1072  Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/5#issuecomment-286251818
1073
1074* Mon Mar 13 2017 Mike FABIAN <mfabian@redhat.com> - 1.5.25-1
1075- update to 1.5.25
1076- on Fedora 26, save some space in the binary rpm by requiring the
1077  Fedora packages which contain the emoji data files
1078- Update translations from zanata (de, pl, uk updated, zh_CN new)
1079- Show the categories as well on right mouse click in emoji-picker
1080- Improve information displayed on right mouse click in emoji-picker
1081- html.unescape() the strings parsed from the cldr annotations
1082- Fix fontsize change for invisible emoji in browse flowbox
1083- Add an option whether the arrow keys are allowed to reopen a preëdit
1084- Add an option to work around the broken forward_key_event()
1085  in the Qt 4/5 im module
1086- Use xdg.BaseDirectory to add a USER_DATADIR to the
1087  search path for data for itb_emoji.py
1088- emoji_picker.py: Speedup: Fix wrong indentation of block
1089  in _fill_flowbox_browse()
1090- emoji_picker.py: Print some profiling information when debugging is enabled
1091- Store the clipboard with gtk_clipboard_store() to keep it around
1092  after emoji-picker quits
1093- emoji-picker: Do not override the decoration layout of the header bar
1094- When an emoji with a different skin tone is selected,
1095  replace the original emoji immediately
1096- Make emoji-picker work on dark themes like Adwaita-dark as well
1097
1098* Mon Mar 06 2017 Mike FABIAN <mfabian@redhat.com> - 1.5.24-1
1099- update to 1.5.24
1100- Update translations from zanata (de updated)
1101- The spin button to change the fontsize should grab focus without selecting
1102- emoji-picker: Don’t check if ibus is running,
1103  ibus does not need to run for emoji-picker
1104- Load .desktop files for emoji-picker and ibus-setup-typing-booster
1105  correctly under Gnome Wayland
1106- Show the most recently used skin tone by default
1107- Use Popovers for skin tones
1108- Don’t use HeaderBar with the default widget titlebar
1109- Display the detailed information of an emoji as a popover, not as a tooltip
1110- Use CSS to show light gray borders around flowbox and listbox children
1111- create emoji-picker sub-package (Resolves: rhbz#1429154)
1112
1113* Mon Feb 27 2017 Mike FABIAN <mfabian@redhat.com> - 1.5.23-1
1114- update to 1.5.23
1115- Update translations from zanata (de, ja, pl, uk updated)
1116- emoji_picker.py: Add a menu button to change the font for the emoji
1117- emoji-picker: Make background colour of the flowbox listing the emoji white
1118- emoji-picker: Use “Symbola” as the default font
1119- Remember the font and the fontsize in a config file
1120- emoji_picker.py: Add a spin button to change the font size of the emoji
1121- Add option to the emoji-picker to load *all* Unicode characters
1122- UI redesign of the emoji-picker
1123- Return an empty list immediately if candidates() is called with an empty search string
1124- Make the fontsize for the names of the emoji in the search results smaller
1125- Make the search in emoji-picker a bit more responsive by using GLib.idle_add()
1126- Save the recently used emoji immediately, not only when the program quits
1127- Set default font size of emoji-picker to 24 instead of 16
1128- Set the emoji font only for the emoji, not for its name in the search results
1129- Set WM_CLASS of emoji-picker and ibus-setup-typing-booster correctly
1130- Add “Icon” and “Categories” to emoji-picker.desktop
1131
1132* Wed Feb 22 2017 Mike FABIAN <mfabian@redhat.com> - 1.5.22-1
1133- update to 1.5.22
1134- Update translations from zanata (de, fr, pl, uk updated)
1135- Add an emoji-picker
1136- Update of en.xml from CLDR’s emoji annotations
1137- Fix skipping of the Korean test case when no Korean dictionary can be found
1138- Fix invalid xml in typing-booster.appdata.xml
1139- add Requires: python3-pyxdg (for the emoji-picker)
1140
1141* Tue Feb 07 2017 Mike FABIAN <mfabian@redhat.com> - 1.5.21-1
1142- update to 1.5.21
1143- add BuildRequires:  hunspell-fr (for make check)
1144- Handle Return and Enter correctly when the cursor is not at
1145  the end of the preëdit (Resolves: rhbz#1418313)
1146- Values of spin buttons should not be translatable
1147- Make the categories from emojione translatable
1148- Make emoji matching accent insensitive
1149- If available use pykakasi to convert Japanese emoji category
1150  names to hiragana
1151- If available use the “pinyin” Python module to add pinyin
1152  to the Chinese names and keywords
1153- Don’t fallback to “zh” from “zh_TW”, “zh_HK”, “zh_MO” and “zh_Hant”
1154- Don’t sort the labels when listing similar emoji
1155- Don’t change Unicode categories to lowercase when loading,
1156  use the original case
1157- Also treat categories 'Zl' and 'Zp' as invisible and add
1158  Unicode code point
1159- When searching for similar emoji, the original emoji should be
1160  most similar to itself
1161- Fix duplicate listing of labels when looking up similar emoji
1162- Make it optionally possible to match emoji in Japanese using romaji
1163- itb_emoji.py: Add the code point to the name of invisible
1164  characters also when looking up similar characters
1165- Better matching of the Unicode categories
1166- Small performance optimization in EmojiMatcher.similar()
1167- Remove any U+2028 LINE SEPARATOR and U+2029 PARAGRAPH SEPARATOR characters
1168  from the lookup table
1169- Nicer display of the matching labels when looking up similar emoji
1170- Don’t strip mathematical symbols (category 'Sm') from tokens
1171- Update of en.xml from CLDR’s emoji annotations
1172- Update translations from zanata (de, pl updated)
1173
1174* Thu Jan 26 2017 Mike FABIAN <mfabian@redhat.com> - 1.5.20-1
1175- update to 1.5.20
1176- Calculate the maximum word length for each dictionary individually
1177- Use .startswith instead of regexp matching when matching in hunspell
1178  dictionaries (speed optimization)
1179- Improve accent insensitive matching (“filosofičtějš” should also
1180  match “filosofičtější”)
1181- Some updates for the emoji annotations in en.xml from CLDR
1182
1183* Thu Jan 19 2017 Mike FABIAN <mfabian@redhat.com> - 1.5.19-2
1184- update to 1.5.19
1185- Improve setup layout (thanks to Trinh Anh Ngoc <atw1990@gmail.com>)
1186- Add some more directories to search for dictionaries (for FreeBSD)
1187- Wrong variable “page_size” was used in set_lookup_table_orientation()
1188- Do not try to reopen the preëdit when any modifier except
1189  CapsLock is on (Resolves: rhbz#1414642)
1190
1191* Tue Jan 17 2017 Mike FABIAN <mfabian@redhat.com> - 1.5.18-1
1192- update to 1.5.18
1193- Fix typo in the “Unbreak sqlite on Python 3.6” patch
1194- Fix the fallback to use pyhunspell-python3 when python3-enchant
1195  is not available
1196- Remove useless ibus-typing-booster.pc
1197
1198* Fri Jan 13 2017 Mike FABIAN <mfabian@redhat.com> - 1.5.17-1
1199- update to 1.5.17
1200- Update py-compile to current upstream version
1201- Also use _ U+FF3F FULLWIDTH LOW LINE as a separator for emoji keywords
1202- Unbreak sqlite on Python 3.6 (thanks to Jan Alexander Steffens)
1203- Return immediately if _update_candidates() is called with
1204  empty input (Resolves: rhbz#1413082)
1205
1206* Tue Jan 10 2017 Mike FABIAN <mfabian@redhat.com> - 1.5.16-1
1207- update to 1.5.16
1208- Remove everything following a tab (including the tab) from
1209  hunspell dictionary lines (Resolves: rhbz#1411659)
1210- Delete a candidate correctly from the user database even if
1211  it starts with a prefix to be stripped from tokens (Resolves: rhbz#1411676)
1212- Trigger emoji lookup when the input starts or ends with '_' or ' '
1213- Better handling of BackSpace and Delete when reaching the
1214  ends of the preëdit (Resolves: rhbz#1411688)
1215- Search for hunspell dictionaries in a list of directories
1216  (Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/6)
1217
1218* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 1.5.15-2
1219- Rebuild for Python 3.6
1220
1221* Fri Dec 09 2016 Mike FABIAN <mfabian@redhat.com> - 1.5.15-1
1222- update to 1.5.15
1223- Default value for self._show_status_info_in_auxiliary_text should be True
1224- Don’t use keyword arguments when instantiating IBus.LookupTable()
1225- Add an option to choose the orientation of the lookup table
1226- Update translations from zanata (de, pl, and uk updated)
1227- Update emojione.json
1228
1229* Fri Nov 25 2016 Mike FABIAN <mfabian@redhat.com> - 1.5.14-1
1230- update to 1.5.14
1231- Reopen preëdit not only on Backspace but also on Delete and arrow keys
1232- Fix "delete whitespace when committing punctuation" problem in firefox
1233  Resolves rhbz#1399192
1234- Add pt_BR translations from zanata. Update uk, pl, and de translations from zanata.
1235- Add an option to show/hide the status information in the auxiliary text
1236- Use ballot box characters in front of the mode indicators in the auxiliary text
1237
1238* Mon Nov 21 2016 Mike FABIAN <mfabian@redhat.com> - 1.5.13-1
1239- update to 1.5.13
1240- Update French translations from zanata
1241
1242* Sun Nov 20 2016 Mike FABIAN <mfabian@redhat.com> - 1.5.12-1
1243- update to 1.5.12
1244- Display existing shortcuts and make it possible to delete them
1245- Update translations from zanata (de, pl, uk)
1246
1247* Thu Nov 17 2016 Mike FABIAN <mfabian@redhat.com> - 1.5.11-1
1248- update to 1.5.11
1249- Add feature to define custom shortcuts
1250- Merge editor and tabengine classes
1251
1252* Wed Nov 09 2016 Mike FABIAN <mfabian@redhat.com> - 1.5.10-1
1253- update to 1.5.10
1254- Make accent insensitive matching also work in the user database
1255- Add test cases for accent insensitive matching
1256- Add 'No' (Number, Other) to VALID_CATEGORIES to be able to
1257  match ¹ U+00B9 SUPERSCRIPT ONE
1258
1259* Mon Oct 24 2016 Mike FABIAN <mfabian@redhat.com> - 1.5.9-1
1260- update to 1.5.9
1261- Make it possible to use a database in different locations than the default
1262- Clear candidate list as well when clearing the lookup table
1263- Add missing CLDR xml files to tar ball
1264- Add unit tests
1265
1266* Mon Oct 10 2016 Mike FABIAN <mfabian@redhat.com> - 1.5.8-1
1267- update to 1.5.8
1268- Pull translations from Zanata (uk and fr updated)
1269- Match many more Unicode characters in the emoji matcher
1270- Make it possible to match Unicode characters by typing the hexadecimal code point
1271- If one tries to set a non-existing input method, don’t crash,
1272  only print an error in the debug log
1273- Add key and mouse bindings for “Off the record” mode to README
1274
1275* Mon Sep 19 2016 Mike FABIAN <mfabian@redhat.com> - 1.5.7-1
1276- update to 1.5.7
1277- Pull translations from Zanata (de, pl, uk updated)
1278- Make the list of characters to auto commit configurable
1279  (Empty list by default)
1280- Fix duplicates in the candidate list caused by overwriting
1281  input_phrase with the NFC version
1282- Don’t show the special candidates for missing dictionaries for
1283  Japanese and Chinese
1284- Implement do_cursor_up() and do_cursor_down() to make scrolling
1285  the lookup table with the mouse wheel work (Needs also a patch in ibus)
1286- Add an “Off the record mode” (also gets a property menu)
1287- Tooltips don’t seem to work on sub-properties, remove the tooltips there
1288- Add a property menu for the emoji prediction mode
1289- Make triggering a commit with “Left” or “Control+Left” work
1290  correctly in “Tab enable mode ” again
1291- Down, Up, Page_Down, and Page_Up should trigger a commit and
1292  be passed to the application if possible
1293- If “☑ Enable suggestions by Tab key” is on make it possible
1294  to close the lookup table with Escape but keep the preëdit
1295- If “☑ Enable suggestions by Tab key” is on, don’t autocommit digits
1296- Make autocommitting much more rare (for characters which are not
1297  the first typed character)
1298- Don’t autocommit the first typed character unless absolutely necessary
1299- Even when “☑ Enable suggestions by Tab key” is used,
1300  don’t complete empty strings
1301
1302* Mon Sep 12 2016 Mike FABIAN <mfabian@redhat.com> - 1.5.6-1
1303- update to 1.5.6
1304- Reduce the number of characters which cause immediate commits a lot
1305- Load CLDR data for *all* languages in the _expand_languages() list
1306- Currency symbols should neither be stripped from tokens nor
1307  trigger an immediate commit
1308- Fix bidi reordering problem in the candidate list for
1309  right-to-left candidates followed by comments
1310- Update emoji annotations from CLDR (de_CH and sr_Latn new,
1311  the others updated)
1312- Remove category 'Pc' from categories to commit immediately
1313  (allow _ to be typed into the preëdit always)
1314- Remove button to install pyhunspell from the setup tool
1315  (python3-enchant is preferred and even required by the Fedora rpm)
1316- Include more currency symbols and fullwidth symbols
1317- Add category from UnicodeData.txt to emoji dictionary
1318  (For better results when looking up related characters)
1319- Add 'Sc', # Symbol, Currency to VALID_CATEGORIES
1320  (to make the currency symbols work)
1321- Add list of valid characters (to include special characters
1322  manually)
1323- Add mouse binding Alt+Mouse3 anywhere in the candidate list
1324  to start the setup tool
1325
1326* Sat Sep 10 2016 Mike FABIAN <mfabian@redhat.com> - 1.5.5-1
1327- update to 1.5.5
1328- Pull translations form Zanata (de, pl, and uk updated because of
1329  the new “About” tab)
1330- If “☑ Enable suggestions by Tab key” option is on, any preëdit
1331  change should hide the lookup table
1332- Make showing of similar emoji work even if emoji preditions are off
1333- Display whether emoji predictions are turned on in the auxiliary string
1334- Add key and mouse bindings to toggle the emoji predictions
1335  (AltGr+F6 and Control+Mouse3 anywhere in the candidate list)
1336- Add AltGr+F10 key binding to open the setup tool
1337- Allow any amount of white space and '_' characters to seperate words
1338  in an emoji query string
1339- Add an “About” tab to the setup tool and put links to home page and
1340  online documentation there.
1341- Update README with latest key binding and mouse binding documentation
1342
1343* Thu Sep 08 2016 Mike FABIAN <mfabian@redhat.com> - 1.5.4-1
1344- update to 1.5.4
1345- Accent insensitive matching
1346- Update pl.po from zanata
1347- Add cache for the suggestions from the hunspell dictionaries
1348- Make Control+MouseButton1 remove the clicked candidate from
1349  the user database (was MouseButton2)
1350- Change key binding for looking up related candidates
1351  from Alt+F12 to AltGr+F12
1352- Change label of the emoji option to
1353  “☑ Unicode symbols and emoji predictions”
1354
1355* Sat Sep 03 2016 Mike FABIAN <mfabian@redhat.com> - 1.5.3-1
1356- update to 1.5.3
1357- Pull translations from Zanata: updates for pl and uk.
1358- Fix behaviour of the option “Minimum number of chars for completion”
1359
1360* Fri Sep 02 2016 Mike FABIAN <mfabian@redhat.com> - 1.5.2-1
1361- update to 1.5.2
1362- get_supported_imes(self) and def get_current_imes(self) should
1363  return copies not the lists directly
1364- Resolves: rhbz#1372660
1365- Update emojione.json, version from 2016-07-16
1366- Pull translations from Zanata: Fixes for fr and pl. New: uk
1367- Changes in itb_emoji.py necessary because of the update of
1368  the CLDR emoji annotations.
1369- Update emoji annotations from CLDR (be, bs, cy, eu, gl, zu
1370  are new, the others updated).
1371- Shortcut keys which look up related candidates should enable
1372  the candidate list
1373- Show ⏳ HOURGLASS WITH FLOWING SAND in the auxiliary text when
1374  the lookup table is being updated
1375- Fix bug when committing the preëdit with Space when no
1376  candidates are available
1377- Improve the behaviour of the “Tab” key
1378- Improve the behaviour of the “Escape” key.
1379- Make mouse clicks in the candidate list behave differently
1380  depending on the mouse button
1381- Add hu-rovas-post.mim to hu_HU.conf
1382
1383* Fri Aug 12 2016 Mike FABIAN <mfabian@redhat.com> - 1.5.1-1
1384- update to 1.5.1
1385- If the query string in EmojiMatcher.candidates() is an emoji
1386  itself, match similar ones (useful when backspacing to an emoji
1387  to correct it)
1388- Data files should not be stored gzipped in the repository
1389- Change displayed input method name from “Hunspell” to “Typing Booster”
1390- Use Zanata to get more translations
1391- French translations added (100% translated)
1392- Polish translations added (100% translated)
1393- Add Recommends: gdouros-symbola-fonts
1394
1395* Thu Aug 11 2016 Mike FABIAN <mfabian@redhat.com> - 1.5.0-1
1396- update to 1.5.0
1397- If the lookup table shows related words, “Escape” shows the
1398  original lookup table
1399- Use itb_nltk.py to find related words (synonyms, hypernyms, and hyponyms)
1400- Add a module to find related words using NLTK
1401- Add a feature to find similar emoji
1402- Add predictions for emoji (optional, on by default)
1403- Add a module to match emoji using Unicode, CLDR, and emojione data
1404- Make typing-booster.appdata.xml translatable
1405- When ignoring key release events, “False” should be returned, not “True”
1406- Resolves: rhbz#1365497
1407- Make typing smoother by updating the candidates using GLib.idle_add()
1408- Make it possible to enter a space into the preëdit by
1409  typing “G- ” (AltGr+Space)
1410
1411* Sun Jul 17 2016 Mike FABIAN <mfabian@redhat.com> - 1.4.8-1
1412- update to 1.4.8
1413- Commit preëdit if modifier keys without transliteration are
1414  typed and pass the key through
1415- Resolves: rhbz#1351748 in a better way
1416
1417* Mon Jul 11 2016 Mike FABIAN <mfabian@redhat.com> - 1.4.7-1
1418- update to 1.4.7
1419- Check if the commit key would change the transliteration if
1420  used as regular input
1421- Resolves: rhbz#1353672
1422
1423* Fri Jul 01 2016 Mike FABIAN <mfabian@redhat.com> - 1.4.6-1
1424- update to 1.4.6
1425- Pass modifier key combinations through if there is no possible
1426  transliteration for that key combination
1427- Resolves: rhbz#1351748
1428
1429* Wed May 11 2016 Mike FABIAN <mfabian@redhat.com> - 1.4.5-1
1430- update to 1.4.5
1431- Do not colourize the preëdit dark blue, that is unreadable on
1432  dark backgrounds
1433- Resolves: rhbz#1335201
1434- Set the size of the libm17n mconv conversion buffer correctly
1435- Resolves: rhbz#1335021
1436
1437* Tue May 10 2016 Mike FABIAN <mfabian@redhat.com> - 1.4.4-1
1438- update to 1.4.4
1439- self._current_imes needs to be updated before self.init_transliterators()
1440- Resolves: rhbz#1334579
1441
1442* Thu Apr 28 2016 Mike FABIAN <mfabian@redhat.com> - 1.4.3-1
1443- update to 1.4.3
1444- Fix AttributeError: 'editor' object has no attribute 'trans'
1445- Resolves: rhbz#1331338
1446
1447- update to 1.4.2
1448- Fix mistyped variable name
1449- Resolves: rhbz#1330461
1450- Add option to remember the preëdit input method used last
1451- Update German translations
1452- The combobox in the setup tool should show the first supported ime
1453  from dconf
1454
1455* Wed Apr 20 2016 Mike FABIAN <mfabian@redhat.com> - 1.4.1-1
1456- update to 1.4.1
1457- Avoid unnessary initialization of transliterators when the set
1458  of input methods has not changed
1459- Add  property menu to choose the current preedit input method
1460- Display preëdit input method in aux_string also when number of
1461  candidates is not shown
1462- Add some tooltips to the setup tool
1463- Update German translations
1464
1465* Sat Apr 09 2016 Mike FABIAN <mfabian@redhat.com> - 1.4.0-3
1466- update to 1.4.0
1467- Call IBus.Bus() in __main__, not in __init__ of class SetupUI
1468- Resolves: rhbz#1325338
1469- Multilingual support, more than one language in an engine
1470- Simple option in the setup tool to enable bilingual support
1471  (i.e. one language + Enlish).
1472- The default of the option “Add direct input” in the setup tool
1473  should be false (bug found by Pravin Satpute).
1474- Changing the main input method with the setup tool should not
1475  remove the direct input (bug found by Pravin Satpute)
1476- Add 0 as a digit to commit directly when using digits as select keys
1477- Clear dictionaries in Hunspell class before reloading
1478
1479* Mon Feb 08 2016 Mike FABIAN <mfabian@redhat.com> - 1.3.1-1
1480- update to 1.3.1
1481- Use new transliterator  from m17n_translit.py also when switching
1482  input methods in the setup tool
1483- Resolves: rhbz#1304677
1484
1485* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.0-4
1486- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
1487
1488* Tue Dec 15 2015 Mike FABIAN <mfabian@redhat.com> - 1.3.0-3
1489- update to 1.3.0
1490- Use libm17n directly instead of going through libtranslit
1491- Forward key events triggering a commit using "forward_key_event()"
1492  instead of relying on "return False"
1493- Resolves: rhbz#1291238
1494- Add code to use F1-F9 as well as keys to select candidates
1495  for commit or remove
1496- Don not commit invisible candidates with select keys with numbers
1497  greater than the length of a page of the candidate list
1498- Control-arrow-left and Control-arrow-right now commit when
1499  the edges of the preedit string are reached
1500- Alt-<number> does not delete a prediction anymore,
1501  now only Control-<number> does this
1502- Add an option to disable the use of the digits 1-9 as
1503  selection keys (useful if one wants easier number input,
1504  selection then works only with the F1-F9 keys)
1505- Support input methods using AltGr (e.g. mr-inscript2)
1506  and Alt keys (e.g. ta-lk-renganathan)
1507- Resolves: rhbz#1051405
1508- Resolves: rhbz#772665
1509
1510* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.15-2
1511- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
1512
1513* Mon Nov 02 2015 Mike FABIAN <mfabian@redhat.com> - 1.2.15-1
1514- Use open() instead of codecs.open() to make the input method help button work again
1515- Resolves: rhbz#1276992
1516
1517* Tue Sep 22 2015 Mike FABIAN <mfabian@redhat.com> - 1.2.14-2
1518- Fix wrong bug number in changelog
1519- Resolves: rhbz#1268153
1520
1521* Tue Sep 22 2015 Mike FABIAN <mfabian@redhat.com> - 1.2.14-1
1522- Add Catalan translations, thanks to Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>
1523- Resolves: rhbz#1268153
1524- Add Catalan engine
1525- Update German translations
1526- Add optional debug code
1527- Fix some pylint warnings
1528
1529* Tue Sep 22 2015 Mike FABIAN <mfabian@redhat.com> - 1.2.13-1
1530- Add a property to start the setup tool
1531- Resolves: rhbz#1260088
1532
1533* Thu Aug 27 2015 Mike FABIAN <mfabian@redhat.com> - 1.2.12-1
1534- Use open() instead of codecs.open() to fix dictionary loading problem on F23
1535- Resolves: rhbz#1257465
1536
1537* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.11-3
1538- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
1539
1540* Wed Mar 25 2015 Richard Hughes <rhughes@redhat.com> - 1.2.11-2
1541- Register as an AppStream component.
1542
1543* Wed Sep 24 2014 Mike FABIAN <mfabian@redhat.com> - 1.2.11-1
1544- Require Python >= 3.3
1545- Always write xml output in UTF-8 encoding, not in the encoding of the current locale
1546- Change class “KeyEvent” to store the keycode as well
1547- Commit when hitting the borders of the preëdit with the arrow keys (Resolves: rhbz#1140502)
1548
1549* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.10-3
1550- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
1551
1552* Mon Mar 17 2014 Mike FABIAN <mfabian@redhat.com> - 1.2.10-2
1553- Resolves: rhbz#1075892 update package URL to typingbooster.org
1554
1555* Thu Feb 27 2014 Mike FABIAN <mfabian@redhat.com> - 1.2.10-1
1556- make profiling work again and make it easier to use
1557- port from Python2 to Python3
1558- add python-enchant support
1559
1560* Fri Jan 17 2014 Mike FABIAN <mfabian@redhat.com> - 1.2.9-1
1561- Fix behaviour of arrow right keys in preëdit (Resolves: rhbz#1049324)
1562- Add timestamps to entries in the user database
1563- Add timestamp support to user_transliteration.py
1564- Use a single user database for all engines
1565- Add *-inscript2 transliteration options to the Indian languages where these were still missing (Resolves: rhbz#1051405)
1566- Make it possible to use multiple hunspell dictionaries at the same time
1567- Make it possible to specify a list of dictionaries in the config files
1568- Make it possible to get a word back into preëdit by using backspace (Resolves: rhbz#1032442)
1569
1570* Fri Dec 20 2013 Anish Patil <apatil@redhat.com> - 1.2.8-1
1571- Change of IME name for oriya language  Resolves: rhbz#1045299
1572- Fixed issue multiple instances of setup menu Resolves: rhbz#1045294
1573
1574* Wed Nov 20 2013 Mike FABIAN <mfabian@redhat.com> - 1.2.7-1
1575- Don’t strip characters with Unicode category “Cf” (Other, format) from tokens (Resolves: rhbz#1032504)
1576
1577* Thu Nov 14 2013 Mike FABIAN <mfabian@redhat.com> - 1.2.6-1
1578- Change wording of the option to show the total number of candidates (Resolves: rhbz#1029748)
1579- Commit candidate clicked on with the mouse (Resolves: rhbz#1029822)
1580- Use direct input also for IBus.InputPurpose.PIN
1581- remove unused und superfluous arguments of constructor of Hunspell class
1582- Add some transliteration options to .conf files which had only native keyboard enabled
1583
1584* Fri Oct 11 2013 Mike FABIAN <mfabian@redhat.com> - 1.2.5-1
1585- Add feature to display input method description to setup tool (Resolves: rhbz#1001581)
1586- Remove the options “m17n_mim_name” and “other_ime” from the .conf files
1587- remove tab_enable option from config files
1588
1589* Tue Oct 01 2013 Mike FABIAN <mfabian@redhat.com> - 1.2.4-3
1590- Resolves: rhbz#1013992 ibus-typing-booster needs to have ibus write-cache --system in %%post and %%postun
1591
1592* Mon Sep 30 2013 Mike FABIAN <mfabian@redhat.com> - 1.2.4-2
1593- remove superfluous line break in changelog
1594
1595* Sat Sep 28 2013 Mike FABIAN <mfabian@redhat.com> - 1.2.4-1
1596- Use normalization form NFD internally for Korean as well
1597- Add check for input purpose for gnome-shell password dialog (Resolves: rhbz#1013008 - ibus-typing-booster shows entered text in password fields)
1598
1599* Mon Sep 16 2013 Mike FABIAN <mfabian@redhat.com> - 1.2.3-3
1600- remove obsoletes/provides, not needed anymore for Fedora >= 21
1601
1602* Tue Aug 06 2013 Mike FABIAN <mfabian@redhat.com> - 1.2.3-1
1603- Update to 1.2.3 upstream version
1604- Fix exception handling when trying to install a rpm package (Resolves: rhbz#986178)
1605
1606* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.2-2
1607- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
1608
1609* Mon Jul 15 2013 Mike FABIAN <mfabian@redhat.com> - 1.2.2-1
1610- Update to 1.2.2 upstream version
1611- Commit immediately when certain punctuation characters are typed and transliteration is not used (Resolves: rhbz#981179)
1612- Add an option to try completion only when a minimum number of characters has been typed
1613
1614* Wed Jul 03 2013 Mike FABIAN <mfabian@redhat.com> - 1.2.1-1
1615- Update to 1.2.1 upstream version
1616- Pop up a message box when a file has been read to train the database, indicating success or failure (Resolves: rhbz#979933)
1617- Update German translation
1618- Ignore most punctuation characters and mathematical symbols when tokenizing (Resolves: rhbz#979939)
1619
1620* Fri Jun 28 2013 Mike FABIAN <mfabian@redhat.com> - 1.2.0-1
1621- Update to 1.2.0 upstream version
1622- Make TAB when used to enable/disable the lookup table work as a toogle
1623- Create a VIEW for “LIKE input_phrase%%” in select_words() and use that
1624  in the following SELECT statements (Makes candidate calculation more
1625  than 10 times faster)
1626
1627* Mon Jun 24 2013 Mike FABIAN <mfabian@redhat.com> - 1.1.0-1
1628- Update to 1.1.0 upstream version
1629- Add a commit=True parameter to check_phrase_and_update_frequency()
1630- Fix that the page_size is shown as 0 in the setup tool if it has not been set before
1631- Do not use AUTOINCREMENT
1632- Make it possible to exit the setup tool by typing Control-C in the terminal
1633- Add feature to read a text file for training the user database
1634- Update German translations and .pot file
1635- Fix error when the hunspell dictionary for an engine is missing
1636
1637* Tue Jun 18 2013 Mike FABIAN <mfabian@redhat.com> - 1.0.3-1
1638- Update to 1.0.3 upstream version
1639- Don’t output page_size in “/usr/libexec/ibus-engine-typing-booster --xml” (Resolves: rhbz#975449 - ibus-daemon prints warnings because “/usr/libexec/ibus-engine-typing-booster --xml” prints the invalid element “page_size”)
1640- Use ~/.local/share/ibus-typing-booster/ to store user data and log files (Resolves: rhbz#949035 - don't use a hidden directory under .local/share)
1641
1642* Fri Jun 14 2013 Mike FABIAN <mfabian@redhat.com> - 1.0.2-1
1643- Update to 1.0.2 upstream version
1644- Push context *after* writing the trigram to the database
1645
1646* Fri Jun 14 2013 Mike FABIAN <mfabian@redhat.com> - 1.0.1-1
1647- Update to 1.0.1 upstream version
1648- Fix problem when IBUS_TYPING_BOOSTER_DEBUG_LEVEL is not set
1649
1650* Thu Jun 13 2013 Mike FABIAN <mfabian@redhat.com> - 1.0.0-1
1651- Update to 1.0.0 upstream version
1652- Remove mudb and use “Write-Ahead Logging”
1653- Introduce an environment variable IBUS_TYPING_BOOSTER_DEBUG_LEVEL for debugging
1654- Speed up converting an old database to the current format
1655- Make prediction more intelligent by using context of up to 2 previous words
1656- Automatically remove whitespace between the last word and a punctuation character ending a sentence
1657
1658* Sun Jun 02 2013 Mike FABIAN <mfabian@redhat.com> - 0.0.32-1
1659- Update to 0.0.32 upstream version
1660- Resolves: rhbz#969847 - Editing in the preëdit of ibus-typing-booster behaves weird, especially with transliteration
1661- Fix behaviour of Control+Number
1662- When committing by typing TAB, update frequency data in user database
1663- When committing by tying RETURN or ENTER, update frequency data in user database
1664- Do not try to match very long words in the hunspell dictionaries
1665- Rewrite the code for moving and editing within the preëdit (rhbz#969847)
1666- Fix encoding error when changing values with the setup tool
1667- Add ko_KR.conf and ko_KR.svg
1668- Use normalization forms NFD or NFKD internally and NFC externally
1669- Remove old way of using libtranslit via ctypes
1670- Get rid of “freq” column in databases
1671- Remove too simpleminded auto-capitalization
1672
1673* Wed May 29 2013 Mike FABIAN <mfabian@redhat.com> - 0.0.31-1
1674- Update to 0.0.31 upstream version
1675- Resolves: rhbz#968209 - Typing characters which are not explicitly listed as “valid_input_chars” in .conf files in ibus-typing-booster get inserted in a weird position
1676- Remove lots of unused and/or useless code
1677- Simplify some code
1678- Fix the problem that after “page down” the first “arrow down” does not move down in the lookup table
1679- Never use “-” or “=” as page up and page down keys
1680- Print more useful debug output when an exception happens
1681- Replace unencodable characters when asking pyhunspell for suggestions
1682- Get dictionary encoding from .aff file
1683- Get rid of the the variable “valid_input_chars” (rhbz#968209)
1684- Remove option “valid_input_chars” from .conf files and template.txt
1685- Replace keysym2unichr(key.code) with IBus.keyval_to_unicode(key.code)
1686
1687* Sun May 26 2013 Mike FABIAN <mfabian@redhat.com> - 0.0.30-1
1688- Update to 0.0.30 upstream version
1689- simplify database structure and code
1690- The Swedish hunspell dictionary is in UTF-8, not ISO-8859-1
1691- SQL LIKE should behave case sensitively
1692- Do not throw away the input phrase in hunspell_suggest.suggest()
1693- Merge candidates which have the same resulting phrase in select_words()
1694- Remove phrases always from the user database when typing Alt+Number
1695- Sync memory user database “mudb” to disk user database “user_db” on focus out
1696- Delete all records from mudb after syncing to user_db
1697- Do not prevent phrases of length < 4 to be added to the frequency database
1698- Resolves: #966947 - When typing a/ with the da_DK ibus-typing-booster, one gets weird matches like a/ACJSTVW
1699- Do not use lang_chars for matching in the hunspell dictionaries, return immediately if input contains a “/” (Resolves: #966947)
1700- Remove lang_chars variable
1701- Use re.escape() to escape the string typed by the user correctly for use in a regular expression
1702- When removing a phrase with Alt+Number, remove it independent of the input_phrase
1703
1704* Tue May 14 2013 Mike FABIAN <mfabian@redhat.com> - 0.0.29-1
1705- Update to 0.0.29 upstream version
1706- 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)
1707- Avoid adding duplicates to the database by checking first whether phrase is already there in add_phrase()
1708
1709* Fri May 10 2013 Mike FABIAN <mfabian@redhat.com> - 0.0.28-1
1710- Update to 0.0.28 upstream version
1711- Resolves: #961923 - python /usr/share/ibus-typing-booster/engine/main.py --xml is extremely slow when many hunspell dictionaries are installed
1712- Put the input phrase into a single column in the databases instead of using one column for each character
1713- Get rid of tab_dict
1714
1715* Mon May 06 2013 Mike FABIAN <mfabian@redhat.com> - 0.0.27-1
1716- Update to 0.0.27 upstream version
1717- Resolves: #959860 - [as_IN] Wrong keymap name Assami (fix spelling error in language name for Assamese)
1718- Resolves: #958770 - [ibus-typing-Booster][gu-IN]- Typo error (fix spelling error in language name for Gujarati)
1719- Resolves: #875285 - IME names too long in gnome-shell Input Sources indicator (remove ✓ from symbol in the .conf files)
1720- simplify code in select_words()
1721- remove some unused functions
1722
1723* Thu Feb 14 2013 Mike FABIAN <mfabian@redhat.com> - 0.0.26-1
1724- Update to 0.0.26 upstream version
1725- Resolves: #910986 - The arrow icons at the bottom of the candidate lookup table of ibus-typing-booster do not work
1726- Use different .svg icons for all engines
1727- Increase number of suggestions from hunspell
1728- Use the auxiliary text to display the number of candidates
1729- Make the display of the number of candidates in the auxiliary text optional
1730- Display of the number of candidates needs to be updated on page-up and page-down
1731
1732* Thu Feb 14 2013 Mike FABIAN <mfabian@redhat.com> - 0.0.25-1
1733- Update to 0.0.25 upstream version
1734- Port to use pygobject3
1735
1736* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.0.24-2
1737- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
1738
1739* Thu Dec 06 2012 Mike FABIAN <mfabian@redhat.com> - 0.0.24-1
1740- Update to 0.0.24 upstream version
1741- Resolves: #884808 - ibus-typing-booster should also show candidates which correct spelling errors
1742- Use pyhunspell to add spell-checking suggestions
1743- Use underline for preedit
1744- Colourize spellchecking suggestions and system phrases already used
1745
1746* Fri Nov 23 2012 Mike FABIAN <mfabian@redhat.com> - 0.0.23-1
1747- Update to 0.0.23 upstream version
1748- Resolves: #879261  dictionary is not automatically reloaded when it is installed via the setup tool
1749- Make the engine reload the dictionary when the dictionary is installed via the setup tool
1750
1751* Wed Nov 14 2012 Mike FABIAN <mfabian@redhat.com> - 0.0.22-1
1752- Update to 0.0.22 upstream version
1753- Resolves: #876666 Properties of ibus-typing-booster to select input methods are not shown by gnome-shell in f18
1754- Make the engine use the input method from the dconf setting
1755- Add combobox to setup GUI to select input method
1756- Update German translation
1757
1758* Mon Nov 12 2012 Mike FABIAN <mfabian@redhat.com> - 0.0.21-1
1759- Update to 0.0.21 upstream version
1760- Resolves: #875285 Shorten symbol displayed in gnome panel
1761- Add space before ( in long display name
1762
1763* Thu Nov 08 2012 Mike FABIAN <mfabian@redhat.com> - 0.0.20-1
1764- Update to 0.0.20 upstream version
1765- Resolves: #874421
1766- Improve setup GUI to make correct dictionary installable (Resolves #874421)
1767- Add page size spin button to setup tool
1768- Connect signals in __init__ of SetupUI after setting the initial values
1769- Make the setup tool find the right config file in gnome-shell on Fedora 18
1770- Update German translation
1771
1772* Tue Nov 06 2012 Mike FABIAN <mfabian@redhat.com> - 0.0.19-1
1773- Update to 0.0.19 upstream version
1774- fix rpmlint warning “incorrect-fsf-address”
1775
1776* Wed Oct 31 2012 Mike FABIAN <mfabian@redhat.com> - 0.0.18-1
1777- Update to 0.0.18 upstream version
1778- Resolves: #871056
1779- Save setup option “Enable suggestions by Tab Key” correctly in dconf (Resolves: #871056)
1780- Make setup dialog translatable and add German translations
1781
1782* Wed Oct 24 2012 Mike FABIAN <mfabian@redhat.com> - 0.0.16-1
1783- Update to 0.0.16 upstream version
1784- Resolves: #869687
1785- Make enabling the lookup table with the TAB key work correctly
1786- Simplify code in add_input()
1787- Make German input typed in NFD work
1788
1789* Mon Oct 22 2012 Mike FABIAN <mfabian@redhat.com> - 0.0.15-1
1790- Update to 0.0.15 upstream version
1791- Resolves: #869050
1792- Make sure the lookup table is hidden if there are no candidates to suggest (#869050)
1793
1794* Mon Oct 22 2012 Mike FABIAN <mfabian@redhat.com> - 0.0.14-1
1795- Update to 0.0.14 upstream version
1796- Show an obvious warning when the hunspell dictionary needed is not found
1797- Show exact matches in the .dic files as suggestions as well
1798- Do not forget the input method used last when activating a previously used engine
1799- Make spelling of the value of “symbol” in the .conf files more consistent
1800- include the file ru_RU.conf
1801
1802* Thu Oct 18 2012 Mike FABIAN <mfabian@redhat.com> - 0.0.13-1
1803- Update to 0.0.13 upstream version, in 0.0.12 I forgot to
1804  include the file de_DE.conf
1805
1806* Thu Oct 18 2012 Mike FABIAN <mfabian@redhat.com> - 0.0.12-1
1807- Update to 0.0.12 upstream version, in 0.0.11 I forgot to
1808  include the file keysym2ucs.py
1809
1810* Thu Oct 18 2012 Mike FABIAN <mfabian@redhat.com> - 0.0.11-1
1811- Upstream has released 0.0.11 version containing the following
1812  improvements:
1813- Add .conf files for many languages and improve some existing .conf files
1814- Read other_ime option case insensitively
1815- Split only at the first = in a line in a .conf file
1816- Fix the problem that the user defined phrases are lost when switching engines
1817- use “layout = default” instead of “layout = us” in all .conf files
1818- Make sure the input of transliterate() is UTF-8 encoded
1819- Add a keysym2unichr() function and use it to support languages which have non Latin1 input
1820- Let first letter start with index 1 in autogenerated tabdict
1821- Use autogenerated tabdict always, not only in m17n mode
1822- Use special value 'NoIme' to indicate that no input method should be used
1823- Use contents of lang_chars for the regexp to match words in the dictionaries
1824- In process_key_event, do not return False when a non-ASCII character has been typed
1825- Read option valid_input_chars as UTF-8
1826- Use the encoding option from the .conf file always, not only in m17n mode
1827- Whether m17n mode is used should depend on the .conf file, not the language
1828- Use correct encoding to decode the dictionary file
1829- Some other minor fixes
1830
1831* Wed Sep 26 2012 Anish Patil <apatil@redhat.com> - 0.0.10-1
1832- Upstream has released new version.
1833
1834* Thu Sep 13 2012 Anish Patil <apatil@redhat.com> - 0.0.9-1
1835- Upstream has released new version.
1836
1837* Tue Aug 14 2012 Anish Patil <apatil@redhat.com> - 0.0.8-1
1838- Upstream has released new version.
1839
1840* Tue Jul 17 2012 Anish Patil <apatil@redhat.com> - 0.0.7-1
1841- The first version.
1842- derieved from ibus-table developed by Yu Yuwei <acevery@gmail.com>
1843