Update to 2.0.0
- Update translations because of the merge of the engines (de, pl, uk updated) - Update emoji annotations from CLDR - Do not hardcode icon names in desktop files (Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/17) - Change the default for “Unicode symbols and emoji predictions” to “False” - Merge all typing-booster engines into one - Change the UI of the setup tool to make it possible to select multiple input methods and dictionaries - Move the buttons to learn from a file and to delete learned data to the options tab - Use the same “About” dialog in the setup tool as in emoji-picker
This commit is contained in:
parent
9b08f132f1
commit
0aa0baec0f
1
.gitignore
vendored
1
.gitignore
vendored
@ -95,3 +95,4 @@
|
||||
/ibus-typing-booster-1.5.36.tar.gz
|
||||
/ibus-typing-booster-1.5.37.tar.gz
|
||||
/ibus-typing-booster-1.5.38.tar.gz
|
||||
/ibus-typing-booster-2.0.0.tar.gz
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
Name: ibus-typing-booster
|
||||
Version: 1.5.38
|
||||
Release: 2%{?dist}
|
||||
Version: 2.0.0
|
||||
Release: 1%{?dist}
|
||||
Summary: A completion input method
|
||||
License: GPLv3+
|
||||
Group: System Environment/Libraries
|
||||
@ -107,19 +107,18 @@ pushd engine
|
||||
popd
|
||||
eval $(dbus-launch --sh-syntax)
|
||||
dconf dump /
|
||||
dconf write /desktop/ibus/engine/typing-booster/typing-booster-de-de/offtherecord false
|
||||
dconf write /desktop/ibus/engine/typing-booster/typing-booster-de-de/usedigitsasselectkeys true
|
||||
dconf write /desktop/ibus/engine/typing-booster/typing-booster-de-de/tabenable false
|
||||
dconf write /desktop/ibus/engine/typing-booster/typing-booster-de-de/inputmethod "'NoIme'"
|
||||
dconf write /desktop/ibus/engine/typing-booster/typing-booster-de-de/adddirectinput false
|
||||
dconf write /desktop/ibus/engine/typing-booster/typing-booster-de-de/rememberlastusedpreeditime true
|
||||
dconf write /desktop/ibus/engine/typing-booster/typing-booster-de-de/mincharcomplete 1
|
||||
dconf write /desktop/ibus/engine/typing-booster/typing-booster-de-de/dictionary "'en_US'"
|
||||
dconf write /desktop/ibus/engine/typing-booster/typing-booster-de-de/emojipredictions true
|
||||
dconf write /desktop/ibus/engine/typing-booster/typing-booster-de-de/autocommitcharacters "''"
|
||||
dconf write /desktop/ibus/engine/typing-booster/typing-booster-de-de/pagesize 6
|
||||
dconf write /desktop/ibus/engine/typing-booster/typing-booster-de-de/shownumberofcandidates true
|
||||
dconf write /desktop/ibus/engine/typing-booster/typing-booster-de-de/showstatusinfoinaux true
|
||||
dconf write /desktop/ibus/engine/typing-booster/offtherecord false
|
||||
dconf write /desktop/ibus/engine/typing-booster/usedigitsasselectkeys true
|
||||
dconf write /desktop/ibus/engine/typing-booster/tabenable false
|
||||
dconf write /desktop/ibus/engine/typing-booster/inputmethod "'NoIme'"
|
||||
dconf write /desktop/ibus/engine/typing-booster/rememberlastusedpreeditime true
|
||||
dconf write /desktop/ibus/engine/typing-booster/mincharcomplete 1
|
||||
dconf write /desktop/ibus/engine/typing-booster/dictionary "'en_US'"
|
||||
dconf write /desktop/ibus/engine/typing-booster/emojipredictions true
|
||||
dconf write /desktop/ibus/engine/typing-booster/autocommitcharacters "''"
|
||||
dconf write /desktop/ibus/engine/typing-booster/pagesize 6
|
||||
dconf write /desktop/ibus/engine/typing-booster/shownumberofcandidates true
|
||||
dconf write /desktop/ibus/engine/typing-booster/showstatusinfoinaux true
|
||||
dconf dump /
|
||||
ibus-daemon -drx
|
||||
make check || cat ./tests/test-suite.log
|
||||
@ -137,6 +136,14 @@ make check || cat ./tests/test-suite.log
|
||||
%{_datadir}/%{name}
|
||||
%{_datadir}/metainfo/typing-booster.appdata.xml
|
||||
%{_datadir}/ibus/component/typing-booster.xml
|
||||
%{_datadir}/icons/hicolor/16x16/apps/ibus-typing-booster.png
|
||||
%{_datadir}/icons/hicolor/22x22/apps/ibus-typing-booster.png
|
||||
%{_datadir}/icons/hicolor/32x32/apps/ibus-typing-booster.png
|
||||
%{_datadir}/icons/hicolor/48x48/apps/ibus-typing-booster.png
|
||||
%{_datadir}/icons/hicolor/64x64/apps/ibus-typing-booster.png
|
||||
%{_datadir}/icons/hicolor/128x128/apps/ibus-typing-booster.png
|
||||
%{_datadir}/icons/hicolor/256x256/apps/ibus-typing-booster.png
|
||||
%{_datadir}/icons/hicolor/scalable/apps/ibus-typing-booster.svg
|
||||
%{_libexecdir}/ibus-engine-typing-booster
|
||||
%{_libexecdir}/ibus-setup-typing-booster
|
||||
%{_datadir}/applications/ibus-setup-typing-booster.desktop
|
||||
@ -147,6 +154,19 @@ make check || cat ./tests/test-suite.log
|
||||
|
||||
|
||||
%changelog
|
||||
* Mon May 28 2018 Mike FABIAN <mfabian@redhat.com> - 2.0.0-1
|
||||
- Update to 2.0.0
|
||||
- Update translations because of the merge of the engines (de, pl, uk updated)
|
||||
- Update emoji annotations from CLDR
|
||||
- Do not hardcode icon names in desktop files
|
||||
(Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/17)
|
||||
- Change the default for “Unicode symbols and emoji predictions” to “False”
|
||||
- Merge all typing-booster engines into one
|
||||
- Change the UI of the setup tool to make it possible to select
|
||||
multiple input methods and dictionaries
|
||||
- Move the buttons to learn from a file and to delete learned data to the options tab
|
||||
- Use the same “About” dialog in the setup tool as in emoji-picker
|
||||
|
||||
* Tue May 22 2018 Mike FABIAN <mfabian@redhat.com> - 1.5.38-2
|
||||
- Update to 1.5.38
|
||||
- Refresh french translation (thanks to Thierry Thomas)
|
||||
|
||||
2
sources
2
sources
@ -1 +1 @@
|
||||
SHA512 (ibus-typing-booster-1.5.38.tar.gz) = 67b81a47501ae4e885d2a79b122799b78dcdd044ad8e36a140d4c6587a23072d08e3e025f755c191cee82c3ab81ea1a974a5a0f6438e7203ba2d63d7e1cd4eff
|
||||
SHA512 (ibus-typing-booster-2.0.0.tar.gz) = 140044be13b47590a0835bb4b8da7311cdb92e8134a88a7b999ea6f530298950c4f8ce9ff3462394e4b52de0c56e3072671da85c99b448a91f442fdc460c608b
|
||||
|
||||
Loading…
Reference in New Issue
Block a user