Blame SPECS/ibus-table.spec

b8f02b
Name:       ibus-table
b8f02b
Version:    1.12.5
b8f02b
Release:    5%{?dist}
b8f02b
Summary:    The Table engine for IBus platform
b8f02b
License:    LGPLv2+
b8f02b
URL:        http://code.google.com/p/ibus/
b8f02b
Source0:    http://mfabian.fedorapeople.org/ibus-table/%{name}-%{version}.tar.gz
b8f02b
Requires:       ibus > 1.3.0
b8f02b
%{?__python3:Requires: %{__python3}}
b8f02b
BuildRequires:  gcc
b8f02b
BuildRequires:  ibus-devel > 1.3.0
b8f02b
BuildRequires:  python3-devel
b8f02b
# for the unit tests
b8f02b
%if 0%{?fedora}
b8f02b
BuildRequires:  appstream
b8f02b
%endif
b8f02b
BuildRequires:  libappstream-glib
b8f02b
BuildRequires:  desktop-file-utils
b8f02b
BuildRequires:  python3-gobject
b8f02b
BuildRequires:  python3-gobject-base
b8f02b
BuildRequires:  dbus-x11
b8f02b
BuildRequires:  xorg-x11-server-Xvfb
b8f02b
BuildRequires:  ibus-table-chinese-wubi-jidian
b8f02b
BuildRequires:  ibus-table-chinese-cangjie
b8f02b
BuildRequires:  ibus-table-chinese-stroke5
b8f02b
BuildRequires:  ibus-table-code
b8f02b
BuildRequires:  ibus-table-latin
b8f02b
BuildRequires:  ibus-table-translit
b8f02b
BuildRequires:  ibus-table-tv
b8f02b
BuildRequires: make
b8f02b
b8f02b
Obsoletes:   ibus-table-additional < 1.2.0.20100111-5
b8f02b
b8f02b
BuildArch:  noarch
b8f02b
b8f02b
%description
b8f02b
The Table engine for IBus platform.
b8f02b
b8f02b
%package -n %{name}-devel
b8f02b
Summary:        Development files for %{name}
b8f02b
Requires:       %{name} = %{version}-%{release}, pkgconfig
b8f02b
b8f02b
%description -n %{name}-devel
b8f02b
Development files for %{name}.
b8f02b
b8f02b
%package tests
b8f02b
Summary:        Tests for the %{name} package
b8f02b
Requires:       %{name} = %{version}-%{release}
b8f02b
b8f02b
%description tests
b8f02b
The %{name}-tests package contains tests that can be used to verify
b8f02b
the functionality of the installed %{name} package.
b8f02b
b8f02b
%prep
b8f02b
%setup -q
b8f02b
b8f02b
%build
b8f02b
export PYTHON=%{__python3}
b8f02b
%configure --disable-static --disable-additional --enable-installed-tests
b8f02b
%__make %{?_smp_mflags}
b8f02b
b8f02b
%install
b8f02b
%__rm -rf $RPM_BUILD_ROOT
b8f02b
export PYTHON=%{__python3}
b8f02b
%__make DESTDIR=${RPM_BUILD_ROOT} NO_INDEX=true install pkgconfigdir=%{_datadir}/pkgconfig
b8f02b
%py_byte_compile %{python3} /usr/share/ibus-table/engine
b8f02b
%py_byte_compile %{python3} /usr/share/ibus-table/setup
b8f02b
b8f02b
%find_lang %{name}
b8f02b
b8f02b
%check
b8f02b
%if 0%{?fedora}
b8f02b
appstreamcli validate --pedantic --explain --no-net %{buildroot}/%{_datadir}/metainfo/*.appdata.xml
b8f02b
%endif
b8f02b
appstream-util validate-relax --nonet %{buildroot}/%{_datadir}/metainfo/*.appdata.xml
b8f02b
desktop-file-validate \
b8f02b
    $RPM_BUILD_ROOT%{_datadir}/applications/ibus-setup-table.desktop
b8f02b
pushd engine
b8f02b
# run doctests
b8f02b
    python3 table.py
b8f02b
    python3 it_util.py
b8f02b
popd
b8f02b
mkdir -p /tmp/glib-2.0/schemas/
b8f02b
cp org.freedesktop.ibus.engine.table.gschema.xml \
b8f02b
   /tmp/glib-2.0/schemas/org.freedesktop.ibus.engine.table.gschema.xml
b8f02b
glib-compile-schemas /tmp/glib-2.0/schemas #&>/dev/null || :
b8f02b
export XDG_DATA_DIRS=/tmp
b8f02b
eval $(dbus-launch --sh-syntax)
b8f02b
dconf dump /
b8f02b
dconf write /org/freedesktop/ibus/engine/table/wubi-jidian/chinesemode 1
b8f02b
dconf write /org/freedesktop/ibus/engine/table/wubi-jidian/spacekeybehavior false
b8f02b
dconf dump /
b8f02b
export DISPLAY=:1
b8f02b
Xvfb $DISPLAY -screen 0 1024x768x16 &
b8f02b
# A window manager and and ibus-daemon are needed to run the GUI
b8f02b
# test tests/test_gtk.py, for example i3 can be used.
b8f02b
#
b8f02b
# To debug what is going on if there is a problem with the GUI test
b8f02b
# add BuildRequires: x11vnc and start a vnc server:
b8f02b
#
b8f02b
#     x11vnc -display $DISPLAY -unixsock /tmp/mysock -bg -nopw -listen localhost -xkb
b8f02b
#
b8f02b
# Then one can view what is going on outside of the chroot with vncviewer:
b8f02b
#
b8f02b
#     vncviewer /var/lib/mock/fedora-32-x86_64/root/tmp/mysock
b8f02b
#
b8f02b
# The GUI test will be skipped if XDG_SESSION_TYPE is not x11 or wayland.
b8f02b
#
b8f02b
#ibus-daemon -drx
b8f02b
#touch /tmp/i3config
b8f02b
#i3 -c /tmp/i3config &
b8f02b
#export XDG_SESSION_TYPE=x11
b8f02b
b8f02b
make check && rc=0 || rc=1
b8f02b
cat tests/*.log
b8f02b
if [ $rc != 0 ] ; then
b8f02b
    exit $rc
b8f02b
fi
b8f02b
b8f02b
%files -f %{name}.lang
b8f02b
%doc AUTHORS COPYING README
b8f02b
%{_datadir}/%{name}
b8f02b
%{_datadir}/metainfo/*.appdata.xml
b8f02b
%{_datadir}/ibus/component/table.xml
b8f02b
%{_datadir}/applications/ibus-setup-table.desktop
b8f02b
%{_datadir}/glib-2.0/schemas/org.freedesktop.ibus.engine.table.gschema.xml
b8f02b
%{_bindir}/%{name}-createdb
b8f02b
%{_libexecdir}/ibus-engine-table
b8f02b
%{_libexecdir}/ibus-setup-table
b8f02b
%{_mandir}/man1/*
b8f02b
b8f02b
%files devel
b8f02b
%{_datadir}/pkgconfig/%{name}.pc
b8f02b
b8f02b
%files tests
b8f02b
%dir %{_libexecdir}/installed-tests
b8f02b
%{_libexecdir}/installed-tests/%{name}
b8f02b
%dir %{_datadir}/installed-tests
b8f02b
%{_datadir}/installed-tests/%{name}
b8f02b
b8f02b
%changelog
b8f02b
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1.12.5-5
b8f02b
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
b8f02b
  Related: rhbz#1991688
b8f02b
b8f02b
* Fri Jul 16 2021 Mike FABIAN <mfabian@redhat.com> - 1.12.5-4
b8f02b
- Related: rhbz#1974631 Delete ibus write-cache in scriptlet
b8f02b
b8f02b
* Wed Jun 30 2021 Mike FABIAN <mfabian@redhat.com> - 1.12.5-3
b8f02b
- Resolves: rhbz#1974631 Delete ibus write-cache in scriptlet
b8f02b
- Improve CI tests and add gating.yaml
b8f02b
b8f02b
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1.12.5-2
b8f02b
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
b8f02b
b8f02b
* Fri Mar 05 2021 Mike FABIAN <mfabian@redhat.com> - 1.12.5-1
b8f02b
- Update to 1.12.5
b8f02b
- Return False in _execute_command_commit_candidate_number(self, number)
b8f02b
  if number out of range
b8f02b
- Resolves: https://github.com/moebiuscurve/ibus-table-others/issues/21
b8f02b
- remove Use-from-unittest-import-mock-instead-of-just-import.patch
b8f02b
  (included upstream)
b8f02b
- Update translations from Weblate (New translation for Sinhala (si) started)
b8f02b
b8f02b
* Wed Feb 17 2021 Mike FABIAN <mfabian@redhat.com> - 1.12.4-5
b8f02b
- Use “BuildRequires:  appstream” only on Fedora
b8f02b
b8f02b
* Tue Feb 16 2021 Mike FABIAN <mfabian@redhat.com> - 1.12.4-4
b8f02b
- Remove i3 from BuildRequires
b8f02b
b8f02b
* Tue Feb 02 2021 Mike FABIAN <mfabian@redhat.com> - 1.12.4-3
b8f02b
- Use standard library mock
b8f02b
b8f02b
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.12.4-2
b8f02b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
b8f02b
b8f02b
* Sun Jan 24 2021 Mike FABIAN <mfabian@redhat.com> - 1.12.4-1
b8f02b
- Update to 1.12.4
b8f02b
- Update translations from Weblate (updated es, cs, fa, pt_BR, zh_CN).
b8f02b
  zh_CN is 100% complete now.
b8f02b
b8f02b
* Wed Jan 06 2021 Mike FABIAN <mfabian@redhat.com> - 1.12.3-1
b8f02b
- Update to 1.12.3
b8f02b
- Pass the key for the command 'cancel' (default Esc) through
b8f02b
  if the preedit is empty
b8f02b
- Resolves: https://github.com/kaio/ibus-table/issues/64
b8f02b
b8f02b
* Mon Jan 04 2021 Mike FABIAN <mfabian@redhat.com> - 1.12.2-1
b8f02b
- Update to 1.12.2
b8f02b
- Update translations from Weblate
b8f02b
  (updated ca, cs, es, fa, ja, pt_BR, pt_PT, tr, zh_CN, zh_HK, zh_TW)
b8f02b
b8f02b
* Fri Sep 04 2020 Mike FABIAN <mfabian@redhat.com> - 1.12.1-1
b8f02b
- Update to 1.12.1
b8f02b
- Enable compose support.
b8f02b
- Add buttons to move key bindings for a command up or down.
b8f02b
- Make translations of 'Edit key bindings for command “%s”' work
b8f02b
- Added it_util.py to POTFILES, it had translatable strings for
b8f02b
  the “About” dialog and the key settings dialog.
b8f02b
- Update translations from Weblate (updated ca, de, fr, tr, uk)
b8f02b
b8f02b
* Wed Aug 26 2020 Mike FABIAN <mfabian@redhat.com> - 1.12.0-1
b8f02b
- Update to 1.12.0
b8f02b
- New setup tool, now keybindings can be configured with a GUI.
b8f02b
- Resolves: https://github.com/kaio/ibus-table/issues/57
b8f02b
- Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1133127
b8f02b
- Put exact (except tone) pinyin matches next after exact
b8f02b
  matches in the candidate list.
b8f02b
- Resolves: https://github.com/kaio/ibus-table/issues/63
b8f02b
- Allow lookup table orientation “System Default” in the setup
b8f02b
- Remove “spacekeybehavior” option, it became useless as all
b8f02b
  keybindings are configurable now.
b8f02b
- Added a “debuglevel” option.
b8f02b
- Update translations from Weblate (updated ca, cs, de, es, fa,
b8f02b
  fr, ja, pt_BR, pt_PT, uk, zh_TW, zh_HK, zh_CN)
b8f02b
b8f02b
* Sun Aug 16 2020 Mike FABIAN <mfabian@redhat.com> - 1.11.0-1
b8f02b
- Update to 1.11.0
b8f02b
- Make key bindings configurable.
b8f02b
  Only via the command line for the moment, not yet easy to do
b8f02b
  for normal users. I have to rewrite the setup tool eventually
b8f02b
  to make that possible.
b8f02b
- Resolves: https://github.com/ibus/ibus/issues/2241
b8f02b
b8f02b
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.1-2
b8f02b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
b8f02b
b8f02b
* Wed Jul 15 2020 Mike FABIAN <mfabian@redhat.com> - 1.10.1-1
b8f02b
- Update to 1.10.1
b8f02b
- Add GUI test
b8f02b
- Make output of ibus-table-createdb deterministic
b8f02b
- Update translations from Weblate (updated fr, tr, zh_CN)
b8f02b
b8f02b
* Wed Jul 01 2020 Mike FABIAN <mfabian@redhat.com> - 1.10.0-1
b8f02b
- Update to 1.10.0
b8f02b
- Add suggestion mode feature
b8f02b
- Resolves: https://github.com/mike-fabian/ibus-table/pull/9
b8f02b
- Resolves: rhbz#835376
b8f02b
- Add test cases for suggestion mode feature
b8f02b
- Fix problems with the behaviour of the property menus
b8f02b
- Use python logging module with log file rotation instead
b8f02b
  of writing to stdout/stderr
b8f02b
- Update translations from Weblate (updated de, es, fr, pt_BR, pt_PT, tr, uk)
b8f02b
b8f02b
* Mon Jun 22 2020 Mike FABIAN <mfabian@redhat.com> - 1.9.25-3
b8f02b
- Byte compile python files namually,
b8f02b
  see: https://fedoraproject.org/wiki/Changes/No_more_automagic_Python_bytecompilation_phase_3
b8f02b
b8f02b
* Thu Jun 04 2020 Miro Hrončok <mhroncok@redhat.com> - 1.9.25-2
b8f02b
- Don't explicitly require python(abi) >= 3.3
b8f02b
b8f02b
* Wed Feb 12 2020 Mike FABIAN <mfabian@redhat.com> - 1.9.25-1
b8f02b
- update to 1.9.25
b8f02b
- Fix crash when changing some options using the menu or the floating panel
b8f02b
- Resolves: rhbz#1803028
b8f02b
- Translation updates (pt_PT)
b8f02b
b8f02b
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.24-2
b8f02b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
b8f02b
b8f02b
* Wed Jan 22 2020 Mike FABIAN <mfabian@redhat.com> - 1.9.24-1
b8f02b
- update to 1.9.24
b8f02b
- Fixed two typos in message ids (Thanks to Rafael Fontenelle)
b8f02b
- Translation updates (tr, fr, fa, pt, uk)
b8f02b
- New test cases for ibus-table-others
b8f02b
b8f02b
* Tue Jan 07 2020 Mike FABIAN <mfabian@redhat.com> - 1.9.23-1
b8f02b
- update to 1.9.23
b8f02b
- Add exist_ok=True in os.makedirs(path, exist_ok=True) to
b8f02b
  avoid failure due to race condition.
b8f02b
- Resolves:rhbz#1786652
b8f02b
- Move MockEngine classes into a separate file and make
b8f02b
  test_itb.py runnable standalone
b8f02b
- Translation updates for several languages (French at 100%
b8f02b
  now, Brazilian Portuguese at 100% now, Portuguese
b8f02b
  (Portugal) new and now at 31.5%)
b8f02b
b8f02b
* Tue Dec 17 2019 Mike FABIAN <mfabian@redhat.com> - 1.9.22-1
b8f02b
- update to 1.9.22
b8f02b
- Add Turkish translation from Weblate, 100% translated
b8f02b
- Minor translation fixes in some other languages (Punctuation fixes)
b8f02b
b8f02b
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.21-5
b8f02b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
b8f02b
b8f02b
* Tue Feb 12 2019 Mike FABIAN <mfabian@redhat.com> - 1.9.21-4
b8f02b
- Fix FTBFS in Fedora rawhide/f30: Add gcc and dbus-x11 to BuildRequires
b8f02b
  (Resolves: rhbz#1676299)
b8f02b
b8f02b
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.21-3
b8f02b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
b8f02b
b8f02b
* Tue Oct 09 2018 Mike FABIAN <mfabian@redhat.com> - 1.9.21-2
b8f02b
- Require the Python interpreter directly instead of using the package name
b8f02b
- Related: rhbz#1619153
b8f02b
b8f02b
* Wed Aug 29 2018 Mike FABIAN <mfabian@redhat.com> - 1.9.21-1
b8f02b
- update to 1.9.21
b8f02b
- Migrate IBusConfig to GSettings.
b8f02b
  Resolves: https://github.com/mike-fabian/ibus-table/issues/4
b8f02b
- Add a test suite
b8f02b
- Add missing tags to ibus-table-createdb.sgml.
b8f02b
  Resolves: https://github.com/mike-fabian/ibus-table/issues/3
b8f02b
b8f02b
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.20-3
b8f02b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
b8f02b
b8f02b
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 1.9.20-2
b8f02b
- Rebuilt for Python 3.7
b8f02b
b8f02b
* Thu May 03 2018 Mike FABIAN <mfabian@redhat.com> - 1.9.20-1
b8f02b
- update to 1.9.20
b8f02b
- Draw InputMode text instead of icon into panel on non-Gnome desktops.
b8f02b
  Resolves: https://github.com/mike-fabian/ibus-table/issues/6
b8f02b
  (Thanks to Takao Fujiwara)
b8f02b
- Make it work with Python2 again
b8f02b
b8f02b
* Mon Apr 30 2018 Mike FABIAN <mfabian@redhat.com> - 1.9.19-1
b8f02b
- update to 1.9.19
b8f02b
- Sync phrases cache from/to external storage (thanks to heiher).
b8f02b
- Update translations from zanata (cs new)
b8f02b
b8f02b
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.18-2
b8f02b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
b8f02b
b8f02b
* Wed Aug 02 2017 Mike FABIAN <mfabian@redhat.com> - 1.9.18-1
b8f02b
- update to 1.9.18
b8f02b
- validate ibus-table.appdata.xml in %%check
b8f02b
- Update translations from zanata (pt_BR updated, es new)
b8f02b
- Don't query user database if user define phrase and
b8f02b
  dynamic adjust are disabled (thanks to heiher)
b8f02b
- Enable hash map based cache for user database enabled
b8f02b
  (thanks to heiher)
b8f02b
- Import hash map based cache for table database (thanks to
b8f02b
  heiher)
b8f02b
- Install appstream metadata to /usr/share/metainfo/ (thanks
b8f02b
  to jbicha)
b8f02b
- Fix some appdata validation issues (thanks to jbicha)
b8f02b
- Fix bug in Unihan_Variants.txt, 著 U+8457 is both
b8f02b
  simplified *and* traditional Chinese (thanks to heiher)
b8f02b
b8f02b
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.17-2
b8f02b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
b8f02b
b8f02b
* Thu Jun 01 2017 Mike FABIAN <mfabian@redhat.com> - 1.9.17-1
b8f02b
- update to 1.9.17
b8f02b
- Load .desktop file for ibus-setup-table correctly under Gnome Wayland
b8f02b
- Set WM_CLASS of ibus-setup-table correctly
b8f02b
b8f02b
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.16-2
b8f02b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
b8f02b
b8f02b
* Tue Jan 17 2017 Mike FABIAN <mfabian@redhat.com> - 1.9.16-1
b8f02b
- update to 1.9.16
b8f02b
- Avoid running initialization code of ibus_table_location.py
b8f02b
  when using ibus-table-createdb.
b8f02b
- Make it work on Python 3.6 (Unbreak sqlite on Python 3.6)
b8f02b
  (Resolves: rhbz#1413580).
b8f02b
b8f02b
* Mon Jan 16 2017 Mike FABIAN <mfabian@redhat.com> - 1.9.15-1
b8f02b
- update to 1.9.15
b8f02b
- Update translations from zanata (ca, de, fr, uk updated)
b8f02b
- Point to new home-page in the “About” tab.
b8f02b
- Improve README
b8f02b
b8f02b
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 1.9.14-2
b8f02b
- Rebuild for Python 3.6
b8f02b
b8f02b
* Wed Aug 24 2016 Mike FABIAN <mfabian@redhat.com> - 1.9.14-1
b8f02b
- update to 1.9.14
b8f02b
- Fix bug in Unihan_Variants.txt, 乾 U+4E7E is both simplified
b8f02b
  and traditional Chinese (thanks to Heiher <r@hev.cc>)
b8f02b
b8f02b
* Tue Aug 23 2016 Mike FABIAN <mfabian@redhat.com> - 1.9.13-1
b8f02b
- update to 1.9.13
b8f02b
- When ignoring key release events, “False” should be returned, not “True”
b8f02b
- Resolves: Resolves: rhbz#1369514
b8f02b
- add ibus-table.appdata.xml and make it translatable
b8f02b
- pull some new translations and updates from Zanata
b8f02b
  (ca, fr, pt_BR, and uk are new, ja, zh_CN, and
b8f02b
  zh_TW have updates).
b8f02b
b8f02b
* Wed Mar 16 2016 Mike FABIAN <mfabian@redhat.com> - 1.9.12-1
b8f02b
- update to 1.9.12
b8f02b
- Show the table code in the candidate list when pinyin mode is used
b8f02b
- Resolves: rhbz#1318109
b8f02b
b8f02b
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.11-2
b8f02b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
b8f02b
b8f02b
* Fri Nov 27 2015 Mike FABIAN <mfabian@redhat.com> - 1.9.11-1
b8f02b
- update to 1.9.11
b8f02b
- Fix bug in Unihan_Variants.txt, U+9762 and U+7CFB are both simplified *and* traditional Chinese
b8f02b
- Resolves: rhbz#1285379
b8f02b
- Add a few more IBus.Text.new_from_string() conversions to make it work on older systems
b8f02b
b8f02b
* Tue Nov 24 2015 Mike FABIAN <mfabian@redhat.com> - 1.9.10-2
b8f02b
- update to 1.9.10
b8f02b
- Fix bug in Unihan_Variants.txt, U+8868 and U+6770 are both simplified *and* traditional Chinese
b8f02b
- Resolves: rhbz#1284749
b8f02b
b8f02b
* Tue Nov 17 2015 Mike FABIAN <mfabian@redhat.com> - 1.9.9-1
b8f02b
- update to 1.9.9
b8f02b
- Fix hotkey matching
b8f02b
- Resolves: rhbz#1282683
b8f02b
b8f02b
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.9.8-2
b8f02b
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
b8f02b
b8f02b
* Wed Oct 21 2015 Mike FABIAN <mfabian@redhat.com> - 1.9.8-1
b8f02b
- update to 1.9.8
b8f02b
- Get option 'lookuptableorientation' default value from database (Thanks to Heiher <r@hev.cc>).
b8f02b
b8f02b
* Wed Oct 14 2015 Mike FABIAN <mfabian@redhat.com> - 1.9.7-1
b8f02b
- update to 1.9.7
b8f02b
- When matching hotkeys, ignore all modifiers not requested in the match
b8f02b
- Fix U+8986 in Unihan_variants.txt, it is both simplified *and* traditional Chinese
b8f02b
- Resolves: rhbz#1271036
b8f02b
- Update Unihan_Variants.txt from "2014-05-09 Unicode 7.0.0" to "2015-04-30 Unicode 8.0.0"
b8f02b
b8f02b
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.9.6-2
b8f02b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
b8f02b
b8f02b
* Wed May 06 2015 Mike FABIAN <mfabian@redhat.com> - 1.9.6-1
b8f02b
- update to 1.9.6
b8f02b
- Use os.path.expanduser('~') instead of os.getenv('HOME')
b8f02b
- Resolves: rhbz#1218023
b8f02b
b8f02b
* Mon Apr 13 2015 Mike FABIAN <mfabian@redhat.com> - 1.9.5-1
b8f02b
- update to 1.9.5
b8f02b
- Don’t strip space when parsing phrases from a source table
b8f02b
- Resolves: rhbz#1211208
b8f02b
b8f02b
* Sat Mar 07 2015 Mike FABIAN <mfabian@redhat.com> - 1.9.4-1
b8f02b
- update to 1.9.4
b8f02b
- Check existence of old log files before trying to delete them
b8f02b
- Resolves: rhbz#1199673
b8f02b
b8f02b
* Mon Mar 02 2015 Mike FABIAN <mfabian@redhat.com> - 1.9.3-1
b8f02b
- update to 1.9.3
b8f02b
- Try to get the English name of the table if run in locale C/POSIX
b8f02b
- Resolves: rhbz#1197001
b8f02b
b8f02b
* Fri Jan 09 2015 Mike FABIAN <mfabian@redhat.com> - 1.9.2-1
b8f02b
- update to 1.9.2
b8f02b
- Use directories according to theXDG Base Directory Specification
b8f02b
- Resolves: rhbz#1172524
b8f02b
- When a leading invalid character is passed through, it needs
b8f02b
  to be remembered in self._prev_char
b8f02b
- Change class “KeyEvent” to store the keycode as well
b8f02b
b8f02b
* Tue Sep 30 2014 Mike FABIAN <mfabian@redhat.com> - 1.9.1-1
b8f02b
- update to 1.9.1
b8f02b
- Use proper fallback when reading the localized table name
b8f02b
- Show pinyin mode as well in the input mode indicator
b8f02b
b8f02b
* Tue Sep 16 2014 Mike FABIAN <mfabian@redhat.com> - 1.9.0-1
b8f02b
- update to 1.9.0
b8f02b
- Redesign the property menus, use sub-menus instead of toggles
b8f02b
b8f02b
* Sun Sep 14 2014 Mike FABIAN <mfabian@redhat.com> - 1.8.11-1
b8f02b
- update to 1.8.11
b8f02b
- fixes a Python backtrace when the dconf key
b8f02b
  /desktop/ibus/engine/table/wubi-jidian86/onechar was not set
b8f02b
* Thu Sep 04 2014 Mike FABIAN <mfabian@redhat.com> - 1.8.10-1
b8f02b
- update to 1.8.10
b8f02b
- Disable auto_commit option for tables which do not have RULES
b8f02b
- Resolves: rhbz#1135759
b8f02b
- Disable hotkey to switch Chinese mode if database is not Chinese
b8f02b
- Disable “onechar” (Phrase mode/Single char mode) option for non-CJK databases
b8f02b
b8f02b
* Tue Aug 26 2014 Mike FABIAN <mfabian@redhat.com> - 1.8.9-1
b8f02b
- update to 1.8.9
b8f02b
- Move some options into a new tab “Details”
b8f02b
- Ignore Shift+Space hotkey to switch fullwidth/halfwidth if the database is not for CJK
b8f02b
- Resolves: rhbz#1133422
b8f02b
- Pass IBus.KEY_KP_Enter to the application if the preedit is empty
b8f02b
- Resolves: rhbz#1133424
b8f02b
b8f02b
* Thu Aug 14 2014 Mike FABIAN <mfabian@redhat.com> - 1.8.8-1
b8f02b
- update to 1.8.8
b8f02b
- Show keyboard shortcuts also in the property menu entries
b8f02b
- Remove “Hide Candidates/Display Candidates” from the properties menu
b8f02b
- If the database is not CJK, set sensitivity to comboboxes
b8f02b
  useful only for CJK to OFF
b8f02b
- Disable properties related to fullwidth/halfwidth for non-CJK tables
b8f02b
- Resolves: rhbz#1128912 - With the new "rusle" table in
b8f02b
  ibus-table-cyrillic, typing space works strangely
b8f02b
b8f02b
* Mon Aug 11 2014 Mike FABIAN <mfabian@redhat.com> - 1.8.7-1
b8f02b
- update to 1.8.7
b8f02b
- Use the “notify::text” signal instead of “activate” on GtkEntry widget.
b8f02b
  This is to make changes in the text entry widgets in the setup tool apply
b8f02b
  immediately.
b8f02b
- Move the “Restore all defaults” button into the GtkButtonBox at the bottom
b8f02b
- Update Unihan_Variants.txt from “2013-02-25 Unicode 6.3.0” to “2014-05-09 Unicode 7.0.0”
b8f02b
b8f02b
* Tue Jul 29 2014 Mike FABIAN <mfabian@redhat.com> - 1.8.6-1
b8f02b
- update to 1.8.6
b8f02b
- Escape % and _ if they are not intended as wildcards
b8f02b
- Resolves: rhbz#1123981
b8f02b
b8f02b
* Mon Jul 21 2014 Mike FABIAN <mfabian@redhat.com> - 1.8.5-1
b8f02b
- update to 1.8.5
b8f02b
- Always write xml output in UTF-8 encoding, not in the encoding
b8f02b
  of the current locale
b8f02b
- Resolves: rhbz#1120919
b8f02b
b8f02b
* Mon Jul 07 2014 Mike FABIAN <mfabian@redhat.com> - 1.8.4-1
b8f02b
- update to 1.8.4
b8f02b
- Tweak defaults for Chinese mode taken from the locale
b8f02b
- Fix prompts for array30 table and don’t use prompts in pinyin mode
b8f02b
- Make it possible to use select keys like F1, F2, F3 ...
b8f02b
- For cangjie* and quick* tables: Use big5 order if the
b8f02b
  freq from the table is the same
b8f02b
b8f02b
* Wed Jun 25 2014 Mike FABIAN <mfabian@redhat.com> - 1.8.3-1
b8f02b
- update to 1.8.3
b8f02b
- Insert a special candidate for the wildcard character itself
b8f02b
  if only a wildcard character has been typed
b8f02b
- Make wildchard characters configurable
b8f02b
- Resolves: rhbz#1110325 - Unable to input question marks in Wubi-jidian
b8f02b
b8f02b
* Mon Jun 09 2014 Mike FABIAN <mfabian@redhat.com> - 1.8.2-1
b8f02b
- update to 1.8.2
b8f02b
- Better sorting of the lookup table in the mixed Chinese modes
b8f02b
- Do not create useless indexes
b8f02b
- Resolves: rhbz#1105465
b8f02b
b8f02b
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.1-2
b8f02b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
b8f02b
b8f02b
* Wed Jun 04 2014 Mike FABIAN <mfabian@redhat.com> - 1.8.1-1
b8f02b
- update to 1.8.1
b8f02b
- Added support for wildcards (both in table and in pinyin mode)
b8f02b
- Don’t show the prompt characters defined in the table in
b8f02b
  pinyin mode in the auxiliary text
b8f02b
b8f02b
* Tue Jun 03 2014 Mike FABIAN <mfabian@redhat.com> - 1.8.0-1
b8f02b
- update to 1.8.0
b8f02b
- adapt tools/ibus-table-query tothe new database format
b8f02b
b8f02b
* Wed May 28 2014 Mike FABIAN <mfabian@redhat.com> - 1.5.0.20140528-1
b8f02b
- update to 1.5.0.20140528
b8f02b
- Use Unicode code point as a last ditch sort key for the candidates
b8f02b
- Fix bug in Unihan_Variants.txt, 同 is both simplified *and* traditional Chinese
b8f02b
- Update Unihan_Variants.txt from “2011-08-08 Unicode 6.1.0” to “2013-02-25 Unicode 6.3.0” and regenerate engine/chinese_variants.py
b8f02b
b8f02b
* Tue May 27 2014 Mike FABIAN <mfabian@redhat.com> - 1.5.0.20140527-1
b8f02b
- update to 1.5.0.20140527
b8f02b
- Put exact matches always at the top of the candidate list
b8f02b
- Fix typo in the filtering for Chinese mode 3 (All characters with traditional Chinese first)
b8f02b
- Support prompt characters (e.g. for cangjie and stroke5)
b8f02b
b8f02b
* Mon May 19 2014 Mike FABIAN <mfabian@redhat.com> - 1.5.0.20140519-1
b8f02b
- update to 1.5.0.20140519
b8f02b
- rewrite major parts of ibus-table, fix many bugs.
b8f02b
b8f02b
* Wed Apr 16 2014 Mike FABIAN <mfabian@redhat.com> - 1.5.0.20140416-1
b8f02b
- Do not fail when the environment variable HOME is not set
b8f02b
- Resolves: rhbz#1088138
b8f02b
- some code cleanup
b8f02b
b8f02b
* Wed Apr 09 2014 Mike FABIAN <mfabian@redhat.com> - 1.5.0.20140409-1
b8f02b
- Make toggling pinyin mode with the right shift key work
b8f02b
- Don’t try to colour system phrases and user phrases differently in pinyin mode
b8f02b
- Resolves: rhbz#1084684
b8f02b
- Don’t switch off pinyin mode in clear()
b8f02b
- Make usage of engine name and dconf key consistent
b8f02b
b8f02b
* Wed Apr 02 2014 Mike FABIAN <mfabian@redhat.com> - 1.5.0.20140402-1
b8f02b
- Fix a regression caused by the Python3 port in tabcreatedb.py (This fixes the build of ibus-table-chinese)
b8f02b
b8f02b
* Wed Mar 12 2014 Mike FABIAN <mfabian@redhat.com> - 1.5.0.20140312-2
b8f02b
- fix yet another regression introduced by the Python3 port (problem occured when filtering Chinese characters, see rhbz#1072940 comment#18)
b8f02b
- Resolves: rhbz#1072940
b8f02b
b8f02b
* Wed Mar 12 2014 Mike FABIAN <mfabian@redhat.com> - 1.5.0.20140312-1
b8f02b
- update to latest upstream
b8f02b
- fix another regression introduced by the Python3 port (a spelling mistake in a variable name)
b8f02b
- Resolves: rhbz#1072940
b8f02b
b8f02b
* Tue Mar 11 2014 Mike FABIAN <mfabian@redhat.com> - 1.5.0.20140311-1
b8f02b
- update to latest upstream
b8f02b
- fix a regression introduced by the Python3 port
b8f02b
- add a .desktop file and make the setup tool work with Gnome
b8f02b
- make it possible to interrupt the setup tool with Control-C from the command line
b8f02b
b8f02b
* Thu Mar 06 2014 Mike FABIAN <mfabian@redhat.com> - 1.5.0.20140306-1
b8f02b
- update to latest upstream
b8f02b
- Resolves: rhbz#1072940 - Left Shift stopped work for ibus-table-1.5.0.20140218-1.fc20.noarch
b8f02b
- port from Python2 to Python3, require Python3 in this rpm now
b8f02b
- fix directory for setup tool, setup tool should work now
b8f02b
- add profiling support
b8f02b
b8f02b
* Tue Feb 18 2014 Mike FABIAN <mfabian@redhat.com> - 1.5.0.20140218-1
b8f02b
- update to latest upstream
b8f02b
- Resolves: rhbz#1061345 - ibus-table shows entered text in password fields
b8f02b
- remove patches which are included upstream
b8f02b
- remove old, unused patches
b8f02b
b8f02b
* Fri Jan 24 2014 Mike FABIAN <mfabian@redhat.com> - 1.5.0.20130419-3
b8f02b
- Resolves: rhbz#1051365 - suggestion: move ibus-table-createdb to a subpackage
b8f02b
- When tabcreatedb.py is called without any options, print a usage message. Do not just show a cryptic backtrace.
b8f02b
b8f02b
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.0.20130419-2
b8f02b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
b8f02b
b8f02b
* Fri Apr 19 2013 Mike FABIAN <mfabian@redhat.com> - 1.5.0.20130419-1
b8f02b
- update to latest upstream
b8f02b
- remove patches which are included upstream
b8f02b
- Resolves: #948454 - Man page scan results for ibus-table
b8f02b
b8f02b
* Thu Feb 14 2013 Mike FABIAN <mfabian@redhat.com> - 1.5.0-2
b8f02b
- Resolves: #911487 - Non-Chinese tables from the ibus-table-other package do not work
b8f02b
- Add auto_select functionality to select the first phrase when typing.
b8f02b
  Useful for Cyrillic transliteration
b8f02b
- Update cmode property in chinese mode only
b8f02b
- Fall back to auto_select = False if neither dconf nor the table
b8f02b
  have a value for auto_select
b8f02b
- Preedit needs to be updated on page-up and page-down
b8f02b
b8f02b
* Mon Jan 28 2013 Mike FABIAN <mfabian@redhat.com> - 1.5.0-1
b8f02b
- update to latest upstream 1.5.0  from Caius ‘kaio’ Chance’s repository
b8f02b
- add patches for better simplified/traditional Chinese detection
b8f02b
- Resolves: #857967 - simplified/traditional Chinese detection in ibus-table does not work well
b8f02b
b8f02b
* Thu Jan 10 2013 Mike FABIAN <mfabian@redhat.com> - 1.4.99.20130110-1
b8f02b
- Resolves: #513901 ibus-table setup does not store config settings
b8f02b
- update to latest upstream 1.4.99.20130110 from Caius ‘kaio’ Chance’s repository, 1.5.0 branch
b8f02b
- When detecting the Chinese mode from the environment, also check LC_ALL
b8f02b
- Fix typo in self._chinese_mode variable (The typo broke the SC/TC property)
b8f02b
- Make cursor in lookup table always visible (became invisible after the port to GObjectIntrospection)
b8f02b
- apply changes in values of dconf keys immediately
b8f02b
b8f02b
* Tue Jan 08 2013 Mike FABIAN <mfabian@redhat.com> - 1.4.99.20130108-1
b8f02b
- update to latest upstream 1.4.99.20130108 from Caius ‘kaio’ Chance’s repository, 1.5.0 branch
b8f02b
- includes port to GObjectIntrospection now
b8f02b
b8f02b
* Thu Jan 03 2013 Mike FABIAN <mfabian@redhat.com> - 1.4.99.20130103-1
b8f02b
- update to latest upstream 1.4.99.20130103 from Caius ‘kaio’ Chance’s repository, 1.5.0 branch
b8f02b
b8f02b
* Tue Nov 13 2012 Mike FABIAN <mfabian@redhat.com> - 1.4.99.20121113-1
b8f02b
- update to latest upstream 1.4.99.20121113 from Caius ‘kaio’ Chance’s repository, using rel20121101 git tag
b8f02b
- remove ibus-table-1.4.99.20120907-improve-chinese-category-check.patch (included upstream)
b8f02b
- remove fix-ipa-x-sampa-table-and-phrases-containing-spaces.patch (included upstream)
b8f02b
- Fix marking of translatable strings for gettext
b8f02b
- update zh_??.po files
b8f02b
- Add German translation
b8f02b
- Do not fail if the ~/.ibus/byo-tables/ directory does not exist
b8f02b
b8f02b
* Thu Sep 13 2012 Mike FABIAN <mfabian@redhat.com> - 1.4.99.20120907-3
b8f02b
- Resolves: #856903
b8f02b
- Fix ipa-x-sampa table and phrases containing spaces in emoji-table
b8f02b
  Currently there is a regular expression which filters out several
b8f02b
  lines defining valid phrases. The emoji-table for example has phrases
b8f02b
  containing spaces which are currently filtered out and the ipa-x-sampa
b8f02b
  table has trailing comments which are filtered out as well.
b8f02b
b8f02b
* Tue Sep 11 2012 Mike FABIAN <mfabian@redhat.com> - 1.4.99.20120907-2
b8f02b
- Resolves: #856320
b8f02b
- Improve check whether a phrase is simplified or traditional Chinese
b8f02b
  The improvement is to ignore all non-Han characters when
b8f02b
  doing the check.
b8f02b
  This is to avoid classifying a simplified Chinese string as
b8f02b
  traditional just because it happens to include some non-Chinese
b8f02b
  characters, for example box drawing characters, which cannot be
b8f02b
  converted to gb2312 but happen to be convertible to big5hkscs.
b8f02b
  This fixes the problem in the emoji-table input method that most
b8f02b
  phrases cannot be input at all.
b8f02b
b8f02b
* Fri Sep 07 2012 Mike FABIAN <mfabian@redhat.com> - 1.4.99.20120907-1
b8f02b
- Relates: #855250
b8f02b
- see comment#1 in #855250
b8f02b
- update to latest upstream 1.4.99.20120907 from Caius 'kaio' Chance's repository
b8f02b
- remove ibus-table-1.3.9.20110827-add-some-keys-for-translit.patch (included upstream)
b8f02b
- remove ibus-table-1.3.9.20110827-enable-non-ascii.patch (included upstream)
b8f02b
b8f02b
* Wed Sep 05 2012 Mike FABIAN <mfabian@redhat.com> - 1.3.9.20110827-4
b8f02b
- Resolves: #845798
b8f02b
- add ibus-table-1.3.9.20110827-add-some-keys-for-translit.patch (from Yuwei YU, upstream)
b8f02b
- add ibus-table-1.3.9.20110827-enable-non-ascii.patch  (from Yuwei YU, upstream)
b8f02b
- add ibus-table-1.3.9.20110827-uppercase-umlauts.patch to allow uppercase as well in translit
b8f02b
b8f02b
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.9.20110827-3
b8f02b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
b8f02b
b8f02b
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.9.20110827-2
b8f02b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
b8f02b
b8f02b
* Wed Aug 31 2011 Caius 'kaio' Chance - 1.3.9.20110827-1
b8f02b
- Updated to upstream. 
b8f02b
b8f02b
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.0.20100621-5
b8f02b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
b8f02b
b8f02b
* Fri Nov 19 2010 Ding-Yi Chen <dchen@redhat.com> - 1.3.0.20100621-4
b8f02b
- Rebuild for ibus-1.4
b8f02b
b8f02b
* Wed Sep  1 2010 Jens Petersen <petersen@redhat.com> - 1.3.0.20100621-3
b8f02b
- remove the redundant post and postun scripts (#625330)
b8f02b
b8f02b
* Wed Aug 11 2010 David Malcolm <dmalcolm@redhat.com> - 1.3.0.20100621-2
b8f02b
- recompiling .py files against Python 2.7 (rhbz#623320)
b8f02b
b8f02b
* Mon Jun 21 2010 Caius Chance <cchance@redhat.com> - 1.2.0.20100621-1
b8f02b
- Updated from upstream which tarball was rebuilt with IBus 1.3.
b8f02b
b8f02b
* Wed Mar 10 2010 Caius 'kaio' Chance <cchance at redhat.com> - 1.2.0.20100111-7
b8f02b
- Add template.txt in files.
b8f02b
b8f02b
* Wed Mar 10 2010 Caius 'kaio' Chance <cchance at redhat.com> - 1.2.0.20100111-6
b8f02b
- Disable -additional.
b8f02b
b8f02b
* Wed Mar 10 2010 Caius 'kaio' Chance <cchance at redhat.com> - 1.2.0.20100111-5
b8f02b
- Remove -additional for obsoletion by ibus-table-latin and ibus-table-code.
b8f02b
b8f02b
* Mon Feb 15 2010 Caius 'kaio' Chance <cchance at redhat.com> - 1.2.0.20100111-4.fc13
b8f02b
- Fixed latex.svg location.
b8f02b
b8f02b
* Fri Jan 29 2010 Caius 'kaio' Chance <k at kaio.me> - 1.2.0.20100111-3.fc13
b8f02b
- Split .pc to -devel subpackage.
b8f02b
b8f02b
* Thu Jan 14 2010 Caius 'kaio' Chance <k at kaio.me> - 1.2.0.20100111-2.fc13
b8f02b
- Temporary keep files of additional available in ibus-table until 
b8f02b
  ibus-table-{code,latin} packages are ready in repository.
b8f02b
b8f02b
* Mon Jan 11 2010 Caius 'kaio' Chance <k at kaio.me> - 1.2.0.20100111-1.fc13
b8f02b
- Updated source from upstream.
b8f02b
- Migreate tables from ibus-table-additional to ibus-table-latin and ibus-table-code.
b8f02b
b8f02b
* Wed Jan 06 2010 Caius 'kaio' Chance <k at kaio.me> - 1.2.0.20090912-3.fc13
b8f02b
- Apply parsing equal sign patch.
b8f02b
b8f02b
* Wed Nov 11 2009 Caius 'kaio' Chance <k at kaio.me> - 1.2.0.20090912-2.fc13
b8f02b
- Fix crashing caused by speedmeter.
b8f02b
b8f02b
* Fri Sep 04 2009 Caius 'kaio' Chance <k at kaio.me> - 1.2.0.20090912-1.fc12
b8f02b
- Upgraded to upstream source.
b8f02b
b8f02b
* Fri Sep 04 2009 Caius 'kaio' Chance <k at kaio.me> - 1.2.0.20090904-1.fc12
b8f02b
- Updated source with additional tables separated.
b8f02b
b8f02b
* Thu Sep 03 2009 Caius 'kaio' Chance <k at kaio.me> - 1.2.0.20090902-2.fc12
b8f02b
- Rebuilt.
b8f02b
b8f02b
* Wed Sep 02 2009 Caius 'kaio' Chance <k at kaio.me> - 1.2.0.20090902-1.fc12
b8f02b
- Updated source.
b8f02b
b8f02b
* Tue Aug 04 2009 Caius 'kaio' Chance <k at kaio.me> - 1.2.0.20090804-1.fc12
b8f02b
- Cleaned up unused dcommit contents.
b8f02b
b8f02b
* Mon Aug 03 2009 Caius 'kaio' Chance <k at kaio.me> - 1.2.0.20090803-1.fc12
b8f02b
- Updated to upstream.
b8f02b
b8f02b
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.0.20090625-3
b8f02b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
b8f02b
b8f02b
* Wed Jul 01 2009 Caius 'kaio' Chance <k at kaio.me> - 1.2.0.20090625-2.fc12
b8f02b
- Rebuilt.
b8f02b
b8f02b
* Wed Jul 01 2009 Caius 'kaio' Chance <k at kaio.me> - 1.2.0.20090625-1.fc12
b8f02b
- Updated source from upstream, which released for IBus 1.2 and so on.
b8f02b
b8f02b
* Wed May 27 2009 Caius 'kaio' Chance <cchance@redhat.com> - 1.1.0.20090527-1.fc12
b8f02b
- Updated source from upstream, which with candidate order fix.
b8f02b
b8f02b
* Mon Mar 16 2009 Caius Chance <cchance@redhat.com> - 1.1.0.20090316-1.fc11
b8f02b
- Resolves: rhbz#490396
b8f02b
- Updated source tarball.
b8f02b
- Disabled speedmeter until config option is implemented.
b8f02b
b8f02b
* Fri Mar  6 2009 Jens Petersen <petersen@redhat.com> - 1.1.0.20090220-5
b8f02b
- make pkgconfig noarch with ibus-table-pkgconfig-noarch.patch
b8f02b
- fix license field: actually LGPL
b8f02b
- drop gettext-devel BR
b8f02b
- require ibus > 1.1.0
b8f02b
b8f02b
* Mon Mar 02 2009 Caius Chance <cchance@redhat.com> - 1.1.0.20090220-4.fc11
b8f02b
- Rebuilt.
b8f02b
b8f02b
* Mon Mar 02 2009 Caius Chance <cchance@redhat.com> - 1.1.0.20090220-3.fc11
b8f02b
- Rebuilt.
b8f02b
b8f02b
* Mon Mar 02 2009 Caius Chance <cchance@redhat.com> - 1.1.0.20090220-2.fc11
b8f02b
- Rebuilt.
b8f02b
b8f02b
* Mon Mar 02 2009 Caius Chance <cchance@redhat.com> - 1.1.0.20090220-1.fc11
b8f02b
- Resolves: rhbz#484650
b8f02b
- Updated to latest upstream release.
b8f02b
- Splitted chinese input methods into modules.
b8f02b
b8f02b
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.1.20081014-5
b8f02b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
b8f02b
b8f02b
* Wed Feb 04 2009 Caius Chance <cchance@redhat.com> - 0.1.1.20081014-4
b8f02b
- Resolves: rhbz#466430 rhbz#466844
b8f02b
- Added wildcard features.
b8f02b
- Added preedit clearance on refocus.
b8f02b
b8f02b
* Mon Dec 01 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.1.1.20081014-3
b8f02b
- Rebuild for Python 2.6
b8f02b
b8f02b
* Mon Dec 1 2008 Peng Huang <shawn.p.huang@gmail.com> - 0.1.1.20081014-2
b8f02b
- Modified spec file to own all directories created by ibus-table.
b8f02b
b8f02b
* Tue Oct 14 2008 Peng Huang <shawn.p.huang@gmail.com> - 0.1.1.20081014-1
b8f02b
- Update to 0.1.1.20081014.
b8f02b
b8f02b
* Mon Sep 01 2008 Peng Huang <shawn.p.huang@gmail.com> - 0.1.1.20080901-1
b8f02b
- Update to 0.1.1.20080901.
b8f02b
b8f02b
* Tue Aug 19 2008 Yu Yuwei <acevery@gmail.com> - 0.1.1.20080829-1
b8f02b
- The first version.