Fix bug 520989 - ibus-anthy icon enhancement Fix bug 531696 - ibus-anthy
KeyError is still reported by abrt Fix bug 536716 - ibus-anthy: Symbol type change support in ibus-anthy
This commit is contained in:
parent
812241ff9c
commit
25da6b0598
@ -1 +1,2 @@
|
|||||||
ibus-anthy-1.2.0.20090917.tar.gz
|
ibus-anthy-1.2.0.20091127.tar.gz
|
||||||
|
ibus-anthy.png
|
||||||
|
@ -1,39 +1 @@
|
|||||||
diff --git a/engine/engine.py b/engine/engine.py
|
|
||||||
index 7069b0a..4b93d35 100644
|
|
||||||
--- a/engine/engine.py
|
|
||||||
+++ b/engine/engine.py
|
|
||||||
@@ -952,10 +952,10 @@ class Engine(ibus.EngineBase):
|
|
||||||
@classmethod
|
|
||||||
def CONFIG_VALUE_CHANGED(cls, bus, section, name, value):
|
|
||||||
print 'VALUE_CHAMGED =', section, name, value
|
|
||||||
- section = section[len(cls.__prefs._prefix) + 1:]
|
|
||||||
- if section == cls._get_shortcut_type():
|
|
||||||
+ base_sec = section[len(cls.__prefs._prefix) + 1:]
|
|
||||||
+ sec = cls._get_shortcut_type()
|
|
||||||
+ if base_sec == sec:
|
|
||||||
cmd = '_Engine__cmd_' + name
|
|
||||||
- sec = cls._get_shortcut_type()
|
|
||||||
old = cls.__prefs.get_value(sec, name)
|
|
||||||
value = value if value != [''] else []
|
|
||||||
for s in set(old).difference(value):
|
|
||||||
@@ -968,12 +968,17 @@ class Engine(ibus.EngineBase):
|
|
||||||
lambda a, b: cmp(keys.index(a[13:]), keys.index(b[13:])))
|
|
||||||
|
|
||||||
cls.__prefs.set_value(sec, name, value)
|
|
||||||
- elif section == 'common':
|
|
||||||
- cls.__prefs.set_value(section, name, value)
|
|
||||||
+ elif base_sec == 'common':
|
|
||||||
+ cls.__prefs.set_value(base_sec, name, value)
|
|
||||||
if name == 'shortcut_type':
|
|
||||||
cls.__keybind = cls._mk_keybind()
|
|
||||||
+ elif section == 'panel':
|
|
||||||
+ # This value is used for ibus.config.set_value only.
|
|
||||||
+ pass
|
|
||||||
+ elif base_sec:
|
|
||||||
+ cls.__prefs.set_value(base_sec, name, value)
|
|
||||||
else:
|
|
||||||
- cls.__prefs.set_value(sec, name, value)
|
|
||||||
+ cls.__prefs.set_value(section, name, value)
|
|
||||||
|
|
||||||
@classmethod
|
|
||||||
def _mk_keybind(cls):
|
|
||||||
|
@ -1,14 +1,15 @@
|
|||||||
%{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
|
%{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
|
||||||
%define require_ibus_version 1.2.0.20090904
|
%define require_ibus_version 1.2.0.20090904
|
||||||
Name: ibus-anthy
|
Name: ibus-anthy
|
||||||
Version: 1.2.0.20090917
|
Version: 1.2.0.20091127
|
||||||
Release: 2%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: The Anthy engine for IBus input platform
|
Summary: The Anthy engine for IBus input platform
|
||||||
License: GPLv2+
|
License: GPLv2+
|
||||||
Group: System Environment/Libraries
|
Group: System Environment/Libraries
|
||||||
URL: http://code.google.com/p/ibus/
|
URL: http://code.google.com/p/ibus/
|
||||||
Source0: http://ibus.googlecode.com/files/%{name}-%{version}.tar.gz
|
Source0: http://ibus.googlecode.com/files/%{name}-%{version}.tar.gz
|
||||||
Patch0: ibus-anthy-HEAD.patch
|
Source1: ibus-anthy.png
|
||||||
|
# Patch0: ibus-anthy-HEAD.patch
|
||||||
|
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
|
|
||||||
@ -30,7 +31,8 @@ libanthy.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
%patch0 -p1
|
cp %SOURCE1 icons
|
||||||
|
# %patch0 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure --disable-static
|
%configure --disable-static
|
||||||
@ -58,6 +60,11 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_datadir}/ibus/component/*
|
%{_datadir}/ibus/component/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Nov 27 2009 Takao Fujiwara <takao.fujiwara1@gmail.com> - 1.2.0.20091127-1
|
||||||
|
- Fix bug 520989 - ibus-anthy icon enhancement
|
||||||
|
- Fix bug 531696 - ibus-anthy KeyError is still reported by abrt
|
||||||
|
- Fix bug 536716 - ibus-anthy: Symbol type change support in ibus-anthy
|
||||||
|
|
||||||
* Fri Oct 23 2009 Takao Fujiwara <takao.fujiwara1@gmail.com> - 1.2.0.20090917-2
|
* Fri Oct 23 2009 Takao Fujiwara <takao.fujiwara1@gmail.com> - 1.2.0.20090917-2
|
||||||
- Fix bug 526881 - ibus-anthy backtrace is reported by the latest abrt
|
- Fix bug 526881 - ibus-anthy backtrace is reported by the latest abrt
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user