Merge lp:~arnegoetje/ubuntu/maverick/ibus/merge-from-sid into lp:ubuntu/maverick/ibus

Proposed by Arne Goetje
Status: Merged
Merge reported by: Sebastien Bacher
Merged at revision: not available
Proposed branch: lp:~arnegoetje/ubuntu/maverick/ibus/merge-from-sid
Merge into: lp:ubuntu/maverick/ibus
Diff against target: 199228 lines
To merge this branch: bzr merge lp:~arnegoetje/ubuntu/maverick/ibus/merge-from-sid
Reviewer Review Type Date Requested Status
Ubuntu branches Pending
Review via email: mp+31945@code.launchpad.net

Description of the change

Merge from Debian unstable.

PLEASE REVIEW BEFORE ACCEPT, especially the patches 05_appindicator.dpatch and 06_show_menuitem.dpatch!
I have merely adjusted the line numbers, so that the patches apply. However, I have no idea if the patch lines actually all make sense.

The package builds on my local system, but it should be tested if the functionality is like expected.

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== added directory '.pc'
=== added file '.pc/.version'
--- .pc/.version 1970-01-01 00:00:00 +0000
+++ .pc/.version 2010-08-06 11:53:43 +0000
@@ -0,0 +1,1 @@
12
02
=== added directory '.pc/01_ubuntu_desktop'
=== added directory '.pc/01_ubuntu_desktop/bus'
=== added file '.pc/01_ubuntu_desktop/bus/ibus.desktop.in'
--- .pc/01_ubuntu_desktop/bus/ibus.desktop.in 1970-01-01 00:00:00 +0000
+++ .pc/01_ubuntu_desktop/bus/ibus.desktop.in 2010-08-06 11:53:43 +0000
@@ -0,0 +1,14 @@
1[Desktop Entry]
2Encoding=UTF-8
3_Name=IBus
4_GenericName=Input Method Framework
5_Comment=Start IBus Input Method Framework
6Exec=ibus-daemon --xim
7Icon=ibus
8Terminal=false
9Type=Application
10Categories=System;Utility;
11X-GNOME-Autostart-Phase=Applications
12X-GNOME-AutoRestart=false
13X-GNOME-Autostart-Notify=true
14X-KDE-autostart-after=panel
015
=== added directory '.pc/01_ubuntu_desktop/setup'
=== added file '.pc/01_ubuntu_desktop/setup/ibus-setup.desktop.in'
--- .pc/01_ubuntu_desktop/setup/ibus-setup.desktop.in 1970-01-01 00:00:00 +0000
+++ .pc/01_ubuntu_desktop/setup/ibus-setup.desktop.in 2010-08-06 11:53:43 +0000
@@ -0,0 +1,10 @@
1[Desktop Entry]
2Encoding=UTF-8
3_Name=IBus Preferences
4_Comment=Set IBus Preferences
5Exec=ibus-setup
6Icon=ibus-setup
7Terminal=false
8Type=Application
9StartupNotify=true
10Categories=Settings;
011
=== added file '.pc/applied-patches'
--- .pc/applied-patches 1970-01-01 00:00:00 +0000
+++ .pc/applied-patches 2010-08-06 11:53:43 +0000
@@ -0,0 +1,1 @@
101_ubuntu_desktop
02
=== removed file 'ABOUT-NLS'
--- ABOUT-NLS 2008-11-30 10:41:05 +0000
+++ ABOUT-NLS 1970-01-01 00:00:00 +0000
@@ -1,1101 +0,0 @@
11 Notes on the Free Translation Project
2***************************************
3
4Free software is going international! The Free Translation Project is
5a way to get maintainers of free software, translators, and users all
6together, so that free software will gradually become able to speak many
7languages. A few packages already provide translations for their
8messages.
9
10 If you found this `ABOUT-NLS' file inside a distribution, you may
11assume that the distributed package does use GNU `gettext' internally,
12itself available at your nearest GNU archive site. But you do _not_
13need to install GNU `gettext' prior to configuring, installing or using
14this package with messages translated.
15
16 Installers will find here some useful hints. These notes also
17explain how users should proceed for getting the programs to use the
18available translations. They tell how people wanting to contribute and
19work on translations can contact the appropriate team.
20
21 When reporting bugs in the `intl/' directory or bugs which may be
22related to internationalization, you should tell about the version of
23`gettext' which is used. The information can be found in the
24`intl/VERSION' file, in internationalized packages.
25
261.1 Quick configuration advice
27==============================
28
29If you want to exploit the full power of internationalization, you
30should configure it using
31
32 ./configure --with-included-gettext
33
34to force usage of internationalizing routines provided within this
35package, despite the existence of internationalizing capabilities in the
36operating system where this package is being installed. So far, only
37the `gettext' implementation in the GNU C library version 2 provides as
38many features (such as locale alias, message inheritance, automatic
39charset conversion or plural form handling) as the implementation here.
40It is also not possible to offer this additional functionality on top
41of a `catgets' implementation. Future versions of GNU `gettext' will
42very likely convey even more functionality. So it might be a good idea
43to change to GNU `gettext' as soon as possible.
44
45 So you need _not_ provide this option if you are using GNU libc 2 or
46you have installed a recent copy of the GNU gettext package with the
47included `libintl'.
48
491.2 INSTALL Matters
50===================
51
52Some packages are "localizable" when properly installed; the programs
53they contain can be made to speak your own native language. Most such
54packages use GNU `gettext'. Other packages have their own ways to
55internationalization, predating GNU `gettext'.
56
57 By default, this package will be installed to allow translation of
58messages. It will automatically detect whether the system already
59provides the GNU `gettext' functions. If not, the included GNU
60`gettext' library will be used. This library is wholly contained
61within this package, usually in the `intl/' subdirectory, so prior
62installation of the GNU `gettext' package is _not_ required.
63Installers may use special options at configuration time for changing
64the default behaviour. The commands:
65
66 ./configure --with-included-gettext
67 ./configure --disable-nls
68
69will, respectively, bypass any pre-existing `gettext' to use the
70internationalizing routines provided within this package, or else,
71_totally_ disable translation of messages.
72
73 When you already have GNU `gettext' installed on your system and run
74configure without an option for your new package, `configure' will
75probably detect the previously built and installed `libintl.a' file and
76will decide to use this. This might not be desirable. You should use
77the more recent version of the GNU `gettext' library. I.e. if the file
78`intl/VERSION' shows that the library which comes with this package is
79more recent, you should use
80
81 ./configure --with-included-gettext
82
83to prevent auto-detection.
84
85 The configuration process will not test for the `catgets' function
86and therefore it will not be used. The reason is that even an
87emulation of `gettext' on top of `catgets' could not provide all the
88extensions of the GNU `gettext' library.
89
90 Internationalized packages usually have many `po/LL.po' files, where
91LL gives an ISO 639 two-letter code identifying the language. Unless
92translations have been forbidden at `configure' time by using the
93`--disable-nls' switch, all available translations are installed
94together with the package. However, the environment variable `LINGUAS'
95may be set, prior to configuration, to limit the installed set.
96`LINGUAS' should then contain a space separated list of two-letter
97codes, stating which languages are allowed.
98
991.3 Using This Package
100======================
101
102As a user, if your language has been installed for this package, you
103only have to set the `LANG' environment variable to the appropriate
104`LL_CC' combination. Here `LL' is an ISO 639 two-letter language code,
105and `CC' is an ISO 3166 two-letter country code. For example, let's
106suppose that you speak German and live in Germany. At the shell
107prompt, merely execute `setenv LANG de_DE' (in `csh'),
108`export LANG; LANG=de_DE' (in `sh') or `export LANG=de_DE' (in `bash').
109This can be done from your `.login' or `.profile' file, once and for
110all.
111
112 You might think that the country code specification is redundant.
113But in fact, some languages have dialects in different countries. For
114example, `de_AT' is used for Austria, and `pt_BR' for Brazil. The
115country code serves to distinguish the dialects.
116
117 The locale naming convention of `LL_CC', with `LL' denoting the
118language and `CC' denoting the country, is the one use on systems based
119on GNU libc. On other systems, some variations of this scheme are
120used, such as `LL' or `LL_CC.ENCODING'. You can get the list of
121locales supported by your system for your language by running the
122command `locale -a | grep '^LL''.
123
124 Not all programs have translations for all languages. By default, an
125English message is shown in place of a nonexistent translation. If you
126understand other languages, you can set up a priority list of languages.
127This is done through a different environment variable, called
128`LANGUAGE'. GNU `gettext' gives preference to `LANGUAGE' over `LANG'
129for the purpose of message handling, but you still need to have `LANG'
130set to the primary language; this is required by other parts of the
131system libraries. For example, some Swedish users who would rather
132read translations in German than English for when Swedish is not
133available, set `LANGUAGE' to `sv:de' while leaving `LANG' to `sv_SE'.
134
135 Special advice for Norwegian users: The language code for Norwegian
136bokma*l changed from `no' to `nb' recently (in 2003). During the
137transition period, while some message catalogs for this language are
138installed under `nb' and some older ones under `no', it's recommended
139for Norwegian users to set `LANGUAGE' to `nb:no' so that both newer and
140older translations are used.
141
142 In the `LANGUAGE' environment variable, but not in the `LANG'
143environment variable, `LL_CC' combinations can be abbreviated as `LL'
144to denote the language's main dialect. For example, `de' is equivalent
145to `de_DE' (German as spoken in Germany), and `pt' to `pt_PT'
146(Portuguese as spoken in Portugal) in this context.
147
1481.4 Translating Teams
149=====================
150
151For the Free Translation Project to be a success, we need interested
152people who like their own language and write it well, and who are also
153able to synergize with other translators speaking the same language.
154Each translation team has its own mailing list. The up-to-date list of
155teams can be found at the Free Translation Project's homepage,
156`http://www.iro.umontreal.ca/contrib/po/HTML/', in the "National teams"
157area.
158
159 If you'd like to volunteer to _work_ at translating messages, you
160should become a member of the translating team for your own language.
161The subscribing address is _not_ the same as the list itself, it has
162`-request' appended. For example, speakers of Swedish can send a
163message to `sv-request@li.org', having this message body:
164
165 subscribe
166
167 Keep in mind that team members are expected to participate
168_actively_ in translations, or at solving translational difficulties,
169rather than merely lurking around. If your team does not exist yet and
170you want to start one, or if you are unsure about what to do or how to
171get started, please write to `translation@iro.umontreal.ca' to reach the
172coordinator for all translator teams.
173
174 The English team is special. It works at improving and uniformizing
175the terminology in use. Proven linguistic skills are praised more than
176programming skills, here.
177
1781.5 Available Packages
179======================
180
181Languages are not equally supported in all packages. The following
182matrix shows the current state of internationalization, as of October
1832006. The matrix shows, in regard of each package, for which languages
184PO files have been submitted to translation coordination, with a
185translation percentage of at least 50%.
186
187 Ready PO files af am ar az be bg bs ca cs cy da de el en en_GB eo
188 +----------------------------------------------------+
189 GNUnet | [] |
190 a2ps | [] [] [] [] [] |
191 aegis | () |
192 ant-phone | () |
193 anubis | [] |
194 ap-utils | |
195 aspell | [] [] [] [] [] |
196 bash | [] [] [] |
197 batchelor | [] |
198 bfd | |
199 bibshelf | [] |
200 binutils | [] |
201 bison | [] [] |
202 bison-runtime | |
203 bluez-pin | [] [] [] [] [] |
204 cflow | [] |
205 clisp | [] [] |
206 console-tools | [] [] |
207 coreutils | [] [] [] |
208 cpio | |
209 cpplib | [] [] [] |
210 cryptonit | [] |
211 darkstat | [] () [] |
212 dialog | [] [] [] [] [] [] |
213 diffutils | [] [] [] [] [] [] |
214 doodle | [] |
215 e2fsprogs | [] [] |
216 enscript | [] [] [] [] |
217 error | [] [] [] [] |
218 fetchmail | [] [] () [] |
219 fileutils | [] [] |
220 findutils | [] [] [] |
221 flex | [] [] [] |
222 fslint | [] |
223 gas | |
224 gawk | [] [] [] |
225 gbiff | [] |
226 gcal | [] |
227 gcc | [] |
228 gettext-examples | [] [] [] [] [] |
229 gettext-runtime | [] [] [] [] [] |
230 gettext-tools | [] [] |
231 gimp-print | [] [] [] [] |
232 gip | [] |
233 gliv | [] |
234 glunarclock | [] |
235 gmult | [] [] |
236 gnubiff | () |
237 gnucash | () () [] |
238 gnucash-glossary | [] () |
239 gnuedu | |
240 gnulib | [] [] [] [] [] [] |
241 gnunet-gtk | |
242 gnutls | |
243 gpe-aerial | [] [] |
244 gpe-beam | [] [] |
245 gpe-calendar | |
246 gpe-clock | [] [] |
247 gpe-conf | [] [] |
248 gpe-contacts | |
249 gpe-edit | [] |
250 gpe-filemanager | |
251 gpe-go | [] |
252 gpe-login | [] [] |
253 gpe-ownerinfo | [] [] |
254 gpe-package | |
255 gpe-sketchbook | [] [] |
256 gpe-su | [] [] |
257 gpe-taskmanager | [] [] |
258 gpe-timesheet | [] |
259 gpe-today | [] [] |
260 gpe-todo | |
261 gphoto2 | [] [] [] [] |
262 gprof | [] [] |
263 gpsdrive | () () |
264 gramadoir | [] [] |
265 grep | [] [] [] [] [] [] |
266 gretl | |
267 gsasl | |
268 gss | |
269 gst-plugins | [] [] [] [] |
270 gst-plugins-base | [] [] [] |
271 gst-plugins-good | [] [] [] [] [] [] [] |
272 gstreamer | [] [] [] [] [] [] [] |
273 gtick | () |
274 gtkam | [] [] [] |
275 gtkorphan | [] [] |
276 gtkspell | [] [] [] [] |
277 gutenprint | [] |
278 hello | [] [] [] [] [] |
279 id-utils | [] [] |
280 impost | |
281 indent | [] [] [] |
282 iso_3166 | [] [] |
283 iso_3166_2 | |
284 iso_4217 | [] |
285 iso_639 | [] [] |
286 jpilot | [] |
287 jtag | |
288 jwhois | |
289 kbd | [] [] [] [] |
290 keytouch | |
291 keytouch-editor | |
292 keytouch-keyboa... | |
293 latrine | () |
294 ld | [] |
295 leafpad | [] [] [] [] [] |
296 libc | [] [] [] [] [] |
297 libexif | [] |
298 libextractor | [] |
299 libgpewidget | [] [] [] |
300 libgpg-error | [] |
301 libgphoto2 | [] [] |
302 libgphoto2_port | [] [] |
303 libgsasl | |
304 libiconv | [] [] |
305 libidn | [] [] |
306 lifelines | [] () |
307 lilypond | [] |
308 lingoteach | |
309 lynx | [] [] [] [] |
310 m4 | [] [] [] [] |
311 mailutils | [] |
312 make | [] [] |
313 man-db | [] () [] [] |
314 minicom | [] [] [] |
315 mysecretdiary | [] [] |
316 nano | [] [] [] |
317 nano_1_0 | [] () [] [] |
318 opcodes | [] |
319 parted | |
320 pilot-qof | [] |
321 psmisc | [] |
322 pwdutils | |
323 python | |
324 qof | |
325 radius | [] |
326 recode | [] [] [] [] [] [] |
327 rpm | [] [] |
328 screem | |
329 scrollkeeper | [] [] [] [] [] [] [] [] |
330 sed | [] [] [] |
331 sh-utils | [] [] |
332 shared-mime-info | [] [] [] [] |
333 sharutils | [] [] [] [] [] [] |
334 shishi | |
335 silky | |
336 skencil | [] () |
337 sketch | [] () |
338 solfege | |
339 soundtracker | [] [] |
340 sp | [] |
341 stardict | [] |
342 system-tools-ba... | [] [] [] [] [] [] [] [] [] |
343 tar | [] |
344 texinfo | [] [] [] |
345 textutils | [] [] [] |
346 tin | () () |
347 tp-robot | [] |
348 tuxpaint | [] [] [] [] [] |
349 unicode-han-tra... | |
350 unicode-transla... | |
351 util-linux | [] [] [] [] |
352 vorbis-tools | [] [] [] [] |
353 wastesedge | () |
354 wdiff | [] [] [] [] |
355 wget | [] [] |
356 xchat | [] [] [] [] [] [] |
357 xkeyboard-config | |
358 xpad | [] [] |
359 +----------------------------------------------------+
360 af am ar az be bg bs ca cs cy da de el en en_GB eo
361 10 0 1 2 9 22 1 42 41 2 60 95 16 1 17 16
362
363 es et eu fa fi fr ga gl gu he hi hr hu id is it
364 +--------------------------------------------------+
365 GNUnet | |
366 a2ps | [] [] [] () |
367 aegis | |
368 ant-phone | [] |
369 anubis | [] |
370 ap-utils | [] [] |
371 aspell | [] [] [] |
372 bash | [] [] [] |
373 batchelor | [] [] |
374 bfd | [] |
375 bibshelf | [] [] [] |
376 binutils | [] [] [] |
377 bison | [] [] [] [] [] [] |
378 bison-runtime | [] [] [] [] [] |
379 bluez-pin | [] [] [] [] [] |
380 cflow | [] |
381 clisp | [] [] |
382 console-tools | |
383 coreutils | [] [] [] [] [] [] |
384 cpio | [] [] [] |
385 cpplib | [] [] |
386 cryptonit | [] |
387 darkstat | [] () [] [] [] |
388 dialog | [] [] [] [] [] [] [] [] |
389 diffutils | [] [] [] [] [] [] [] [] [] |
390 doodle | [] [] |
391 e2fsprogs | [] [] [] |
392 enscript | [] [] [] |
393 error | [] [] [] [] [] |
394 fetchmail | [] |
395 fileutils | [] [] [] [] [] [] |
396 findutils | [] [] [] [] |
397 flex | [] [] [] |
398 fslint | [] |
399 gas | [] [] |
400 gawk | [] [] [] [] |
401 gbiff | [] |
402 gcal | [] [] |
403 gcc | [] |
404 gettext-examples | [] [] [] [] [] [] |
405 gettext-runtime | [] [] [] [] [] [] |
406 gettext-tools | [] [] [] |
407 gimp-print | [] [] |
408 gip | [] [] [] |
409 gliv | () |
410 glunarclock | [] [] [] |
411 gmult | [] [] [] |
412 gnubiff | () () |
413 gnucash | () () () |
414 gnucash-glossary | [] [] |
415 gnuedu | [] |
416 gnulib | [] [] [] [] [] [] [] [] |
417 gnunet-gtk | |
418 gnutls | |
419 gpe-aerial | [] [] |
420 gpe-beam | [] [] |
421 gpe-calendar | |
422 gpe-clock | [] [] [] [] |
423 gpe-conf | [] |
424 gpe-contacts | [] [] |
425 gpe-edit | [] [] [] [] |
426 gpe-filemanager | [] |
427 gpe-go | [] [] [] |
428 gpe-login | [] [] [] |
429 gpe-ownerinfo | [] [] [] [] [] |
430 gpe-package | [] |
431 gpe-sketchbook | [] [] |
432 gpe-su | [] [] [] [] |
433 gpe-taskmanager | [] [] [] |
434 gpe-timesheet | [] [] [] [] |
435 gpe-today | [] [] [] [] |
436 gpe-todo | [] |
437 gphoto2 | [] [] [] [] [] |
438 gprof | [] [] [] [] |
439 gpsdrive | () () [] () |
440 gramadoir | [] [] |
441 grep | [] [] [] [] [] [] [] [] [] [] [] [] |
442 gretl | [] [] [] |
443 gsasl | [] [] |
444 gss | [] |
445 gst-plugins | [] [] [] |
446 gst-plugins-base | [] [] |
447 gst-plugins-good | [] [] [] |
448 gstreamer | [] [] [] |
449 gtick | [] |
450 gtkam | [] [] [] [] |
451 gtkorphan | [] [] |
452 gtkspell | [] [] [] [] [] [] |
453 gutenprint | [] |
454 hello | [] [] [] [] [] [] [] [] [] [] [] [] [] |
455 id-utils | [] [] [] [] [] |
456 impost | [] [] |
457 indent | [] [] [] [] [] [] [] [] [] [] |
458 iso_3166 | [] [] [] |
459 iso_3166_2 | [] |
460 iso_4217 | [] [] [] [] |
461 iso_639 | [] [] [] [] [] |
462 jpilot | [] [] |
463 jtag | [] |
464 jwhois | [] [] [] [] [] |
465 kbd | [] [] |
466 keytouch | [] |
467 keytouch-editor | [] |
468 keytouch-keyboa... | [] |
469 latrine | [] [] [] |
470 ld | [] [] |
471 leafpad | [] [] [] [] [] [] |
472 libc | [] [] [] [] [] |
473 libexif | [] |
474 libextractor | [] |
475 libgpewidget | [] [] [] [] [] |
476 libgpg-error | |
477 libgphoto2 | [] [] [] |
478 libgphoto2_port | [] [] |
479 libgsasl | [] [] |
480 libiconv | [] [] |
481 libidn | [] [] |
482 lifelines | () |
483 lilypond | [] |
484 lingoteach | [] [] [] |
485 lynx | [] [] [] |
486 m4 | [] [] [] [] |
487 mailutils | [] [] |
488 make | [] [] [] [] [] [] [] [] |
489 man-db | () |
490 minicom | [] [] [] [] |
491 mysecretdiary | [] [] [] |
492 nano | [] [] [] [] [] [] |
493 nano_1_0 | [] [] [] [] [] |
494 opcodes | [] [] [] [] |
495 parted | [] [] [] [] |
496 pilot-qof | |
497 psmisc | [] [] [] |
498 pwdutils | |
499 python | |
500 qof | [] |
501 radius | [] [] |
502 recode | [] [] [] [] [] [] [] [] |
503 rpm | [] [] |
504 screem | |
505 scrollkeeper | [] [] [] |
506 sed | [] [] [] [] [] |
507 sh-utils | [] [] [] [] [] [] [] |
508 shared-mime-info | [] [] [] [] [] [] |
509 sharutils | [] [] [] [] [] [] [] [] |
510 shishi | |
511 silky | [] |
512 skencil | [] [] |
513 sketch | [] [] |
514 solfege | [] |
515 soundtracker | [] [] [] |
516 sp | [] |
517 stardict | [] |
518 system-tools-ba... | [] [] [] [] [] [] [] [] |
519 tar | [] [] [] [] [] [] [] |
520 texinfo | [] [] |
521 textutils | [] [] [] [] [] |
522 tin | [] () |
523 tp-robot | [] [] [] [] |
524 tuxpaint | [] [] |
525 unicode-han-tra... | |
526 unicode-transla... | [] [] |
527 util-linux | [] [] [] [] [] [] [] |
528 vorbis-tools | [] [] |
529 wastesedge | () |
530 wdiff | [] [] [] [] [] [] [] [] |
531 wget | [] [] [] [] [] [] [] [] |
532 xchat | [] [] [] [] [] [] [] [] |
533 xkeyboard-config | [] [] [] [] |
534 xpad | [] [] [] |
535 +--------------------------------------------------+
536 es et eu fa fi fr ga gl gu he hi hr hu id is it
537 88 22 14 2 40 115 61 14 1 8 1 6 59 31 0 52
538
539 ja ko ku ky lg lt lv mk mn ms mt nb ne nl nn no
540 +-------------------------------------------------+
541 GNUnet | |
542 a2ps | () [] [] () |
543 aegis | () |
544 ant-phone | [] |
545 anubis | [] [] [] |
546 ap-utils | [] |
547 aspell | [] [] |
548 bash | [] |
549 batchelor | [] [] |
550 bfd | |
551 bibshelf | [] |
552 binutils | |
553 bison | [] [] [] |
554 bison-runtime | [] [] [] |
555 bluez-pin | [] [] [] |
556 cflow | |
557 clisp | [] |
558 console-tools | |
559 coreutils | [] |
560 cpio | |
561 cpplib | [] |
562 cryptonit | [] |
563 darkstat | [] [] |
564 dialog | [] [] |
565 diffutils | [] [] [] |
566 doodle | |
567 e2fsprogs | [] |
568 enscript | [] |
569 error | [] |
570 fetchmail | [] [] |
571 fileutils | [] [] |
572 findutils | [] |
573 flex | [] [] |
574 fslint | [] [] |
575 gas | |
576 gawk | [] [] |
577 gbiff | [] |
578 gcal | |
579 gcc | |
580 gettext-examples | [] [] |
581 gettext-runtime | [] [] [] |
582 gettext-tools | [] [] |
583 gimp-print | [] [] |
584 gip | [] [] |
585 gliv | [] |
586 glunarclock | [] [] |
587 gmult | [] [] |
588 gnubiff | |
589 gnucash | () () |
590 gnucash-glossary | [] |
591 gnuedu | |
592 gnulib | [] [] [] [] |
593 gnunet-gtk | |
594 gnutls | |
595 gpe-aerial | [] |
596 gpe-beam | [] |
597 gpe-calendar | [] |
598 gpe-clock | [] [] [] |
599 gpe-conf | [] [] |
600 gpe-contacts | [] |
601 gpe-edit | [] [] [] |
602 gpe-filemanager | [] [] |
603 gpe-go | [] [] [] |
604 gpe-login | [] [] [] |
605 gpe-ownerinfo | [] [] |
606 gpe-package | [] [] |
607 gpe-sketchbook | [] [] |
608 gpe-su | [] [] [] |
609 gpe-taskmanager | [] [] [] [] |
610 gpe-timesheet | [] |
611 gpe-today | [] [] |
612 gpe-todo | [] |
613 gphoto2 | [] [] |
614 gprof | |
615 gpsdrive | () () () |
616 gramadoir | () |
617 grep | [] [] [] [] |
618 gretl | |
619 gsasl | [] |
620 gss | |
621 gst-plugins | [] |
622 gst-plugins-base | |
623 gst-plugins-good | [] |
624 gstreamer | [] |
625 gtick | |
626 gtkam | [] |
627 gtkorphan | [] |
628 gtkspell | [] [] |
629 gutenprint | |
630 hello | [] [] [] [] [] [] |
631 id-utils | [] |
632 impost | |
633 indent | [] [] |
634 iso_3166 | [] |
635 iso_3166_2 | [] |
636 iso_4217 | [] [] [] |
637 iso_639 | [] [] |
638 jpilot | () () () |
639 jtag | |
640 jwhois | [] |
641 kbd | [] |
642 keytouch | [] |
643 keytouch-editor | |
644 keytouch-keyboa... | |
645 latrine | [] |
646 ld | |
647 leafpad | [] [] |
648 libc | [] [] [] [] [] |
649 libexif | |
650 libextractor | |
651 libgpewidget | [] |
652 libgpg-error | |
653 libgphoto2 | [] |
654 libgphoto2_port | [] |
655 libgsasl | [] |
656 libiconv | |
657 libidn | [] [] |
658 lifelines | [] |
659 lilypond | |
660 lingoteach | [] |
661 lynx | [] [] |
662 m4 | [] [] |
663 mailutils | |
664 make | [] [] [] |
665 man-db | () |
666 minicom | [] |
667 mysecretdiary | [] |
668 nano | [] [] [] |
669 nano_1_0 | [] [] [] |
670 opcodes | [] |
671 parted | [] [] |
672 pilot-qof | |
673 psmisc | [] [] [] |
674 pwdutils | |
675 python | |
676 qof | |
677 radius | |
678 recode | [] |
679 rpm | [] [] |
680 screem | [] |
681 scrollkeeper | [] [] [] [] |
682 sed | [] [] |
683 sh-utils | [] [] |
684 shared-mime-info | [] [] [] [] [] |
685 sharutils | [] [] |
686 shishi | |
687 silky | [] |
688 skencil | |
689 sketch | |
690 solfege | |
691 soundtracker | |
692 sp | () |
693 stardict | [] [] |
694 system-tools-ba... | [] [] [] [] |
695 tar | [] [] [] |
696 texinfo | [] [] [] |
697 textutils | [] [] [] |
698 tin | |
699 tp-robot | [] |
700 tuxpaint | [] |
701 unicode-han-tra... | |
702 unicode-transla... | |
703 util-linux | [] [] |
704 vorbis-tools | [] |
705 wastesedge | [] |
706 wdiff | [] [] |
707 wget | [] [] |
708 xchat | [] [] [] [] |
709 xkeyboard-config | [] |
710 xpad | [] [] [] |
711 +-------------------------------------------------+
712 ja ko ku ky lg lt lv mk mn ms mt nb ne nl nn no
713 52 24 2 2 1 3 0 2 3 21 0 15 1 97 5 1
714
715 nso or pa pl pt pt_BR rm ro ru rw sk sl sq sr sv ta
716 +------------------------------------------------------+
717 GNUnet | |
718 a2ps | () [] [] [] [] [] [] |
719 aegis | () () |
720 ant-phone | [] [] |
721 anubis | [] [] [] |
722 ap-utils | () |
723 aspell | [] [] |
724 bash | [] [] [] |
725 batchelor | [] [] |
726 bfd | |
727 bibshelf | [] |
728 binutils | [] [] |
729 bison | [] [] [] [] [] |
730 bison-runtime | [] [] [] [] |
731 bluez-pin | [] [] [] [] [] [] [] [] [] |
732 cflow | [] |
733 clisp | [] |
734 console-tools | [] |
735 coreutils | [] [] [] [] |
736 cpio | [] [] [] |
737 cpplib | [] |
738 cryptonit | [] [] |
739 darkstat | [] [] [] [] [] [] |
740 dialog | [] [] [] [] [] [] [] [] [] |
741 diffutils | [] [] [] [] [] [] |
742 doodle | [] [] |
743 e2fsprogs | [] [] |
744 enscript | [] [] [] [] [] |
745 error | [] [] [] [] |
746 fetchmail | [] [] [] |
747 fileutils | [] [] [] [] [] |
748 findutils | [] [] [] [] [] [] |
749 flex | [] [] [] [] [] |
750 fslint | [] [] [] [] |
751 gas | |
752 gawk | [] [] [] [] |
753 gbiff | [] |
754 gcal | [] |
755 gcc | [] |
756 gettext-examples | [] [] [] [] [] [] [] [] |
757 gettext-runtime | [] [] [] [] [] [] [] [] |
758 gettext-tools | [] [] [] [] [] [] [] |
759 gimp-print | [] [] |
760 gip | [] [] [] [] |
761 gliv | [] [] [] [] |
762 glunarclock | [] [] [] [] [] [] |
763 gmult | [] [] [] [] |
764 gnubiff | () |
765 gnucash | () [] |
766 gnucash-glossary | [] [] [] |
767 gnuedu | |
768 gnulib | [] [] [] [] [] |
769 gnunet-gtk | [] |
770 gnutls | [] [] |
771 gpe-aerial | [] [] [] [] [] [] [] |
772 gpe-beam | [] [] [] [] [] [] [] |
773 gpe-calendar | [] |
774 gpe-clock | [] [] [] [] [] [] [] [] |
775 gpe-conf | [] [] [] [] [] [] [] |
776 gpe-contacts | [] [] [] [] [] |
777 gpe-edit | [] [] [] [] [] [] [] [] |
778 gpe-filemanager | [] [] |
779 gpe-go | [] [] [] [] [] [] |
780 gpe-login | [] [] [] [] [] [] [] [] |
781 gpe-ownerinfo | [] [] [] [] [] [] [] [] |
782 gpe-package | [] [] |
783 gpe-sketchbook | [] [] [] [] [] [] [] [] |
784 gpe-su | [] [] [] [] [] [] [] [] |
785 gpe-taskmanager | [] [] [] [] [] [] [] [] |
786 gpe-timesheet | [] [] [] [] [] [] [] [] |
787 gpe-today | [] [] [] [] [] [] [] [] |
788 gpe-todo | [] [] [] [] |
789 gphoto2 | [] [] [] [] [] |
790 gprof | [] [] [] |
791 gpsdrive | [] [] [] |
792 gramadoir | [] [] |
793 grep | [] [] [] [] [] [] [] [] |
794 gretl | [] |
795 gsasl | [] [] [] |
796 gss | [] [] [] |
797 gst-plugins | [] [] [] [] |
798 gst-plugins-base | [] |
799 gst-plugins-good | [] [] [] [] |
800 gstreamer | [] [] [] |
801 gtick | [] |
802 gtkam | [] [] [] [] |
803 gtkorphan | [] |
804 gtkspell | [] [] [] [] [] [] [] [] |
805 gutenprint | [] |
806 hello | [] [] [] [] [] [] [] [] |
807 id-utils | [] [] [] [] |
808 impost | [] |
809 indent | [] [] [] [] [] [] |
810 iso_3166 | [] [] [] [] [] [] |
811 iso_3166_2 | |
812 iso_4217 | [] [] [] [] |
813 iso_639 | [] [] [] [] |
814 jpilot | |
815 jtag | [] |
816 jwhois | [] [] [] [] |
817 kbd | [] [] [] |
818 keytouch | [] |
819 keytouch-editor | [] |
820 keytouch-keyboa... | [] |
821 latrine | [] [] |
822 ld | [] |
823 leafpad | [] [] [] [] [] [] |
824 libc | [] [] [] [] [] |
825 libexif | [] |
826 libextractor | [] [] |
827 libgpewidget | [] [] [] [] [] [] [] |
828 libgpg-error | [] [] |
829 libgphoto2 | [] |
830 libgphoto2_port | [] [] [] |
831 libgsasl | [] [] [] [] |
832 libiconv | [] [] |
833 libidn | [] [] () |
834 lifelines | [] [] |
835 lilypond | |
836 lingoteach | [] |
837 lynx | [] [] [] |
838 m4 | [] [] [] [] [] |
839 mailutils | [] [] [] [] |
840 make | [] [] [] [] |
841 man-db | [] [] |
842 minicom | [] [] [] [] [] |
843 mysecretdiary | [] [] [] [] |
844 nano | [] [] [] |
845 nano_1_0 | [] [] [] [] |
846 opcodes | [] [] |
847 parted | [] |
848 pilot-qof | [] |
849 psmisc | [] [] |
850 pwdutils | [] [] |
851 python | |
852 qof | [] [] |
853 radius | [] [] |
854 recode | [] [] [] [] [] [] [] |
855 rpm | [] [] [] [] |
856 screem | |
857 scrollkeeper | [] [] [] [] [] [] [] |
858 sed | [] [] [] [] [] [] [] [] [] |
859 sh-utils | [] [] [] |
860 shared-mime-info | [] [] [] [] [] |
861 sharutils | [] [] [] [] |
862 shishi | [] |
863 silky | [] |
864 skencil | [] [] [] |
865 sketch | [] [] [] |
866 solfege | [] |
867 soundtracker | [] [] |
868 sp | |
869 stardict | [] [] [] |
870 system-tools-ba... | [] [] [] [] [] [] [] [] [] |
871 tar | [] [] [] [] [] |
872 texinfo | [] [] [] [] |
873 textutils | [] [] [] |
874 tin | () |
875 tp-robot | [] |
876 tuxpaint | [] [] [] [] [] |
877 unicode-han-tra... | |
878 unicode-transla... | |
879 util-linux | [] [] [] [] |
880 vorbis-tools | [] [] |
881 wastesedge | |
882 wdiff | [] [] [] [] [] [] |
883 wget | [] [] [] [] |
884 xchat | [] [] [] [] [] [] [] |
885 xkeyboard-config | [] [] |
886 xpad | [] [] [] |
887 +------------------------------------------------------+
888 nso or pa pl pt pt_BR rm ro ru rw sk sl sq sr sv ta
889 0 2 3 58 30 54 5 73 72 4 40 46 11 50 128 2
890
891 tg th tk tr uk ven vi wa xh zh_CN zh_HK zh_TW zu
892 +---------------------------------------------------+
893 GNUnet | [] | 2
894 a2ps | [] [] [] | 19
895 aegis | | 0
896 ant-phone | [] [] | 6
897 anubis | [] [] [] | 11
898 ap-utils | () [] | 4
899 aspell | [] [] [] | 15
900 bash | [] | 11
901 batchelor | [] [] | 9
902 bfd | | 1
903 bibshelf | [] | 7
904 binutils | [] [] [] | 9
905 bison | [] [] [] | 19
906 bison-runtime | [] [] [] | 15
907 bluez-pin | [] [] [] [] [] [] | 28
908 cflow | [] [] | 5
909 clisp | | 6
910 console-tools | [] [] | 5
911 coreutils | [] [] | 16
912 cpio | [] [] [] | 9
913 cpplib | [] [] [] [] | 11
914 cryptonit | | 5
915 darkstat | [] () () | 15
916 dialog | [] [] [] [] [] | 30
917 diffutils | [] [] [] [] | 28
918 doodle | [] | 6
919 e2fsprogs | [] [] | 10
920 enscript | [] [] [] | 16
921 error | [] [] [] [] | 18
922 fetchmail | [] [] | 12
923 fileutils | [] [] [] | 18
924 findutils | [] [] [] | 17
925 flex | [] [] | 15
926 fslint | [] | 9
927 gas | [] | 3
928 gawk | [] [] | 15
929 gbiff | [] | 5
930 gcal | [] | 5
931 gcc | [] [] [] | 6
932 gettext-examples | [] [] [] [] [] [] | 27
933 gettext-runtime | [] [] [] [] [] [] | 28
934 gettext-tools | [] [] [] [] [] | 19
935 gimp-print | [] [] | 12
936 gip | [] [] | 12
937 gliv | [] [] | 8
938 glunarclock | [] [] [] | 15
939 gmult | [] [] [] [] | 15
940 gnubiff | [] | 1
941 gnucash | () | 2
942 gnucash-glossary | [] [] | 9
943 gnuedu | [] | 2
944 gnulib | [] [] [] [] [] | 28
945 gnunet-gtk | | 1
946 gnutls | | 2
947 gpe-aerial | [] [] | 14
948 gpe-beam | [] [] | 14
949 gpe-calendar | [] | 3
950 gpe-clock | [] [] [] [] | 21
951 gpe-conf | [] [] | 14
952 gpe-contacts | [] [] | 10
953 gpe-edit | [] [] [] [] | 20
954 gpe-filemanager | [] | 6
955 gpe-go | [] [] | 15
956 gpe-login | [] [] [] [] [] | 21
957 gpe-ownerinfo | [] [] [] [] | 21
958 gpe-package | [] | 6
959 gpe-sketchbook | [] [] | 16
960 gpe-su | [] [] [] | 20
961 gpe-taskmanager | [] [] [] | 20
962 gpe-timesheet | [] [] [] [] | 18
963 gpe-today | [] [] [] [] [] | 21
964 gpe-todo | [] | 7
965 gphoto2 | [] [] [] [] | 20
966 gprof | [] [] | 11
967 gpsdrive | | 4
968 gramadoir | [] | 7
969 grep | [] [] [] [] | 34
970 gretl | | 4
971 gsasl | [] [] | 8
972 gss | [] | 5
973 gst-plugins | [] [] [] | 15
974 gst-plugins-base | [] [] [] | 9
975 gst-plugins-good | [] [] [] [] [] | 20
976 gstreamer | [] [] [] | 17
977 gtick | [] | 3
978 gtkam | [] | 13
979 gtkorphan | [] | 7
980 gtkspell | [] [] [] [] [] [] | 26
981 gutenprint | | 3
982 hello | [] [] [] [] [] | 37
983 id-utils | [] [] | 14
984 impost | [] | 4
985 indent | [] [] [] [] | 25
986 iso_3166 | [] [] [] [] | 16
987 iso_3166_2 | | 2
988 iso_4217 | [] [] | 14
989 iso_639 | [] | 14
990 jpilot | [] [] [] [] | 7
991 jtag | [] | 3
992 jwhois | [] [] [] | 13
993 kbd | [] [] | 12
994 keytouch | [] | 4
995 keytouch-editor | | 2
996 keytouch-keyboa... | [] | 3
997 latrine | [] [] | 8
998 ld | [] [] [] [] | 8
999 leafpad | [] [] [] [] | 23
1000 libc | [] [] [] | 23
1001 libexif | [] | 4
1002 libextractor | [] | 5
1003 libgpewidget | [] [] [] | 19
1004 libgpg-error | [] | 4
1005 libgphoto2 | [] | 8
1006 libgphoto2_port | [] [] [] | 11
1007 libgsasl | [] | 8
1008 libiconv | [] | 7
1009 libidn | [] [] | 10
1010 lifelines | | 4
1011 lilypond | | 2
1012 lingoteach | [] | 6
1013 lynx | [] [] [] | 15
1014 m4 | [] [] [] | 18
1015 mailutils | [] | 8
1016 make | [] [] [] | 20
1017 man-db | [] | 6
1018 minicom | [] | 14
1019 mysecretdiary | [] [] | 12
1020 nano | [] [] | 17
1021 nano_1_0 | [] [] [] | 18
1022 opcodes | [] [] | 10
1023 parted | [] [] [] | 10
1024 pilot-qof | [] | 3
1025 psmisc | [] | 10
1026 pwdutils | [] | 3
1027 python | | 0
1028 qof | [] | 4
1029 radius | [] | 6
1030 recode | [] [] [] | 25
1031 rpm | [] [] [] [] | 14
1032 screem | [] | 2
1033 scrollkeeper | [] [] [] [] | 26
1034 sed | [] [] [] | 22
1035 sh-utils | [] | 15
1036 shared-mime-info | [] [] [] [] | 24
1037 sharutils | [] [] [] | 23
1038 shishi | | 1
1039 silky | [] | 4
1040 skencil | [] | 7
1041 sketch | | 6
1042 solfege | | 2
1043 soundtracker | [] [] | 9
1044 sp | [] | 3
1045 stardict | [] [] [] [] | 11
1046 system-tools-ba... | [] [] [] [] [] [] [] | 37
1047 tar | [] [] [] [] | 20
1048 texinfo | [] [] [] | 15
1049 textutils | [] [] [] | 17
1050 tin | | 1
1051 tp-robot | [] [] [] | 10
1052 tuxpaint | [] [] [] | 16
1053 unicode-han-tra... | | 0
1054 unicode-transla... | | 2
1055 util-linux | [] [] [] | 20
1056 vorbis-tools | [] [] | 11
1057 wastesedge | | 1
1058 wdiff | [] [] | 22
1059 wget | [] [] [] | 19
1060 xchat | [] [] [] [] | 29
1061 xkeyboard-config | [] [] [] [] | 11
1062 xpad | [] [] [] | 14
1063 +---------------------------------------------------+
1064 77 teams tg th tk tr uk ven vi wa xh zh_CN zh_HK zh_TW zu
1065 170 domains 0 1 1 77 39 0 136 10 1 48 5 54 0 2028
1066
1067 Some counters in the preceding matrix are higher than the number of
1068visible blocks let us expect. This is because a few extra PO files are
1069used for implementing regional variants of languages, or language
1070dialects.
1071
1072 For a PO file in the matrix above to be effective, the package to
1073which it applies should also have been internationalized and
1074distributed as such by its maintainer. There might be an observable
1075lag between the mere existence a PO file and its wide availability in a
1076distribution.
1077
1078 If October 2006 seems to be old, you may fetch a more recent copy of
1079this `ABOUT-NLS' file on most GNU archive sites. The most up-to-date
1080matrix with full percentage details can be found at
1081`http://www.iro.umontreal.ca/contrib/po/HTML/matrix.html'.
1082
10831.6 Using `gettext' in new packages
1084===================================
1085
1086If you are writing a freely available program and want to
1087internationalize it you are welcome to use GNU `gettext' in your
1088package. Of course you have to respect the GNU Library General Public
1089License which covers the use of the GNU `gettext' library. This means
1090in particular that even non-free programs can use `libintl' as a shared
1091library, whereas only free software can use `libintl' as a static
1092library or use modified versions of `libintl'.
1093
1094 Once the sources are changed appropriately and the setup can handle
1095the use of `gettext' the only thing missing are the translations. The
1096Free Translation Project is also available for packages which are not
1097developed inside the GNU project. Therefore the information given above
1098applies also for every other Free Software Project. Contact
1099`translation@iro.umontreal.ca' to make the `.pot' files available to
1100the translation teams.
1101
11020
=== modified file 'AUTHORS'
--- AUTHORS 2009-12-05 18:44:50 +0000
+++ AUTHORS 2010-08-06 11:53:43 +0000
@@ -43,6 +43,8 @@
43Amanpreet Singh <aalam@users.sf.net>43Amanpreet Singh <aalam@users.sf.net>
44pl.po:44pl.po:
45Piotr DrÄ…g <piotrdrag@gmail.com>45Piotr DrÄ…g <piotrdrag@gmail.com>
46pt_BR.po:
47Glaucia Freitas <gcintra@redhat.com>
46ru.po:48ru.po:
47koterpillar49koterpillar
48sr.po sr@latin.po:50sr.po sr@latin.po:
4951
=== modified file 'ChangeLog'
--- ChangeLog 2009-12-17 19:43:32 +0000
+++ ChangeLog 2010-08-06 11:53:43 +0000
@@ -1,3 +1,3772 @@
1commit 19d03011e00db27753aa874c1404a858605b4a87
2Author: Peng Huang <shawn.p.huang@gmail.com>
3Date: 2010-08-03 16:59:32 +0800
4
5 Release 1.3.7
6
7M configure.ac
8
9commit b0a71e50d6e343c8a8ad3385a49087ba695ebc78
10Author: Peng Huang <shawn.p.huang@gmail.com>
11Date: 2010-08-03 14:43:42 +0800
12
13 Update ko.po
14
15M po/ko.po
16
17commit 14aa3cc0d4fd12a9aa0ee4db3dfc085b77672811
18Author: Peng Huang <shawn.p.huang@gmail.com>
19Date: 2010-08-03 10:04:19 +0800
20
21 Update po files.
22
23M po/bn_IN.po
24M po/ml.po
25
26commit 8706da8a65274da26ac3b593501ff3d44e81087a
27Author: James Su <suzhe@chromium.org>
28Date: 2010-06-28 19:39:31 -0700
29
30 Make sure that we won't wrongly match a hotkey after losing and getting focus.
31
32 BUG=http://crosbug.com/3892
33 TEST=manually
34
35 Review URL: http://codereview.chromium.org/2884006
36
37M bus/inputcontext.c
38
39commit b2fcd7eeb13676b0cbffeca37bfcfb142bcac3f6
40Author: satorux <satorux@chromium.org>
41Date: 2010-05-26 18:03:29 +0900
42
43 When the previous engine name is unknown, switch to the next engine in menu.
44
45 Before the change, hitting the "previous-engine" key does nothing if the
46 previous engine name is unknown. The behavior is not good for users as
47 they think the hot key is not working.
48
49 TEST=manually on the netbook
50 BUG=3579
51
52 Review URL: http://codereview.chromium.org/2255002
53
54M bus/ibusimpl.c
55
56commit e2793f52bf3da7a22321f053f3ba8154026fd6fa
57Author: James Su <james.su@gmail.com>
58Date: 2010-05-11 13:41:59 -0700
59
60 Support engine specific hotkey.
61
62 BUG=http://crosbug.com/2543
63 TEST=none
64
65 With this CL, each engine can specify one or more special activation hotkeys. This CL doesn't support customizing global hotkeys per engine.
66 I'd still prefer to customize the global hotkeys based on current locale rather than input method engine.
67
68 Add hotkeys property to IBusEngineDesc, so that each engine can specify their own special hotkeys. This is useful for input methods that have dedicated hotkeys, such as Japanese input methods, which has a dedicated hotkey key: Kana.
69
70 Review URL: http://codereview.chromium.org/1702015
71
72M bus/ibusimpl.c
73M bus/ibusimpl.h
74M ibus/component.py
75M ibus/enginedesc.py
76M src/ibusenginedesc.c
77M src/ibusenginedesc.h
78M src/ibushotkey.c
79M src/ibushotkey.h
80
81commit 1350806a4d1a23036ea7e4dac9e0169b77127cb1
82Author: Peng Huang <shawn.p.huang@gmail.com>
83Date: 2010-07-30 23:32:20 +0800
84
85 Update po files.
86
87M po/hi.po
88M po/ja.po
89
90commit beedeb4e19409555b4bc2cff98fb0be1976a04f6
91Author: Peng Huang <shawn.p.huang@gmail.com>
92Date: 2010-07-30 07:12:15 +0800
93
94 Fake IC does not grab focus, if other real IC has focus.
95
96M bus/inputcontext.c
97
98commit 353d36626f81389d0e70fea3ed58a65d367e6115
99Author: Peng Huang <shawn.p.huang@gmail.com>
100Date: 2010-07-27 15:57:05 +0800
101
102 Keep input window for fake IC
103
104M client/gtk2/ibusimcontext.c
105
106commit 519e649849d7ce1f1550f5a653238080f3b0f67e
107Author: Peng Huang <shawn.p.huang@gmail.com>
108Date: 2010-07-23 16:11:22 +0800
109
110 Support switching keyboard by hotkey without input focus Add fake input context in im module. The fake input context will hold the focus if no other input context has focus. This change for fixing input method switch issue if no focus input context.
111
112 BUG=http://crosbug.com/4381
113
114 Review URL: http://codereview.chromium.org/3052003
115
116M bus/inputcontext.c
117M bus/inputcontext.h
118M client/gtk2/ibusimcontext.c
119
120commit 3609568f318b0d6ae831d0d4eb2a24398f81531f
121Author: Peng Huang <shawn.p.huang@gmail.com>
122Date: 2010-07-23 11:41:44 +0800
123
124 Add memcomf/main.cc
125
126A memconf/main.cc
127
128commit d400b92229e7c03d7a893bc8ed33382c933e32d3
129Author: Peng Huang <shawn.p.huang@gmail.com>
130Date: 2010-07-23 15:25:45 +0800
131
132 Fix a problem in build script of memconf
133
134M Makefile.am
135M memconf/config.cc
136
137commit 810037e12a5b00712e5d01c576deca4a36c18527
138Author: Yusuke Sato <yusukes@chromium.org>
139Date: 2010-03-30 13:45:19 +0900
140
141 Reimplement ibus-gconf so it does not depend on GConf-2 database.
142
143 (Please review the README.chromium first.)
144
145 BUG=crosbug.com/1638
146 TEST=run autotest/files/config/site_tests/desktopui_IBusTest
147
148 Review URL: http://codereview.chromium.org/1539001
149
150M Makefile.am
151M configure.ac
152A memconf/Makefile.am
153A memconf/config.cc
154A memconf/config.h
155A memconf/memconf.xml.in.in
156
157commit 6372ea214bc0c3d60f7059727b4848b809257f7e
158Author: Peng Huang <shawn.p.huang@gmail.com>
159Date: 2010-07-30 17:46:51 +0800
160
161 Update po files.
162
163M po/te.po
164
165commit 565a01828be2837c8de1d2b16c8a7232355bb734
166Author: Peng Huang <shawn.p.huang@gmail.com>
167Date: 2010-07-30 17:34:41 +0800
168
169 Update po files
170
171M po/or.po
172M po/ta.po
173
174commit bd86020a1e5f545db666c24fda837fff7361f704
175Author: Peng Huang <shawn.p.huang@gmail.com>
176Date: 2010-07-30 11:55:03 +0800
177
178 Update po files.
179
180M po/ja.po
181M po/mr.po
182M po/pt_BR.po
183M po/ru.po
184M po/zh_CN.po
185
186commit 81562759e8ad57e6d2ac71188369d0e991514428
187Author: Peng Huang <shawn.p.huang@gmail.com>
188Date: 2010-07-30 07:15:30 +0800
189
190 Update po files.
191
192M po/de.po
193M po/it.po
194
195commit 8c764551ff81b084d0595922f840544a374c5ca2
196Author: Peng Huang <shawn.p.huang@gmail.com>
197Date: 2010-07-29 21:25:52 +0800
198
199 Update po files.
200
201M po/gu.po
202M po/kn.po
203
204commit 652cd0ca10ce9a203ab578e24847aa52f4b6c4b8
205Author: Peng Huang <shawn.p.huang@gmail.com>
206Date: 2010-07-27 11:23:30 +0800
207
208 Add pt_BR.po from Glaucia Freitas <gcintra@redhat.com>
209
210M AUTHORS
211M po/LINGUAS
212A po/pt_BR.po
213
214commit d9923c07be7248f1fc7d8458c9025df8cf8e282d
215Author: Peng Huang <shawn.p.huang@gmail.com>
216Date: 2010-07-15 15:04:25 +0800
217
218 Fix a memory leak in IBusConfigService.
219
220M src/ibusconfigservice.c
221
222commit eca8735df7909cffba4184eef8bafdb0d3a37142
223Author: Peng Huang <shawn.p.huang@gmail.com>
224Date: 2010-07-13 13:57:40 +0800
225
226 Add a new ibus-daemon option to set cache mode.
227
228 --cache=[auto/refresh/none]
229 auto:
230 Loads registry from cache. If the cache does not exist or the cache is
231 outdated, ibus-daemon will recreate the cache.
232 refresh:
233 Does not load the cache, force load components information from
234 /usr/share/ibus/components/*.xml and write registry to cache file.
235 none:
236 Always loads components from /usr/share/ibus/components/*.xml, does not read
237 or write cache.
238
239M bus/main.c
240M bus/option.h
241M bus/registry.c
242
243commit 4a7dff9b49d7305312c0167027b281d3d533765f
244Author: Peng Huang <shawn.p.huang@gmail.com>
245Date: 2010-07-08 18:01:38 +0800
246
247 Use dbus.Interface.
248
249M ibus/bus.py
250M ibus/config.py
251M ibus/inputcontext.py
252
253commit 674bc53c30c8ac40e021da660f2af533ab015587
254Author: Daiki Ueno <ueno@unixuser.org>
255Date: 2010-06-30 12:05:32 +0900
256
257 Fix "Show language panel: Embedded in menu" behavior.
258
259 Signed-off-by: Daiki Ueno <ueno@unixuser.org>
260
261M ui/gtk/languagebar.py
262M ui/gtk/menu.py
263
264commit f7ad6dfbff87a138d4857d7cfc9520b8541456e2
265Author: Peng Huang <shawn.p.huang@gmail.com>
266Date: 2010-07-05 13:44:22 +0800
267
268 Release 1.3.6
269
270M configure.ac
271
272commit 22c3c5f1077130f5da2cb17e774755ba90fdf4d1
273Author: Peng Huang <shawn.p.huang@gmail.com>
274Date: 2010-07-05 13:42:38 +0800
275
276 Set interface for config and inputcontext proxy
277
278M src/ibusconfig.c
279M src/ibusinputcontext.c
280
281commit 6c5945fb67f098be70e1a28eb5accc2b580b2427
282Author: Peng Huang <shawn.p.huang@gmail.com>
283Date: 2010-07-05 13:42:27 +0800
284
285 Update gtk-doc
286
287M docs/reference/ibus/ibus-sections.txt
288
289commit 179e1642186dcddf877871f66521978c3a08005c
290Author: Peng Huang <shawn.p.huang@gmail.com>
291Date: 2010-07-05 13:42:10 +0800
292
293 Update libibus2.symbols
294
295M debian/libibus2.symbols
296
297commit c9ab368469d2fbf54f723c74295d2a6abefa3f35
298Author: Peng Huang <shawn.p.huang@gmail.com>
299Date: 2010-07-05 13:10:00 +0800
300
301 Remove some patches.
302
303M debian/patches/00list
304D debian/patches/01_ubuntu_desktop.dpatch
305
306commit 887aa04857544e98b1f7a0b380349483e6a60733
307Author: Peng Huang <shawn.p.huang@gmail.com>
308Date: 2010-07-01 11:52:30 +0800
309
310 Update es.po from daniel cabrera <logan@fedoraproject.org>
311
312M po/es.po
313
314commit e54703b537d3b94b3c2a7c5e77b6837da87ef303
315Author: Peng Huang <shawn.p.huang@gmail.com>
316Date: 2010-06-28 13:16:02 +0800
317
318 Update zh_TW.po from Tseng, Cheng-Chia <pswo10680@gmail.com>
319
320M po/zh_TW.po
321
322commit 817399605bdeeb83fa4729018b2b17ad7870576d
323Author: Peng Huang <shawn.p.huang@gmail.com>
324Date: 2010-06-24 11:11:51 +0800
325
326 Fix next_engine & prev_engine settings problems.
327
328M bus/ibusimpl.c
329M setup/main.py
330
331commit 2e19fbadd285ae2d81d3ba5612da4d7357bb5139
332Author: Peng Huang <shawn.p.huang@gmail.com>
333Date: 2010-06-23 13:35:00 +0800
334
335 Update po files
336
337M po/ar.po
338M po/as.po
339M po/bn_IN.po
340M po/ca.po
341M po/da.po
342M po/de.po
343M po/es.po
344M po/fr.po
345M po/gu.po
346M po/hi.po
347M po/hu.po
348M po/it.po
349M po/ja.po
350M po/kn.po
351M po/ko.po
352M po/ml.po
353M po/mr.po
354M po/or.po
355M po/pa.po
356M po/pl.po
357M po/ru.po
358M po/sr.po
359M po/sr@latin.po
360M po/ta.po
361M po/te.po
362M po/vi.po
363M po/zh_CN.po
364M po/zh_HK.po
365M po/zh_TW.po
366
367commit 8b6cc2e285655471cc340e15bc3871a3043d59a6
368Author: Peng Huang <shawn.p.huang@gmail.com>
369Date: 2010-06-23 13:32:04 +0800
370
371 Update desktop files.
372
373M bus/ibus.desktop.in
374M setup/ibus-setup.desktop.in
375
376commit 06114fef552bc5ec3f94704580d59e926d04a43d
377Author: Peng Huang <shawn.p.huang@gmail.com>
378Date: 2010-06-23 10:35:32 +0800
379
380 fill right value of GdkEventKey::is_modifier
381
382M client/gtk2/ibusimcontext.c
383
384commit a25970bc951768c44271b7e6c2b54ef22c49d76c
385Author: Peng Huang <shawn.p.huang@gmail.com>
386Date: 2010-06-20 08:02:58 +0800
387
388 workaround for applications do not set client window and refine code.
389
390M client/gtk2/ibusimcontext.c
391
392commit f16baaffebe6af29f23ef537c071150acf2397bc
393Author: Peng Huang <shawn.p.huang@gmail.com>
394Date: 2010-06-18 09:14:18 +0800
395
396 Check gtk2 too if configure with --enable-xim
397
398M configure.ac
399
400commit 9bc7166f81cf77b369f9610166839c0ae1aa953b
401Author: Peng Huang <shawn.p.huang@gmail.com>
402Date: 2010-06-17 20:19:23 +0800
403
404 Use IBUS_TYPE_OBJECT_PATH for return value of CurrentInputContext
405
406M bus/ibusimpl.c
407M ibus/interface/iibus.py
408M src/ibusbus.c
409
410commit cad8e70c3928eec31837215696dfa40ec3475734
411Author: Peng Huang <shawn.p.huang@gmail.com>
412Date: 2010-06-15 17:02:31 +0800
413
414 Preload all values.
415
416M gconf/config.c
417
418commit 92949de6497247add592a4a790bddda439791fc3
419Author: Peng Huang <shawn.p.huang@gmail.com>
420Date: 2010-06-15 16:21:29 +0800
421
422 Fix conflict between --restart and --replace
423
424M bus/main.c
425
426commit a842158b3dc01855cb1ad194dd8b75f744f7d037
427Author: Peng Huang <shawn.p.huang@gmail.com>
428Date: 2010-06-15 16:18:10 +0800
429
430 Set release = 0
431
432M configure.ac
433
434commit c7608cb5dfa683328d8f0ce9c2e16283464e36b0
435Author: Peng Huang <shawn.p.huang@gmail.com>
436Date: 2010-06-15 00:23:44 +0800
437
438 Update es.po from daniel cabrera <logan@fedoraproject.org>
439
440M po/es.po
441
442commit 9d99fa7db69e81e05164d55bf20fbf265ea1c03c
443Author: Peng Huang <shawn.p.huang@gmail.com>
444Date: 2010-06-14 22:47:21 +0800
445
446 Add --restart option by satorux@chromium.org
447
448M bus/main.c
449M src/ibuscomponent.c
450M src/ibuscomponent.h
451
452commit 2dfd255535c8367d210409b3a16ddbba1dbb166a
453Author: Peng Huang <shawn.p.huang@gmail.com>
454Date: 2010-06-12 09:00:00 +0800
455
456 read env IBUS_SNOOPER_APPS
457
458M client/gtk2/ibusimcontext.c
459
460commit 7e715146794d5fa5324885f8d1dcebb8805bc31b
461Author: Peng Huang <shawn.p.huang@gmail.com>
462Date: 2010-06-12 08:53:43 +0800
463
464 Disable snooper by default.
465
466M client/gtk2/ibusimcontext.c
467M configure.ac
468
469commit 79438c1322520b3a468bba296512972c16d60f7b
470Author: Peng Huang <shawn.p.huang@gmail.com>
471Date: 2010-06-12 08:10:25 +0800
472
473 prepare to release 1.3.5
474
475M configure.ac
476
477commit 3234f71aa8c00fcbb3eaa43b06032784ed480ac6
478Author: Peng Huang <shawn.p.huang@gmail.com>
479Date: 2010-06-12 08:06:22 +0800
480
481 Update ibus.spec.in
482
483M ibus.spec.in
484
485commit 49a848a70cc1e0393438fe7cfb3b118d1de24476
486Author: Peng Huang <shawn.p.huang@gmail.com>
487Date: 2010-06-12 07:50:22 +0800
488
489 Use regex for no snooper applications, and disable snooper in chrome
490
491M client/gtk2/ibusimcontext.c
492M configure.ac
493
494commit e3b576d1bd8255eaef153e69996665a7eef75b55
495Author: Peng Huang <shawn.p.huang@gmail.com>
496Date: 2010-06-10 14:43:44 +0800
497
498 Update document of ibus_bus_new
499
500M src/ibusbus.h
501
502commit 07e9d903c1856d8379da29c7966c040b8aaf34a0
503Author: Peng Huang <shawn.p.huang@gmail.com>
504Date: 2010-06-10 07:09:02 +0800
505
506 Check connection state before call ibus_connection_call
507
508M src/ibusproxy.c
509
510commit a30e416bfac3915858626a122c0b1688f0ea5df8
511Author: Peng Huang <shawn.p.huang@gmail.com>
512Date: 2010-06-09 07:16:33 +0800
513
514 Emit FORWARD_KEY_EVENT signal correctly
515
516M client/x11/main.c
517M src/ibusinputcontext.c
518
519commit 46a8b5a1bc9f2024beab573ef141bd2bc9a6565c
520Author: Peng Huang <shawn.p.huang@gmail.com>
521Date: 2010-06-09 00:09:51 +0800
522
523 Update debian build scripts
524
525M debian/ibus.install
526
527commit d34559042ddd44a64dc415426ea9ef581cf50469
528Author: Peng Huang <shawn.p.huang@gmail.com>
529Date: 2010-06-08 22:16:53 +0800
530
531 Refine coding style
532
533M client/gtk2/ibusim.c
534M client/gtk2/ibusimcontext.c
535
536commit 7606b92e05e3216d09bc4b96c2efcbc5560134cb
537Author: Peng Huang <shawn.p.huang@gmail.com>
538Date: 2010-06-08 21:43:55 +0800
539
540 Fix problem of create GdkEventKey from keyval keycode and state
541
542M client/gtk2/ibusimcontext.c
543
544commit d8a4d1d348184d6e7c96fcb46ab431d9a020c61f
545Author: Peng Huang <shawn.p.huang@gmail.com>
546Date: 2010-06-08 21:16:15 +0800
547
548 Ignore handled key event in xim server
549
550M client/x11/main.c
551
552commit ca20ca904fb0264f9b8ac7da97ca4e782ed31ab1
553Author: Peng Huang <shawn.p.huang@gmail.com>
554Date: 2010-06-08 20:55:27 +0800
555
556 Fix keycode in xim server
557
558M client/x11/main.c
559
560commit 92f8191f2b0f4186131ce13c6b42ff2ec68a9412
561Author: Peng Huang <shawn.p.huang@gmail.com>
562Date: 2010-06-08 16:17:15 +0800
563
564 Unify compare expression in configure.ac
565
566M configure.ac
567
568commit b921d7b7f7299356ae0984ad6d526a2cb0339f6d
569Author: Peng Huang <shawn.p.huang@gmail.com>
570Date: 2010-06-08 10:58:53 +0800
571
572 Refine log message of configure.
573
574M configure.ac
575
576commit 5f4506ee2f61f66cce877ac44316c11b8a4d6326
577Author: Peng Huang <shawn.p.huang@gmail.com>
578Date: 2010-06-07 15:10:06 +0800
579
580 Only test global-engine, when global-engine is enabled.
581
582M src/test-global-engine.c
583
584commit d1238aedeb8c2f5a55bc118691862ff8a7044fa3
585Author: Peng Huang <shawn.p.huang@gmail.com>
586Date: 2010-06-07 15:08:55 +0800
587
588 Update debian build scripts
589
590M configure.ac
591M debian/control
592M debian/libibus-dev.install
593M debian/libibus2.install
594
595commit bc341df136da59524e97693078019ba7100f779d
596Author: Peng Huang <shawn.p.huang@gmail.com>
597Date: 2010-06-07 08:49:56 +0800
598
599 Update vala demo engine
600
601M bindings/vala/test/Makefile
602M bindings/vala/test/test.vala
603
604commit 35e3104bc4f67fe327e6e9e6c3454163eb6821e7
605Author: Peng Huang <shawn.p.huang@gmail.com>
606Date: 2010-06-07 07:53:57 +0800
607
608 Add Makefile
609
610A bindings/vala/test/Makefile
611
612commit c4728ba8399d25812d53ff7ca176253758cfcc4f
613Author: Peng Huang <shawn.p.huang@gmail.com>
614Date: 2010-06-06 20:25:11 +0800
615
616 Refine demo engine
617
618M bindings/vala/test/test.vala
619
620commit 48c4e43560e0a7990922ca4d610bff49095bd109
621Author: Peng Huang <shawn.p.huang@gmail.com>
622Date: 2010-06-06 19:37:38 +0800
623
624 Regenerate vapi from header files.
625
626M bindings/vala/ibus-1.0.vapi
627M bindings/vala/ibus-1.0/ibus-1.0.files
628M bindings/vala/ibus-1.0/ibus-1.0.gi
629
630commit d3f227722f621feced89c453fdb701188469f1fc
631Author: Peng Huang <shawn.p.huang@gmail.com>
632Date: 2010-06-06 19:37:28 +0800
633
634 Add a demo vala engine
635
636A bindings/vala/test/test.vala
637
638commit 4b976f8b048dfb10fb86368d59c09bb84f60190d
639Author: Peng Huang <shawn.p.huang@gmail.com>
640Date: 2010-06-06 18:29:00 +0800
641
642 Fix ibus_service_get_connections in vala binding
643
644M bindings/vala/ibus-1.0.vapi
645M bindings/vala/ibus-1.0/ibus-1.0.metadata
646
647commit a8a6709da393b4d61203f0811be35cc8455d48a5
648Author: Peng Huang <shawn.p.huang@gmail.com>
649Date: 2010-06-06 16:31:25 +0800
650
651 Fix coding style
652
653M src/ibusinputcontext.h
654
655commit 0ef49cb255babb6845db6120fd41332d8c02b95a
656Author: Peng Huang <shawn.p.huang@gmail.com>
657Date: 2010-06-06 16:26:38 +0800
658
659 Update vala files
660
661M bindings/vala/ibus-1.0.vapi
662M bindings/vala/ibus-1.0/ibus-1.0.metadata
663
664commit 2743296f5a52f723334a8c09b0812944526563ee
665Author: Peng Huang <shawn.p.huang@gmail.com>
666Date: 2010-06-06 16:02:38 +0800
667
668 Add some annotation for g-ir-scanner
669
670M src/ibusattrlist.h
671M src/ibusbus.h
672M src/ibuscomponent.h
673M src/ibuslookuptable.h
674M src/ibusproplist.h
675M src/ibusproxy.h
676M src/ibusservice.h
677
678commit e84375407a6675890113cffec81837b8c289dc60
679Author: Peng Huang <shawn.p.huang@gmail.com>
680Date: 2010-06-06 14:42:29 +0800
681
682 Fix problem in ibus_bus_get_name_owner
683
684M src/ibusbus.c
685
686commit 42b5828d2aa0057b6a6979e8f93148a25d00be51
687Author: Peng Huang <shawn.p.huang@gmail.com>
688Date: 2010-06-06 13:44:07 +0800
689
690 Add --disable-vala in configure
691
692M Makefile.am
693M bindings/Makefile.am
694M configure.ac
695D ibus.sh
696
697commit 230c5b4439d765acc3a4e1064ff66e6800af8b81
698Author: Peng Huang <shawn.p.huang@gmail.com>
699Date: 2010-06-06 13:35:51 +0800
700
701 Add ibus-1.0-custom.vala
702
703M bindings/vala/Makefile.am
704M bindings/vala/ibus-1.0/ibus-1.0-custom.vala
705
706commit c4c565dc706a0c262beba447095950485a4d6a55
707Author: Peng Huang <shawn.p.huang@gmail.com>
708Date: 2010-06-06 13:24:27 +0800
709
710 Add vala in rpm spec file
711
712M Makefile.am
713M ibus.spec.in
714
715commit 85231d5f85f298bfbb2805f6f1f851e82fb75a66
716Author: Peng Huang <shawn.p.huang@gmail.com>
717Date: 2010-06-06 12:30:06 +0800
718
719 Add vala support
720
721M bindings/Makefile.am
722A bindings/vala/Makefile.am
723A bindings/vala/ibus-1.0.vapi
724A bindings/vala/ibus-1.0/ibus-1.0-custom.vala
725A bindings/vala/ibus-1.0/ibus-1.0.excludes
726A bindings/vala/ibus-1.0/ibus-1.0.files
727A bindings/vala/ibus-1.0/ibus-1.0.gi
728A bindings/vala/ibus-1.0/ibus-1.0.metadata
729A bindings/vala/ibus-1.0/ibus-1.0.namespace
730M configure.ac
731
732commit 1b06b1f9b1ae304d82a5658a6e2dfb92b51da481
733Author: Peng Huang <shawn.p.huang@gmail.com>
734Date: 2010-06-06 11:14:42 +0800
735
736 Remove python in bindings
737
738M bindings/Makefile.am
739D bindings/python/Makefile.am
740D bindings/python/common.h
741D bindings/python/gendefs.sh
742D bindings/python/ibus-types.defs
743D bindings/python/ibus-virtual-methods.defs
744D bindings/python/ibus.defs
745D bindings/python/ibus.override
746D bindings/python/ibusmodule.c
747
748commit ea2e5113453f6cef5d93ff3b7e533d62fbc3c115
749Author: Peng Huang <shawn.p.huang@gmail.com>
750Date: 2010-06-05 21:44:54 +0800
751
752 Update rpm spec file.
753
754M ibus.spec.in
755
756commit cbe5540dd8c8a1b25522c1592d076ed3ffe0bfa4
757Author: Peng Huang <shawn.p.huang@gmail.com>
758Date: 2010-06-05 21:28:04 +0800
759
760 Support gtk3
761
762M Makefile.am
763M client/Makefile.am
764M client/gtk2/Makefile.am
765A client/gtk3/Makefile.am
766A client/gtk3/ibusim.c
767A client/gtk3/ibusimcontext.c
768A client/gtk3/ibusimcontext.h
769M configure.ac
770M debian/control
771M ibus.spec.in
772M util/Makefile.am
773
774commit e9bf772df8cdb3c06520dcc0e0dccee067e3a776
775Author: Peng Huang <shawn.p.huang@gmail.com>
776Date: 2010-06-05 20:44:32 +0800
777
778 Repace some deprecated macros to fix build errors with gtk3
779
780M client/gtk2/ibusimcontext.h
781
782commit 190074f40707c0a2aa8ba7156217121a3d5023bd
783Merge: 2d6eeb6 683f8d0
784Author: Peng Huang <shawn.p.huang@gmail.com>
785Date: 2010-06-05 09:41:30 +0800
786
787 Merge branch 'async_process_key_event'
788
789commit 2d6eeb67267c65a9bc7c537d80a6970121af714a
790Merge: 3f64078 9dabf25
791Author: Peng Huang <shawn.p.huang@gmail.com>
792Date: 2010-06-05 09:41:10 +0800
793
794 Merge branch 'singleton_bus'
795
796commit 683f8d03ecbf6de5a031fdec3bc89999db857faa
797Author: Peng Huang <shawn.p.huang@gmail.com>
798Date: 2010-06-04 19:40:59 +0800
799
800 Set keycode in GdkEvent correctly.
801
802M client/gtk2/ibusimcontext.c
803
804commit 3f6407877244f390fc3f4c3da4c2d279983795c4
805Author: Julien Humbert <julroy67@gmail.com>
806Date: 2010-06-04 12:07:42 +0200
807
808 Minor changes to the previous commited translation
809
810M po/fr.po
811
812commit 637fc2473c80f44cf6bbb760e90fae2370c4c660
813Author: Julien Humbert <julroy67@gmail.com>
814Date: 2010-06-04 12:01:15 +0200
815
816 Update French tranlation
817
818M po/fr.po
819
820commit 72b07456b95198201fae43c222a8aaecad453ab9
821Merge: 42b31b8 978325d
822Author: Julien Humbert <julroy67@gmail.com>
823Date: 2010-06-04 11:26:07 +0200
824
825 Merge branch 'master' of git://github.com/phuang/ibus
826
827commit 554e35e6dcbee874fbcaebd81b7558ca4ff48d5d
828Author: Peng Huang <shawn.p.huang@gmail.com>
829Date: 2010-06-04 15:04:12 +0800
830
831 Make ibus_input_context_process_key_event in async mode
832
833M src/ibusinputcontext.c
834
835commit 978325de556641717f4d75d3f58053d9747a977d
836Author: Peng Huang <shawn.p.huang@gmail.com>
837Date: 2010-06-03 23:16:46 +0800
838
839 Remove unused define in ibusxml.c
840
841M src/ibusxml.c
842
843commit 9dabf25c5a9265523b96d517a4d39753f679898c
844Author: Peng Huang <shawn.p.huang@gmail.com>
845Date: 2010-06-03 18:12:26 +0800
846
847 Share one IBusBus instance in whole process.
848
849M src/ibusbus.c
850
851commit 0ac0c0a91d5a50f8286b9aff662a46e51cc8ae6e
852Author: Peng Huang <shawn.p.huang@gmail.com>
853Date: 2010-06-03 18:13:14 +0800
854
855 Use g_assert to check if connection is alive
856
857M src/ibusconnection.c
858
859commit 9d9b4e240a34b31daea7a73f4b3ec5d75920f68c
860Author: Peng Huang <shawn.p.huang@gmail.com>
861Date: 2010-06-03 23:12:13 +0800
862
863 Fix function name typo
864
865M src/ibusxml.c
866
867commit 54fa37f9b1497a380ce10c140c1c992b3e6c8786
868Author: Peng Huang <shawn.p.huang@gmail.com>
869Date: 2010-06-03 21:18:50 +0800
870
871 Add all classes in ibus.py
872
873M src/python/ibus.py
874
875commit adda25656efac6357ff1f1f3d697fec5cf26b21b
876Author: Peng Huang <shawn.p.huang@gmail.com>
877Date: 2010-06-03 17:52:32 +0800
878
879 Fix document of IBusConfig
880
881M src/ibusconfig.c
882
883commit efad0c3e731da7a3ca46a68d04ffb60614752fa5
884Author: Peng Huang <shawn.p.huang@gmail.com>
885Date: 2010-06-03 08:43:08 +0800
886
887 Add a small test code for gir
888
889A src/python/ibus.py
890A src/python/test.py
891
892commit 5d7869453a1c2305291bedcb2edf5e567bbcb5b8
893Author: Peng Huang <shawn.p.huang@gmail.com>
894Date: 2010-06-02 21:19:48 +0800
895
896 Add --version -V option for ibus-daemon
897
898M bus/main.c
899
900commit ad3e270a3e1f3d56b824fad4ab4b4f40a8979649
901Author: Peng Huang <shawn.p.huang@gmail.com>
902Date: 2010-06-02 14:17:57 +0800
903
904 Fix build warnings
905
906M src/ibusproxy.h
907
908commit dab9563a6fb8a70b916fe565c97f73990eea86c4
909Author: Peng Huang <shawn.p.huang@gmail.com>
910Date: 2010-06-02 14:14:00 +0800
911
912 Remove _DummyStruct
913
914M src/ibusdbus.h
915
916commit 28b8525b00107c04a52254e26082a43d713a5920
917Author: Peng Huang <shawn.p.huang@gmail.com>
918Date: 2010-06-02 10:37:59 +0800
919
920 Update zh_TW.po from Tseng, Cheng-Chia
921
922M po/zh_TW.po
923
924commit ef3bc4281040a29be58b58e697362a8c05d575be
925Author: Peng Huang <shawn.p.huang@gmail.com>
926Date: 2010-06-01 21:40:47 +0800
927
928 Fix coding style.
929
930M src/ibusenginedesc.h
931
932commit 2f7901c539ce97b718b002f39c8398179225026b
933Author: Peng Huang <shawn.p.huang@gmail.com>
934Date: 2010-06-01 21:36:08 +0800
935
936 Remove dbus in pc file, and fix spec file.
937
938M configure.ac
939M ibus-1.0.pc.in
940M ibus.spec.in
941
942commit 45834ea4cb7f2900c847e97ff86391bc4a50780f
943Author: Peng Huang <shawn.p.huang@gmail.com>
944Date: 2010-06-01 20:40:25 +0800
945
946 Require gobject-introspection 0.6.9
947
948M configure.ac
949
950commit 741867f30c3e4586f17816176c696f2024872cc2
951Author: Peng Huang <shawn.p.huang@gmail.com>
952Date: 2010-06-01 19:47:19 +0800
953
954 Fix build errors
955
956M bus/dbusimpl.c
957M bus/engineproxy.c
958M bus/factoryproxy.c
959M bus/ibusimpl.c
960M bus/inputcontext.c
961M bus/matchrule.c
962M bus/panelproxy.c
963M bus/test-matchrule.c
964M gconf/config.c
965
966commit 23825e6f50f41f9e0eeb40f067153bdebe57b7fa
967Author: Peng Huang <shawn.p.huang@gmail.com>
968Date: 2010-06-01 19:17:46 +0800
969
970 Add annotation for some return types
971
972M src/ibusbus.h
973M src/ibuscomponent.h
974M src/ibusobservedpath.h
975M src/ibusservice.h
976
977commit d91324c034e83e17715cfa5aa9f8434aacd05a23
978Author: Peng Huang <shawn.p.huang@gmail.com>
979Date: 2010-06-01 18:37:09 +0800
980
981 Add gobject-introspection support
982
983M configure.ac
984M src/Makefile.am
985M src/ibusattrlist.c
986M src/ibusbus.c
987M src/ibusbus.h
988M src/ibuscomponent.c
989M src/ibusconfig.c
990M src/ibusconfigservice.c
991M src/ibusconnection.c
992M src/ibusconnection.h
993A src/ibusdbus.h
994M src/ibusengine.c
995M src/ibusengine.h
996M src/ibuserror.c
997M src/ibuserror.h
998M src/ibusfactory.c
999M src/ibusfactory.h
1000M src/ibushotkey.c
1001M src/ibusinputcontext.c
1002M src/ibusinternal.c
1003M src/ibusinternal.h
1004M src/ibuskeymap.c
1005M src/ibuskeymap.h
1006M src/ibuslookuptable.c
1007M src/ibusmainloop.h
1008M src/ibusmessage.c
1009M src/ibusmessage.h
1010M src/ibuspanelservice.c
1011M src/ibuspendingcall.c
1012M src/ibuspendingcall.h
1013M src/ibusproplist.c
1014M src/ibusproxy.c
1015M src/ibusproxy.h
1016M src/ibusserializable.c
1017M src/ibusserver.c
1018M src/ibusserver.h
1019M src/ibusservice.c
1020M src/ibusservice.h
1021M src/test-lookuptable.c
1022
1023commit b899ae494cc354c2748762b9de31abfebc41e873
1024Author: Peng Huang <shawn.p.huang@gmail.com>
1025Date: 2010-06-01 16:39:39 +0800
1026
1027 refine coding style
1028
1029M src/ibusproxy.h
1030
1031commit 7842b20b3e268227826dd4249f6c1e73a5d71248
1032Author: Peng Huang <shawn.p.huang@gmail.com>
1033Date: 2010-06-01 20:50:19 +0800
1034
1035 Fix problem in ibus_engine_update_lookup_table_fast.
1036
1037M src/ibusengine.c
1038
1039commit 42b31b806fc86f04a4810c5819ad2ec7ca75e1da
1040Author: Julien Humbert <julroy67@gmail.com>
1041Date: 2010-06-01 12:38:23 +0200
1042
1043 Updated French translation
1044
1045M po/fr.po
1046
1047commit a7b42886ca6a8dba90fd9387bca585f8e5388aaf
1048Author: Peng Huang <shawn.p.huang@gmail.com>
1049Date: 2010-06-01 14:28:18 +0800
1050
1051 Update po files.
1052
1053M po/ar.po
1054M po/as.po
1055M po/bn_IN.po
1056M po/ca.po
1057M po/da.po
1058M po/de.po
1059M po/es.po
1060M po/fr.po
1061M po/gu.po
1062M po/hi.po
1063M po/hu.po
1064M po/it.po
1065M po/ja.po
1066M po/kn.po
1067M po/ko.po
1068M po/ml.po
1069M po/mr.po
1070M po/or.po
1071M po/pa.po
1072M po/pl.po
1073M po/ru.po
1074M po/sr.po
1075M po/sr@latin.po
1076M po/ta.po
1077M po/te.po
1078M po/vi.po
1079M po/zh_CN.po
1080M po/zh_HK.po
1081M po/zh_TW.po
1082
1083commit 6cd06247077cdec320f32e1891cbfe6c4156079a
1084Author: James Su <james.su@gmail.com>
1085Date: 2010-05-26 20:34:16 -0700
1086
1087 Add a test for global engine related functions in ibusbus.c.
1088
1089M src/Makefile.am
1090A src/test-global-engine.c
1091
1092commit 389f6704d3950174fec78c1f22304edd9de11fc6
1093Author: James Su <james.su@gmail.com>
1094Date: 2010-05-26 20:06:53 -0700
1095
1096 Add "global-engine-changed" signal.
1097
1098M src/ibusbus.c
1099
1100commit b606f91b1f455ce7bae8d4e4904dd9ce922a9fa1
1101Author: James Su <james.su@gmail.com>
1102Date: 2010-05-26 19:17:03 -0700
1103
1104 Fix global engine related functions.
1105
1106M src/ibusbus.c
1107
1108commit c5705b4c037d7fc14bd38ded069a8437f1256250
1109Author: James Su <james.su@gmail.com>
1110Date: 2010-05-21 14:56:36 -0700
1111
1112 Implement the ability to manipulate the global engine. lib parth.
1113
1114M src/ibusbus.c
1115M src/ibusbus.h
1116M src/test-bus.c
1117
1118commit 9aacf3588d39400ab75a481ff9ada5bb868fc460
1119Author: James Su <james.su@gmail.com>
1120Date: 2010-05-21 14:53:36 -0700
1121
1122 Implement the ability to manipulate the global engine, daemon part.
1123
1124M bus/ibusimpl.c
1125
1126commit d2e8791f78227058e211c6b7db338ec521cb6c22
1127Author: James Su <james.su@gmail.com>
1128Date: 2010-05-03 21:34:57 -0700
1129
1130 Part 1 of XKB support.
1131
1132 This change includes:
1133 1. Adds hotkey for switching to previous engine (renaming the old unused "prev_engine" to previous_engine).
1134 2. Renames next_engine hotkey to next_engine_in_menu.
1135 3. Saves/loads current and previous global engine names to/from config.
1136 4. Adds enable_by_default config to enable the input method by default.
1137 5. Moves hotkey filter function from inputcontext.c into ibusimpl.c.
1138
1139M bus/ibusimpl.c
1140M bus/ibusimpl.h
1141M bus/inputcontext.c
1142M data/ibus.schemas.in
1143
1144commit 99f9e06bb995b406ad3d4498971bec2c58878f16
1145Author: Peng Huang <shawn.p.huang@gmail.com>
1146Date: 2010-06-01 11:37:18 +0800
1147
1148 Fix some exceptions in setup ui
1149
1150M setup/keyboardshortcut.py
1151
1152commit 6c32af7c6f151aad64f339abdecfce10498ea701
1153Author: Peng Huang <shawn.p.huang@gmail.com>
1154Date: 2010-05-31 16:42:36 +0800
1155
1156 Fix problem in ibus_lookup_table_set_label
1157
1158M src/ibuslookuptable.c
1159
1160commit 5da6aa482b5429da2162921a3893b14bcebf7b22
1161Author: Peng Huang <shawn.p.huang@gmail.com>
1162Date: 2010-05-29 07:34:06 +0800
1163
1164 Update po files.
1165
1166M po/ar.po
1167M po/as.po
1168M po/bn_IN.po
1169M po/ca.po
1170M po/da.po
1171M po/de.po
1172M po/es.po
1173M po/fr.po
1174M po/gu.po
1175M po/hi.po
1176M po/hu.po
1177M po/it.po
1178M po/ja.po
1179M po/kn.po
1180M po/ko.po
1181M po/ml.po
1182M po/mr.po
1183M po/or.po
1184M po/pa.po
1185M po/pl.po
1186M po/ru.po
1187M po/sr.po
1188M po/sr@latin.po
1189M po/ta.po
1190M po/te.po
1191M po/vi.po
1192M po/zh_CN.po
1193M po/zh_HK.po
1194M po/zh_TW.po
1195
1196commit 61f0c9611c37a189681f2e1b3a8f896e83a52009
1197Author: Peng Huang <shawn.p.huang@gmail.com>
1198Date: 2010-05-29 06:44:16 +0800
1199
1200 Release 1.3.4
1201
1202M configure.ac
1203
1204commit 7af503aaba624c26aff791943490f2aee410cd99
1205Author: Peng Huang <shawn.p.huang@gmail.com>
1206Date: 2010-05-28 16:38:01 +0800
1207
1208 Add include <string.h>
1209
1210M bus/ibusimpl.c
1211
1212commit 9372a7c64bea26f19ae6bcda9395aa86da60071b
1213Author: Peng Huang <shawn.p.huang@gmail.com>
1214Date: 2010-05-28 16:37:50 +0800
1215
1216 Remove changelog
1217
1218D debian/changelog
1219
1220commit aec6c3a1fb241810e0dc9e58d7da34299eb0f200
1221Author: Peng Huang <shawn.p.huang@gmail.com>
1222Date: 2010-05-28 10:18:24 +0800
1223
1224 Add ppa target to generate debian source package.
1225
1226M Makefile.am
1227M configure.ac
1228A debian/README.source
1229M debian/changelog
1230A debian/changelog.in
1231M debian/clean
1232M debian/control
1233D debian/libibus1.install
1234D debian/libibus1.symbols
1235A debian/libibus2.install
1236A debian/libibus2.symbols
1237A debian/patches/00list
1238A debian/patches/01_ubuntu_desktop.dpatch
1239M debian/rules
1240A debian/source/format
1241M debian/xinput/ibus
1242
1243commit dc1e9d38ce4612ee7fb05a39f25ae5dfb499dd4a
1244Author: Peng Huang <shawn.p.huang@gmail.com>
1245Date: 2010-05-27 06:47:34 +0800
1246
1247 Remove some unused variables.
1248
1249M src/ibusbus.c
1250M src/ibusconnection.c
1251
1252commit 7912b45a0526f78467098b36022adfb203d587b0
1253Author: Peng Huang <shawn.p.huang@gmail.com>
1254Date: 2010-05-26 12:20:29 +0800
1255
1256 Fix restart problem when the image file is removed.
1257
1258M bus/ibusimpl.c
1259
1260commit e502b41e2fedd11bccd739ed9d7257d88073904e
1261Author: James Su <james.su@gmail.com>
1262Date: 2010-05-26 15:38:37 -0700
1263
1264 Change ibus_bus_hello() to return const gchar*.
1265
1266M src/ibusbus.c
1267M src/ibusbus.h
1268
1269commit c91d8429a01725dd881abe7014fbf5c1fdba07d6
1270Author: James Su <james.su@gmail.com>
1271Date: 2010-05-26 14:56:15 -0700
1272
1273 Fix memory issues in ibusconnection.* and ibusproxy.c
1274
1275M src/ibusconnection.c
1276M src/ibusconnection.h
1277M src/ibusproxy.c
1278
1279commit 1c50507a2f0a0bfcc74d99dec3706605d211119d
1280Author: James Su <james.su@gmail.com>
1281Date: 2010-05-26 12:41:43 -0700
1282
1283 Fix memory issues in ibusbus.c
1284
1285M src/ibusbus.c
1286M src/ibusbus.h
1287M src/test-bus.c
1288
1289commit 0ba0b49831c38772884cdad787a596c4ddc23a23
1290Author: James Su <james.su@gmail.com>
1291Date: 2010-05-21 14:44:41 -0700
1292
1293 Fix typos in ibus_bus_current_input_context().
1294
1295M src/ibusbus.c
1296M src/test-bus.c
1297
1298commit 3c491bce532059391429c17c46a96f723a0a1270
1299Author: fujiwarat <takao.fujiwara1@gmail.com>
1300Date: 2010-05-17 18:17:57 +0900
1301
1302 Fix not to emit property-activate when state is not changed.
1303
1304M ui/gtk/menu.py
1305M ui/gtk/toolitem.py
1306
1307commit 5326f3c05c4ef69cbf88ca8e3d91f9eb3efc1f96
1308Author: Peng Huang <shawn.p.huang@gmail.com>
1309Date: 2010-05-15 20:05:51 +0800
1310
1311 Update pl.po from Piotr DrÄ…g <piotrdrag@gmail.com>
1312
1313M po/pl.po
1314
1315commit 9026db8da82df0229cd3c7f9055bccad338f6a91
1316Author: Peng Huang <shawn.p.huang@gmail.com>
1317Date: 2010-05-15 20:02:19 +0800
1318
1319 Refine some build options.
1320
1321M Makefile.am
1322M client/Makefile.am
1323M configure.ac
1324M gconf/Makefile.am
1325M ibus/Makefile.am
1326M ibus/interface/Makefile.am
1327M setup/Makefile.am
1328M ui/Makefile.am
1329M ui/gtk/Makefile.am
1330M util/Makefile.am
1331
1332commit c75f40f35168f752ba5380e229d889bfb7bf4074
1333Author: Peng Huang <shawn.p.huang@gmail.com>
1334Date: 2010-05-15 19:48:37 +0800
1335
1336 Add --disable-clients to disable gtk x11 clients
1337
1338M client/Makefile.am
1339M configure.ac
1340
1341commit 1477bcd22f7a9896348d6f67a4f98af0e829ed66
1342Author: Peng Huang <shawn.p.huang@gmail.com>
1343Date: 2010-05-14 20:52:53 +0800
1344
1345 Add ibus_lookup_table_set_label.
1346
1347M src/ibuslookuptable.c
1348M src/ibuslookuptable.h
1349
1350commit 86d4cf8b4e1d8485952172ebcda455d64351f575
1351Author: Peng Huang <shawn.p.huang@gmail.com>
1352Date: 2010-05-10 09:09:42 +0800
1353
1354 Make version in ibus-docs configurable.
1355
1356M configure.ac
1357D docs/reference/ibus/ibus-docs.sgml
1358A docs/reference/ibus/ibus-docs.sgml.in
1359
1360commit facc441f48a9f6ed385578106daa1eef7e1cd8c5
1361Author: Peng Huang <shawn.p.huang@gmail.com>
1362Date: 2010-05-07 22:13:46 +0800
1363
1364 Update kn.po from Shankar Prasad Venkateshbhat <svenkate@redhat.com>
1365
1366M po/kn.po
1367
1368commit a847b223c4b220ae36ba3f565df3de5c93857dcc
1369Author: Peng Huang <shawn.p.huang@gmail.com>
1370Date: 2010-05-07 15:35:36 +0800
1371
1372 Update zh_TW.po from Tseng, Cheng-Chia <pswo10680@gmail.com>
1373
1374M po/zh_TW.po
1375
1376commit 19a8c3ae2e11005bb20c1dd98e4ffe5b02d5c06d
1377Author: Peng Huang <shawn.p.huang@gmail.com>
1378Date: 2010-05-06 16:44:49 +0800
1379
1380 Update hi.po from Rajesh Ranjan <rranjan@redhat.com>
1381
1382M po/hi.po
1383
1384commit 4be5b98dab33b351bc22d91e3f6cfa5e1c5787fd
1385Author: Peng Huang <shawn.p.huang@gmail.com>
1386Date: 2010-05-06 16:35:04 +0800
1387
1388 Update ja.po from Kiyoto James Hashida <khashida@redhat.com>
1389
1390M po/ja.po
1391
1392commit 1ce102f4e3ee675f8d3a2329db52da81a09e4b72
1393Author: Peng Huang <shawn.p.huang@gmail.com>
1394Date: 2010-05-06 16:04:05 +0800
1395
1396 Update ml.po from Ani Peter <apeter@redhat.com>
1397
1398M po/ml.po
1399
1400commit ddf4c9462a044561cbb4632f722c52bf9c28a2a5
1401Author: Peng Huang <shawn.p.huang@gmail.com>
1402Date: 2010-05-06 15:05:43 +0800
1403
1404 Update mr.po from sandeep shedmake <sandeep.shedmake@gmail.com>
1405
1406M po/mr.po
1407
1408commit 704747b00f8b41d1099574c856e55d4c7f29016d
1409Author: Peng Huang <shawn.p.huang@gmail.com>
1410Date: 2010-05-06 10:32:20 +0800
1411
1412 Update ru.po from Yulia Poyarkova <yulia.poyarkova@redhat.com>
1413
1414M po/ru.po
1415
1416commit 93b3ab9b433fa9540af140a08ae6f81eec5ae531
1417Author: Peng Huang <shawn.p.huang@gmail.com>
1418Date: 2010-05-06 10:31:19 +0800
1419
1420 Update te.po from Krishnababu Krothapalli <k.meetme@gmail.com>
1421
1422M po/te.po
1423
1424commit c924bf47d4f227baf4fe4938a4467d26c2d633b7
1425Author: Peng Huang <shawn.p.huang@gmail.com>
1426Date: 2010-05-05 19:09:39 +0800
1427
1428 Fix a typo in setup.ui
1429
1430M po/ar.po
1431M po/as.po
1432M po/bn_IN.po
1433M po/ca.po
1434M po/da.po
1435M po/de.po
1436M po/es.po
1437M po/fr.po
1438M po/gu.po
1439M po/hi.po
1440M po/hu.po
1441M po/it.po
1442M po/ja.po
1443M po/kn.po
1444M po/ko.po
1445M po/ml.po
1446M po/mr.po
1447M po/or.po
1448M po/pa.po
1449M po/pl.po
1450M po/ru.po
1451M po/sr.po
1452M po/sr@latin.po
1453M po/ta.po
1454M po/te.po
1455M po/vi.po
1456M po/zh_CN.po
1457M po/zh_HK.po
1458M po/zh_TW.po
1459M setup/setup.ui
1460
1461commit 6b76860b86cfb45aedf8a010a4af45335396441c
1462Author: Peng Huang <shawn.p.huang@gmail.com>
1463Date: 2010-05-05 19:03:19 +0800
1464
1465 Update pa.po from Jaswinder Singh
1466
1467M po/pa.po
1468
1469commit 74e5fcace7101354b560e0aa2bc0c0d2b91d5fc3
1470Author: Peng Huang <shawn.p.huang@gmail.com>
1471Date: 2010-05-04 13:33:46 +0800
1472
1473 Release 1.3.3
1474
1475M configure.ac
1476
1477commit fd5289885358aebcffac82a71494bcb72193aded
1478Author: Peng Huang <shawn.p.huang@gmail.com>
1479Date: 2010-05-04 11:16:31 +0800
1480
1481 Revert "Remove dbus library from ibus-1.0.pc"
1482
1483 This reverts commit 1a60516d29bae164213c2337e4d877079b1c3ba0.
1484
1485M ibus-1.0.pc.in
1486
1487commit d8d386f6bd2823e96e0380e065ccc0b522b7e9e6
1488Merge: 1a60516 80c35b5
1489Author: Peng Huang <shawn.p.huang@gmail.com>
1490Date: 2010-05-04 07:29:45 +0800
1491
1492 Merge branch 'no_snooper_apps'
1493
1494commit 80c35b5fc53672a0791f847d811c71843e1c7156
1495Author: Peng Huang <shawn.p.huang@gmail.com>
1496Date: 2010-05-04 07:27:53 +0800
1497
1498 Add configure --disable-key-snooper
1499
1500M client/gtk2/ibusimcontext.c
1501M configure.ac
1502
1503commit 1a60516d29bae164213c2337e4d877079b1c3ba0
1504Author: Peng Huang <shawn.p.huang@gmail.com>
1505Date: 2010-05-03 17:45:05 +0800
1506
1507 Remove dbus library from ibus-1.0.pc
1508
1509M ibus-1.0.pc.in
1510
1511commit 550d0adb701d456c1097be805cd010b95e60f9c8
1512Author: Peng Huang <shawn.p.huang@gmail.com>
1513Date: 2010-05-02 15:44:13 +0800
1514
1515 ibus-x11 does not call g_error, when it connects to ibus-daemon failed.
1516
1517M client/x11/main.c
1518
1519commit aab40e06078512c7a70b071e3eb5acfe47921ca4
1520Author: Peng Huang <shawn.p.huang@gmail.com>
1521Date: 2010-05-01 20:58:36 +0800
1522
1523 Refine comments
1524
1525M configure.ac
1526
1527commit 180371b895cc9217710220e1a2dce5d91f86cf2b
1528Author: Peng Huang <shawn.p.huang@gmail.com>
1529Date: 2010-05-01 17:22:46 +0800
1530
1531 add configure option to disable keyboard snooper in some applications
1532
1533M client/gtk2/ibusimcontext.c
1534M configure.ac
1535
1536commit 14bf7bdb80920c7cf8f4fd38aabfa8c5b6deee33
1537Author: Peng Huang <shawn.p.huang@gmail.com>
1538Date: 2010-05-01 09:00:27 +0800
1539
1540 include ignore and handled mask in IBUS_MODIFIER_MASK
1541
1542M src/ibustypes.h
1543
1544commit 9111a6cfcd6b1357a4c288366661faef7d757add
1545Author: Peng Huang <shawn.p.huang@gmail.com>
1546Date: 2010-04-30 15:05:29 +0800
1547
1548 Check if client connection is alive, when engine replies the
1549 process_key_event
1550
1551M bus/inputcontext.c
1552
1553commit 670693885a114ba3c3455db695dee52edfc605d8
1554Author: Peng Huang <shawn.p.huang@gmail.com>
1555Date: 2010-04-29 17:09:58 +0800
1556
1557 mark ibus_free_strv as depracated
1558
1559M src/ibusshare.c
1560M src/ibusshare.h
1561
1562commit 479ef38a166a8e9fe72fdc52024b3676deedf16d
1563Author: Peng Huang <shawn.p.huang@gmail.com>
1564Date: 2010-04-27 07:37:42 +0800
1565
1566 Update es.po from daniel cabrera <logan@fedoraproject.org>
1567
1568M po/es.po
1569
1570commit f823193fb424797554cc4953807f65bf038b10a9
1571Author: Julien Humbert <julroy67@gmail.com>
1572Date: 2010-04-26 13:30:38 +0200
1573
1574 Updated French translation
1575
1576M po/fr.po
1577
1578commit 5d699f3d6d530cc5a709530c28fef3cedc086cb9
1579Author: Peng Huang <shawn.p.huang@gmail.com>
1580Date: 2010-04-26 09:00:47 +0800
1581
1582 Remove option [Never] for language bar.
1583
1584M data/ibus.schemas.in
1585M po/ar.po
1586M po/as.po
1587M po/bn_IN.po
1588M po/ca.po
1589M po/da.po
1590M po/de.po
1591M po/es.po
1592M po/fr.po
1593M po/gu.po
1594M po/hi.po
1595M po/hu.po
1596M po/it.po
1597M po/ja.po
1598M po/kn.po
1599M po/ko.po
1600M po/ml.po
1601M po/mr.po
1602M po/or.po
1603M po/pa.po
1604M po/pl.po
1605M po/ru.po
1606M po/sr.po
1607M po/sr@latin.po
1608M po/ta.po
1609M po/te.po
1610M po/vi.po
1611M po/zh_CN.po
1612M po/zh_HK.po
1613M po/zh_TW.po
1614M setup/main.py
1615M setup/setup.ui
1616M ui/gtk/languagebar.py
1617M ui/gtk/panel.py
1618
1619commit 269a0bb0ad207fc484b1867c53bc72f200a7cc15
1620Author: Peng Huang <shawn.p.huang@gmail.com>
1621Date: 2010-04-24 08:18:58 +0800
1622
1623 Update kn.po from Shankar Prasad Venkateshbhat <svenkate@redhat.com>
1624
1625M po/kn.po
1626
1627commit e2c1359c02f975ea5cb7a51c7baa313b27b2e6c7
1628Author: Peng Huang <shawn.p.huang@gmail.com>
1629Date: 2010-04-24 08:16:16 +0800
1630
1631 Add librsvg2 as requires in rpm spec file.
1632
1633M ibus.spec.in
1634
1635commit c0f4071d17351e4076fdbe476fff7030bfd1d3a9
1636Author: fujiwarat <takao.fujiwara1@gmail.com>
1637Date: 2010-04-23 16:02:54 +0900
1638
1639 Update ja.po
1640
1641M po/ja.po
1642
1643commit 633f5d03fcdd1206855a3a4071ee75d37829e619
1644Author: Peng Huang <shawn.p.huang@gmail.com>
1645Date: 2010-04-22 16:54:03 +0800
1646
1647 Update API references of IBusEngine
1648
1649M src/ibusengine.c
1650
1651commit c0fe2773c4c750c871785e3ca07745fe76d51faf
1652Author: Peng Huang <shawn.p.huang@gmail.com>
1653Date: 2010-04-21 22:06:23 +0800
1654
1655 Update es.po from daniel cabrera <logan@fedoraproject.org>
1656
1657M po/es.po
1658
1659commit a48386426142a6645b9beae712572dc1adfc082a
1660Author: Peng Huang <shawn.p.huang@gmail.com>
1661Date: 2010-04-21 13:19:23 +0800
1662
1663 Release 1.3.2
1664
1665M configure.ac
1666
1667commit 4cd33ff5d4c8adcde22364365f0d892f013e5b01
1668Author: Peng Huang <shawn.p.huang@gmail.com>
1669Date: 2010-04-21 13:18:34 +0800
1670
1671 workaround: set focus if context does not have focus.
1672
1673M bus/inputcontext.c
1674
1675commit 416f9ac05d2edab41379dad40315c0feb2d47406
1676Author: Peng Huang <shawn.p.huang@gmail.com>
1677Date: 2010-04-21 11:04:43 +0800
1678
1679 Update string in UI
1680
1681M po/ar.po
1682M po/as.po
1683M po/bn_IN.po
1684M po/ca.po
1685M po/da.po
1686M po/de.po
1687M po/es.po
1688M po/fr.po
1689M po/gu.po
1690M po/hi.po
1691M po/hu.po
1692M po/it.po
1693M po/ja.po
1694M po/kn.po
1695M po/ko.po
1696M po/ml.po
1697M po/mr.po
1698M po/or.po
1699M po/pa.po
1700M po/pl.po
1701M po/ru.po
1702M po/sr.po
1703M po/sr@latin.po
1704M po/ta.po
1705M po/te.po
1706M po/vi.po
1707M po/zh_CN.po
1708M po/zh_HK.po
1709M po/zh_TW.po
1710M setup/setup.ui
1711
1712commit caefdc15452b63e87e5816c888b86be72feb5a56
1713Author: Peng Huang <shawn.p.huang@gmail.com>
1714Date: 2010-04-21 10:56:19 +0800
1715
1716 Update po files.
1717
1718M po/ar.po
1719M po/as.po
1720M po/bn_IN.po
1721M po/ca.po
1722M po/da.po
1723M po/de.po
1724M po/es.po
1725M po/fr.po
1726M po/gu.po
1727M po/hi.po
1728M po/hu.po
1729M po/it.po
1730M po/ja.po
1731M po/kn.po
1732M po/ko.po
1733M po/ml.po
1734M po/mr.po
1735M po/or.po
1736M po/pa.po
1737M po/pl.po
1738M po/ru.po
1739M po/sr.po
1740M po/sr@latin.po
1741M po/ta.po
1742M po/te.po
1743M po/vi.po
1744M po/zh_CN.po
1745M po/zh_HK.po
1746M po/zh_TW.po
1747
1748commit 943df5a35b5fa73f6195b362993a479b611116bb
1749Author: Peng Huang <shawn.p.huang@gmail.com>
1750Date: 2010-04-21 10:44:32 +0800
1751
1752 Fix issue - application does not response key events randomly.
1753
1754M bus/inputcontext.c
1755
1756commit fd38e7622440cbd7c78ba62fe92281edcea6a76e
1757Author: Peng Huang <shawn.p.huang@gmail.com>
1758Date: 2010-04-21 10:42:40 +0800
1759
1760 Add iso-codes-dev as BR in spec file.
1761
1762M ibus.spec.in
1763
1764commit 5be6364bb79d77fc21c799ea728be7d6ff24de5e
1765Author: Peng Huang <shawn.p.huang@gmail.com>
1766Date: 2010-04-20 17:58:05 +0800
1767
1768 Adjust setup dialog for better looking
1769
1770M setup/setup.ui
1771
1772commit 74f8f71853b215c3d2e9945be60f5c9ff6285415
1773Author: Peng Huang <shawn.p.huang@gmail.com>
1774Date: 2010-04-20 17:21:41 +0800
1775
1776 Fix crash in registry
1777
1778M bus/registry.c
1779M src/ibuscomponent.c
1780
1781commit e74ec5611e26b509c990024e919de21ec33976b5
1782Author: Peng Huang <shawn.p.huang@gmail.com>
1783Date: 2010-04-15 17:06:55 +0800
1784
1785 Update or.po from Manoj Giri <mgiri@redhat.com>
1786
1787M po/or.po
1788
1789commit b69765ccf8417413678ad35e3e41710e8ed6d37b
1790Author: Peng Huang <shawn.p.huang@gmail.com>
1791Date: 2010-04-12 06:42:13 +0800
1792
1793 Fix some mistakes
1794
1795M po/zh_CN.po
1796
1797commit 473da4136f36dc344033723b8217a7b3003b6827
1798Author: Peng Huang <shawn.p.huang@gmail.com>
1799Date: 2010-04-11 20:48:59 +0800
1800
1801 Fix mistakes in zh_CN.po
1802
1803M po/zh_CN.po
1804
1805commit 6d7f49c57e7013dabcd88c810eaa2fc49f94c87d
1806Author: Peng Huang <shawn.p.huang@gmail.com>
1807Date: 2010-04-11 17:48:49 +0800
1808
1809 Do not hardcode iso-codes anymore
1810
1811M configure.ac
1812M ibus/_config.py.in
1813M ibus/lang.py
1814
1815commit 064eb48804f34f1c2249d93b5df4b129d536febd
1816Author: Peng Huang <shawn.p.huang@gmail.com>
1817Date: 2010-04-11 17:04:19 +0800
1818
1819 Fix build warnings
1820
1821M src/test-bus.c
1822
1823commit 3b2f45a9abeffebdb4f583ce6ddfed674e74b4c6
1824Author: Peng Huang <shawn.p.huang@gmail.com>
1825Date: 2010-04-11 17:02:55 +0800
1826
1827 Add X11_CFLAGS and X11_LIBS
1828
1829M client/x11/Makefile.am
1830M util/IMdkit/Makefile.am
1831
1832commit 292c62c32e8e71383fafe09881c2ff247d460bb7
1833Author: Peng Huang <shawn.p.huang@gmail.com>
1834Date: 2010-04-11 16:41:03 +0800
1835
1836 Fix make distcheck errors.
1837
1838M Makefile.am
1839M configure.ac
1840M gconf/Makefile.am
1841M ibus/Makefile.am
1842M ibus/interface/Makefile.am
1843M po/POTFILES.in
1844M po/ar.po
1845M po/as.po
1846M po/bn_IN.po
1847M po/ca.po
1848M po/da.po
1849M po/de.po
1850M po/es.po
1851M po/fr.po
1852M po/gu.po
1853M po/hi.po
1854M po/hu.po
1855M po/it.po
1856M po/ja.po
1857M po/kn.po
1858M po/ko.po
1859M po/ml.po
1860M po/or.po
1861M po/pa.po
1862M po/pl.po
1863M po/ru.po
1864M po/sr.po
1865M po/sr@latin.po
1866M po/ta.po
1867M po/te.po
1868M po/vi.po
1869M po/zh_CN.po
1870M po/zh_HK.po
1871M po/zh_TW.po
1872M setup/Makefile.am
1873M src/test-bus.c
1874M ui/gtk/Makefile.am
1875
1876commit 271f02d9ee09477f61dcec43196c52768665f062
1877Author: Peng Huang <shawn.p.huang@gmail.com>
1878Date: 2010-04-11 11:39:48 +0800
1879
1880 Use = in shell test expression
1881
1882M configure.ac
1883
1884commit 4d791dd6846f7610c0797f508d9760df49c710dd
1885Author: Peng Huang <shawn.p.huang@gmail.com>
1886Date: 2010-04-10 07:15:04 +0800
1887
1888 Update es.po from daniel cabrera <h.daniel.cabrera@gmail.com>
1889
1890M po/es.po
1891
1892commit eee4f66a4557dfb825b1ba3dac1cf021699d4e5d
1893Author: Peng Huang <shawn.p.huang@gmail.com>
1894Date: 2010-04-09 18:44:35 +0800
1895
1896 Update mr.po from sandeep shedmake <sandeep.shedmake@gmail.com>
1897
1898M po/mr.po
1899
1900commit c1697ada529e5cf2dcf8c6292f6e3bef6ccbb5b2
1901Author: Peng Huang <shawn.p.huang@gmail.com>
1902Date: 2010-04-09 12:01:19 +0800
1903
1904 Fix two build warnings
1905
1906M bus/registry.c
1907M src/ibusbus.c
1908
1909commit 616c07538b3ea8cf0d5979bb4a22afa8e9d9220a
1910Author: Peng Huang <shawn.p.huang@gmail.com>
1911Date: 2010-04-09 11:30:50 +0800
1912
1913 Add some git targets
1914
1915M Makefile.am
1916
1917commit 39bf9044019b342380c32986c12ffc5a41ac29f3
1918Author: Peng Huang <shawn.p.huang@gmail.com>
1919Date: 2010-04-09 11:23:42 +0800
1920
1921 Update some strings and po files.
1922
1923M data/ibus.schemas.in
1924M po/ar.po
1925M po/as.po
1926M po/bn_IN.po
1927M po/ca.po
1928M po/da.po
1929M po/de.po
1930M po/es.po
1931M po/fr.po
1932M po/gu.po
1933M po/hi.po
1934M po/hu.po
1935M po/it.po
1936M po/ja.po
1937M po/kn.po
1938M po/ko.po
1939M po/ml.po
1940M po/mr.po
1941M po/or.po
1942M po/pa.po
1943M po/pl.po
1944M po/ru.po
1945M po/sr.po
1946M po/sr@latin.po
1947M po/ta.po
1948M po/te.po
1949M po/vi.po
1950M po/zh_CN.po
1951M po/zh_HK.po
1952M po/zh_TW.po
1953M setup/setup.ui
1954M ui/gtk/languagebar.py
1955
1956commit 1dfaf677e210452056569ccfb0d47ef236771254
1957Author: Peng Huang <shawn.p.huang@gmail.com>
1958Date: 2010-04-09 11:05:57 +0800
1959
1960 Update ru.po from Yulia Poyarkova <yulia.poyarkova@redhat.com>
1961
1962M po/ru.po
1963
1964commit f7fe659fc8bd974fb609d66784e301cf3efca590
1965Author: Peng Huang <shawn.p.huang@gmail.com>
1966Date: 2010-04-09 09:27:57 +0800
1967
1968 Fix AM_CONDITIONAL error in configure.ac
1969
1970M configure.ac
1971
1972commit 8db336807712dba41cbf3de37ae87a3fb084d39e
1973Author: fujiwarat <takao.fujiwara1@gmail.com>
1974Date: 2010-04-08 18:40:54 +0900
1975
1976 Narrow the width of ibus-setup for ja
1977
1978M setup/setup.ui
1979
1980commit ff8cdb6f36a6f1024c3295ca75be6c444209d407
1981Author: Peng Huang <shawn.p.huang@gmail.com>
1982Date: 2010-04-08 17:47:31 +0800
1983
1984 Clear the code for preedit text mode
1985
1986M bus/engineproxy.c
1987M bus/engineproxy.h
1988M bus/inputcontext.c
1989M bus/inputcontext.h
1990M src/ibusmarshalers.list
1991
1992commit e4d02bb966788291168e51225aaeab24f80ff424
1993Author: fujiwarat <takao.fujiwara1@gmail.com>
1994Date: 2010-04-08 16:09:00 +0900
1995
1996 Commit preedit text when bus_input_context_disable is called.
1997
1998M bus/inputcontext.c
1999
2000commit 56968f1b9560298667d95908f2773ddec2c04c2a
2001Author: Peng Huang <shawn.p.huang@gmail.com>
2002Date: 2010-04-08 11:10:02 +0800
2003
2004 Try to create dir $(HOME)/.config/ibus/bus every time to avoid apps wake
2005 up once per second.
2006
2007M src/ibusbus.c
2008M src/ibusshare.c
2009M src/ibusshare.h
2010
2011commit 413afeb66e23acf06ffd8819b74895582c8d68a7
2012Author: Peng Huang <shawn.p.huang@gmail.com>
2013Date: 2010-04-08 10:37:10 +0800
2014
2015 Insensitive 'Turn off input methon' menu item if ic is disabled already.
2016
2017M ui/gtk/panel.py
2018
2019commit 619283cc93725cfbfff598013671da0e6a2c3728
2020Author: Peng Huang <shawn.p.huang@gmail.com>
2021Date: 2010-03-31 17:48:45 +0800
2022
2023 Update pa.po from Jaswinder Singh <jsingh@redhat.com>
2024
2025M po/pa.po
2026
2027commit fc59bca7eb6606abac94ffa5a3b4638edf87b22b
2028Author: Peng Huang <shawn.p.huang@gmail.com>
2029Date: 2010-03-31 12:26:40 +0800
2030
2031 Update po files.
2032
2033M po/ar.po
2034M po/as.po
2035M po/bn_IN.po
2036M po/ca.po
2037M po/da.po
2038M po/de.po
2039M po/es.po
2040M po/fr.po
2041M po/gu.po
2042M po/hi.po
2043M po/hu.po
2044M po/it.po
2045M po/ja.po
2046M po/kn.po
2047M po/ml.po
2048M po/mr.po
2049M po/or.po
2050M po/pa.po
2051M po/pl.po
2052M po/ru.po
2053M po/sr.po
2054M po/sr@latin.po
2055M po/ta.po
2056M po/te.po
2057M po/vi.po
2058M po/zh_CN.po
2059M po/zh_HK.po
2060M po/zh_TW.po
2061
2062commit dc505c75ae1eb182a0376b959ce4330628f06b54
2063Author: Peng Huang <shawn.p.huang@gmail.com>
2064Date: 2010-03-31 12:26:24 +0800
2065
2066 Update ko.po from Hyunsok Oh <hoh@redhat.com>
2067
2068M po/ko.po
2069
2070commit 11a4055f2050019266516c4b83b7c671144189e4
2071Author: Peng Huang <shawn.p.huang@gmail.com>
2072Date: 2010-03-30 12:55:27 +0800
2073
2074 Release 1.3.1
2075
2076M configure.ac
2077
2078commit 06b8aeabdbd347396ea5526abca70229cb2a47e9
2079Merge: 39782a6 2b25925
2080Author: Peng Huang <shawn.p.huang@gmail.com>
2081Date: 2010-03-30 12:49:27 +0800
2082
2083 Merge remote branch 'origin/master' into 1.3.y
2084
2085commit 2b25925df7c193731afeb43fbee777a2fa9c2d13
2086Author: Peng Huang <shawn.p.huang@gmail.com>
2087Date: 2010-03-29 15:28:26 +0800
2088
2089 Add configure option --disable-gconf
2090
2091M Makefile.am
2092M configure.ac
2093
2094commit 39782a6a4ae6221868e2430d9085dacba98b8548
2095Author: Peng Huang <shawn.p.huang@gmail.com>
2096Date: 2010-03-26 15:32:23 +0800
2097
2098 Set lookup table's orientation before updating candidates.
2099
2100M ui/gtk/candidatepanel.py
2101
2102commit 24e6c7643157440d3ad78fb07e140cd305683f35
2103Author: Peng Huang <shawn.p.huang@gmail.com>
2104Date: 2010-03-26 09:24:18 +0800
2105
2106 Update from "Runa Bhattacharjee" <runab@redhat.com>
2107
2108M po/bn_IN.po
2109
2110commit 3154257e4335e92e47f7305f6ce43c2167a4abbd
2111Author: Peng Huang <shawn.p.huang@gmail.com>
2112Date: 2010-03-24 19:28:32 +0800
2113
2114 Update ml.po from Ani Peter <apeter@redhat.com>
2115
2116M po/ml.po
2117
2118commit 487546090ad6ccff09b17e6d42395dc8ea7198bd
2119Author: Peng Huang <shawn.p.huang@gmail.com>
2120Date: 2010-03-26 15:32:23 +0800
2121
2122 Set lookup table's orientation before updating candidates.
2123
2124M ui/gtk/candidatepanel.py
2125
2126commit f509f658aa24b50426eaa0b34850a9153e6a7c63
2127Author: Peng Huang <shawn.p.huang@gmail.com>
2128Date: 2010-03-23 14:41:50 +0800
2129
2130 Update gu.po from Sweta Kothari <swkothar@redhat.com>
2131
2132M po/gu.po
2133
2134commit b84c2405f6fcd22576950cebe1d56ab7a06bc85e
2135Author: Peng Huang <shawn.p.huang@gmail.com>
2136Date: 2010-03-26 09:24:18 +0800
2137
2138 Update from "Runa Bhattacharjee" <runab@redhat.com>
2139
2140M po/bn_IN.po
2141
2142commit 86e48f31bce0faa4ef8310b63a501b2bfc2f2de5
2143Author: Peng Huang <shawn.p.huang@gmail.com>
2144Date: 2010-03-25 10:29:44 +0800
2145
2146 Always setup ibus_datedisplay
2147
2148M configure.ac
2149
2150commit e321f2844feeaa303f26b0072c508db26e065cbf
2151Author: Peng Huang <shawn.p.huang@gmail.com>
2152Date: 2010-03-25 10:29:44 +0800
2153
2154 Always setup ibus_datedisplay
2155
2156M configure.ac
2157
2158commit 70e975d44532ff706fb563c4d93afa66afeb4862
2159Author: Peng Huang <shawn.p.huang@gmail.com>
2160Date: 2010-03-24 19:28:32 +0800
2161
2162 Update ml.po from Ani Peter <apeter@redhat.com>
2163
2164M po/ml.po
2165
2166commit 468f7cca1e53e6db3b2b2ef002010bc5c334a9da
2167Author: Peng Huang <shawn.p.huang@gmail.com>
2168Date: 2010-03-23 17:10:02 +0800
2169
2170 Make make output look's better
2171
2172M docs/reference/ibus/Makefile.am
2173M gconf/Makefile.am
2174M src/Makefile.am
2175M ui/gtk/Makefile.am
2176
2177commit 69e4a62041dbf8f78bc73a58ebd38a4ab78af72d
2178Author: Peng Huang <shawn.p.huang@gmail.com>
2179Date: 2010-03-23 16:30:19 +0800
2180
2181 Refine coding style and change source file header.
2182
2183M src/ibusinternal.c
2184
2185commit 8e2e49dd0a5a4560f10fb13fa660c28345d17195
2186Author: Peng Huang <shawn.p.huang@gmail.com>
2187Date: 2010-03-23 15:02:33 +0800
2188
2189 Add configure --disable-python to disable build for python modules.
2190
2191M Makefile.am
2192M configure.ac
2193
2194commit 1217396567a9b8dbbdf9efecb7c0550df57371ae
2195Author: Peng Huang <shawn.p.huang@gmail.com>
2196Date: 2010-03-23 14:41:50 +0800
2197
2198 Update gu.po from Sweta Kothari <swkothar@redhat.com>
2199
2200M po/gu.po
2201
2202commit 219adb293a275b4e02e21e7bc2111a0706ad99a2
2203Author: Peng Huang <shawn.p.huang@gmail.com>
2204Date: 2010-03-22 21:21:36 +0800
2205
2206 Add AM_SILENT_RULES([yes])
2207
2208M configure.ac
2209
2210commit a0988fc77bf1ba472c7b75b0321f1550f3e824c7
2211Merge: 6af061d 1d01af4
2212Author: Peng Huang <shawn.p.huang@gmail.com>
2213Date: 2010-03-22 16:12:00 +0800
2214
2215 Merge branch '1.3.y'
2216
2217commit 1d01af4bba89868b5803a20f6d6c77474dabfec2
2218Author: Peng Huang <shawn.p.huang@gmail.com>
2219Date: 2010-03-22 16:11:37 +0800
2220
2221 Does not check glib micro version anymore.
2222
2223M client/gtk2/ibusim.c
2224
2225commit 6af061df3987cf8f50870f28a6666dbd24d6e0b2
2226Author: Peng Huang <shawn.p.huang@gmail.com>
2227Date: 2010-03-22 10:22:53 +0800
2228
2229 Set release to 0
2230
2231M configure.ac
2232
2233commit 4e4d859a55236b670245a734c4a9a873d37e9b15
2234Author: Peng Huang <shawn.p.huang@gmail.com>
2235Date: 2010-03-22 10:20:41 +0800
2236
2237 Bump version to 1.3.0
2238
2239M configure.ac
2240
2241commit f41d86de36a38356d8ae3f1f9ee1035ef786545e
2242Author: Peng Huang <shawn.p.huang@gmail.com>
2243Date: 2010-03-22 10:07:32 +0800
2244
2245 Change version number in api document.
2246
2247M docs/reference/ibus/ibus-docs.sgml
2248
2249commit 0f2f4b7a8b30470b6f1c5e019e0af6de28e36dd1
2250Author: Peng Huang <shawn.p.huang@gmail.com>
2251Date: 2010-03-22 09:52:14 +0800
2252
2253 ibus setup will execute ibus-daemon with --xim
2254
2255M setup/main.py
2256
2257commit f74809323895668329088ad2e627a62e90eb8b99
2258Author: Peng Huang <shawn.p.huang@gmail.com>
2259Date: 2010-03-22 09:20:15 +0800
2260
2261 Fix deb build problem.
2262
2263M debian/libibus1.install
2264
2265commit 4a57966042e142a643bd5e9b7939fa8880d0a6c6
2266Author: Peng Huang <shawn.p.huang@gmail.com>
2267Date: 2010-03-19 11:06:45 +0800
2268
2269 Avoid crash if the engine is destroyed
2270
2271M bus/ibusimpl.c
2272M bus/inputcontext.c
2273
2274commit ebc47d54bf5be8bbbaf2ec523ad7f82abf44f0c8
2275Author: Peng Huang <shawn.p.huang@gmail.com>
2276Date: 2010-03-17 13:50:22 +0800
2277
2278 Always put setup dialog in center of screen.
2279
2280M setup/setup.ui
2281
2282commit 0211cdaa80721aac1aade8c76c90ace9c9ccce3d
2283Author: Peng Huang <shawn.p.huang@gmail.com>
2284Date: 2010-03-16 15:45:00 +0800
2285
2286 Call ibus_engine_update_preedit_text_with_mode in ibus_engine_update_preedit_text
2287
2288M src/ibusengine.c
2289
2290commit 8ee38642d8e0b861cf03d60374a3462de201d16a
2291Author: fujiwarat <takao.fujiwara1@gmail.com>
2292Date: 2010-03-16 16:33:26 +0900
2293
2294 Add ibus_engine_update_preedit_text_with_mode
2295
2296M bus/engineproxy.c
2297M bus/engineproxy.h
2298M bus/inputcontext.c
2299M ibus/common.py
2300M ibus/engine.py
2301M ibus/interface/iengine.py
2302M src/ibusengine.c
2303M src/ibusengine.h
2304M src/ibustypes.h
2305
2306commit 701265d6db597388b7ad7dfa697aa55de29ebd08
2307Author: Peng Huang <shawn.p.huang@gmail.com>
2308Date: 2010-03-16 10:32:06 +0800
2309
2310 Add Categories in ibus.desktop
2311
2312M bus/ibus.desktop.in
2313
2314commit 8ba5979f404725b684a005ab747c0fbf5baced87
2315Author: fujiwarat <takao.fujiwara1@gmail.com>
2316Date: 2010-03-12 10:55:34 +0900
2317
2318 Update ja.po
2319
2320M po/ja.po
2321
2322commit 43b68f70dc10a493b011bf106a40ce3318dab9cf
2323Author: Peng Huang <shawn.p.huang@gmail.com>
2324Date: 2010-03-10 10:24:01 +0800
2325
2326 Update version in document
2327
2328M docs/reference/ibus/ibus-docs.sgml
2329
2330commit 53a04bfb66c316df74132c0c1bcc1f97cbb26788
2331Author: Peng Huang <shawn.p.huang@gmail.com>
2332Date: 2010-02-28 10:22:51 +0800
2333
2334 Update zh_TW.po from Tseng, Cheng-Chia <pswo10680@gmail.com>
2335
2336M po/zh_TW.po
2337
2338commit 314eb4a1a31fd7fc1bd6769c7f7b92afe6622e00
2339Author: Peng Huang <shawn.p.huang@gmail.com>
2340Date: 2010-02-28 10:19:16 +0800
2341
2342 Update pl.po from Piotr DrÄ…g <piotrdrag@gmail.com>
2343
2344M po/pl.po
2345
2346commit be47cfcceb6352001877e79d530514baa299d08e
2347Author: Peng Huang <shawn.p.huang@gmail.com>
2348Date: 2010-02-24 16:07:06 +0800
2349
2350 Remove unused code.
2351
2352M ui/gtk/panel.py
2353
2354commit f6aee0a3605f44336f881a3d133d176e6f890518
2355Author: Peng Huang <shawn.p.huang@gmail.com>
2356Date: 2010-02-24 09:57:41 +0800
2357
2358 Refine inline document
2359
2360M src/ibusproxy.h
2361
2362commit 12d98ba000f29027b2d33cdef719906bbcb0e0b8
2363Merge: 80077fe 5454785
2364Author: Peng Huang <shawn.p.huang@gmail.com>
2365Date: 2010-02-23 13:27:29 +0800
2366
2367 Merge remote branch 'epico/master'
2368
2369commit 80077fe1eae883bf5ae12e38a216dd1634c2db01
2370Author: Peng Huang <shawn.p.huang@gmail.com>
2371Date: 2010-02-23 13:19:57 +0800
2372
2373 Fix a typo in API document
2374
2375M src/ibusproxy.h
2376
2377commit 54547855ee226bab4e7593acbc670496202013a7
2378Author: Peng Wu <epico@dhcp-65-116.nay.redhat.com>
2379Date: 2010-02-23 12:41:37 +0800
2380
2381 change gtk-im client name.
2382
2383M client/gtk2/ibusimcontext.c
2384
2385commit b6567c635ccad90f3d669577f51074530f33c02d
2386Author: Peng Huang <shawn.p.huang@gmail.com>
2387Date: 2010-02-23 08:10:28 +0800
2388
2389 Remove the occurence of dbus_message_iter_get_array_len() due to its obsolescence.
2390
2391 In Header <dbus/dbus-message.h>
2392 #ifndef DBUS_DISABLE_DEPRECATED
2393 /* This function returns the wire protocol size of the array in bytes,
2394 * you do not want to know that probably
2395 */
2396 DBUS_DEPRECATED int dbus_message_iter_get_array_len (DBusMessageIter *iter);
2397 #endif
2398
2399M src/ibusbus.c
2400
2401commit 6a546df559a59ba02ff0c59fa47bea8417f63355
2402Author: Peng Huang <shawn.p.huang@gmail.com>
2403Date: 2010-02-19 13:51:53 +0800
2404
2405 Use G_N_ELEMENTS in for loop
2406
2407M bus/ibusimpl.c
2408M bus/panelproxy.c
2409M src/ibuspanelservice.c
2410
2411commit 5380820cb5da1c63799115141aae55e32d5e9139
2412Author: Peng Huang <shawn.p.huang@gmail.com>
2413Date: 2010-02-15 19:39:17 +0800
2414
2415 Remove --rebuild-sections
2416
2417M docs/reference/ibus/Makefile.am
2418
2419commit dabf52c07a80e04f12ad72dd972558130f164f68
2420Author: Peng Huang <shawn.p.huang@gmail.com>
2421Date: 2010-02-15 19:36:57 +0800
2422
2423 Fix cursor location problem.
2424
2425M client/gtk2/ibusimcontext.c
2426
2427commit 200de0a7c338149afac26fcba46949103f1f70ba
2428Author: Peng Huang <shawn.p.huang@gmail.com>
2429Date: 2010-02-15 17:43:45 +0800
2430
2431 Close child process in IBusComponent.Destroy
2432
2433M src/ibuscomponent.c
2434M src/ibuscomponent.h
2435
2436commit 173b2e830201e837185aa06df9394ab0bc0cea5e
2437Author: Peng Wu <epico@dhcp-65-116.nay.redhat.com>
2438Date: 2010-02-11 11:12:11 +0800
2439
2440 update zh_CN.po for embedding preedit.
2441
2442M po/zh_CN.po
2443
2444commit fb8f42382426f11a6bf0b52f0eb4b8775c4afc56
2445Author: Peng Huang <shawn.p.huang@gmail.com>
2446Date: 2010-02-11 10:37:53 +0800
2447
2448 Change the default setting of use_global_engine, and remove some unused
2449 code.
2450
2451M bus/ibusimpl.c
2452M bus/ibusimpl.h
2453M data/ibus.schemas.in
2454
2455commit ef68517390c94d254458097ee3c6bd3849e93b4f
2456Author: Peng Huang <shawn.p.huang@gmail.com>
2457Date: 2010-02-11 10:24:51 +0800
2458
2459 Upddate es.po from daniel cabrera <logan@fedoraproject.org>
2460
2461M po/es.po
2462
2463commit 4e8235543be28d8e4c06e7af236da3aceed85839
2464Author: Peng Huang <shawn.p.huang@gmail.com>
2465Date: 2010-02-10 14:52:01 +0800
2466
2467 Make sure the engine was not destroyed before real set the global
2468 engine.
2469
2470M bus/ibusimpl.c
2471
2472commit 31d31a736d818c2ed04fdc7f60b64ccc96f6b723
2473Author: fujiwarat <takao.fujiwara1@gmail.com>
2474Date: 2010-02-10 12:06:24 +0900
2475
2476 Fix default use_system_keyboard_layout
2477
2478M setup/main.py
2479
2480commit 115eedaa73e1880ac10991fbdc7dfa7ff0fb29e4
2481Author: Peng Huang <shawn.p.huang@gmail.com>
2482Date: 2010-02-09 17:07:49 +0800
2483
2484 simplify preedit condition
2485
2486M bus/inputcontext.c
2487
2488commit ea9b9f21ae1a29224169e8f95f4a5e7fbd8c83e2
2489Author: Peng Wu <epico@dhcp-65-116.nay.redhat.com>
2490Date: 2010-02-09 10:26:20 +0800
2491
2492 Add embed_preedit support to ibus.
2493
2494M bus/ibusimpl.c
2495M bus/ibusimpl.h
2496M bus/inputcontext.c
2497M data/ibus.schemas.in
2498M setup/main.py
2499M setup/setup.ui
2500
2501commit 51f8f4fb734292e568650464c2ba645bed21d988
2502Author: Peng Huang <shawn.p.huang@gmail.com>
2503Date: 2010-02-05 08:08:28 +0800
2504
2505 Fix gtk-doc problems.
2506
2507M docs/reference/ibus/.gitignore
2508M docs/reference/ibus/Makefile.am
2509A docs/reference/ibus/ibus-sections.txt
2510M src/ibuscomponent.h
2511M src/ibusconfig.h
2512M src/ibusconnection.h
2513M src/ibusengine.h
2514M src/ibusenginedesc.h
2515M src/ibusfactory.h
2516M src/ibusinternal.h
2517M src/ibuskeymap.h
2518M src/ibuskeysyms.h
2519M src/ibusobject.h
2520M src/ibuspendingcall.h
2521M src/ibusproperty.h
2522M src/ibusproplist.h
2523
2524commit 43e5004f54dc4dc3e1b2cad4836eab0d8357501d
2525Author: Peng Wu <epico@dhcp-65-116.nay.redhat.com>
2526Date: 2010-02-03 11:41:39 +0800
2527
2528 fixes a typo.
2529
2530M bus/ibusimpl.c
2531
2532commit d6bbeabf9d9e77a19a8f310bcf2573a24037096f
2533Author: Peng Huang <shawn.p.huang@gmail.com>
2534Date: 2010-02-03 07:29:51 +0800
2535
2536 Update es.po from Daniel Cabrera
2537
2538M po/es.po
2539
2540commit 85faf60e2981ce49bc88a3ba15ac81f919f370f4
2541Author: Peng Huang <shawn.p.huang@gmail.com>
2542Date: 2010-02-02 10:21:20 +0800
2543
2544 Add property connection and fix crash in IBusFactory
2545
2546M src/ibusfactory.c
2547
2548commit 05ea126837cd4b879a2c0ada29f0f1db8fa9172d
2549Author: Peng Huang <shawn.p.huang@gmail.com>
2550Date: 2010-02-02 08:40:56 +0800
2551
2552 Remove duplication g_object_ref in ibus_keymap_get
2553
2554M src/ibuskeymap.c
2555
2556commit 813d0c5feb5d5750057ea92631e999bcb6c502bb
2557Author: Peng Huang <shawn.p.huang@gmail.com>
2558Date: 2010-02-02 08:25:57 +0800
2559
2560 Refine ibus_keymap_get
2561
2562M src/ibuskeymap.c
2563
2564commit 4966dfdd9637dc1e18f00ae9b5e4248de863d56f
2565Author: Peng Huang <shawn.p.huang@gmail.com>
2566Date: 2010-02-02 08:20:29 +0800
2567
2568 Refine ibus_connection_open
2569
2570M src/ibusconnection.c
2571
2572commit 71e91075c4ce4e11867cba84939b668112bb35eb
2573Author: Peng Huang <shawn.p.huang@gmail.com>
2574Date: 2010-02-02 08:15:39 +0800
2575
2576 Does not increase references in ibus_keymap_get
2577
2578M src/ibuskeymap.c
2579
2580commit d7d8096d71073e30652774efffe45a92d5178c3d
2581Author: Peng Huang <shawn.p.huang@gmail.com>
2582Date: 2010-02-01 18:23:11 +0800
2583
2584 Fix a type in comment
2585
2586M bus/inputcontext.c
2587
2588commit d11c577d31ab92e859cf6e01ae24105f6fb12d3c
2589Author: Peng Huang <shawn.p.huang@gmail.com>
2590Date: 2010-02-01 17:40:30 +0800
2591
2592 Update so version in common.py
2593
2594M ibus/common.py
2595
2596commit 9befb29b0e1a356b069ebc80cfe8813179bf5914
2597Author: Peng Huang <shawn.p.huang@gmail.com>
2598Date: 2010-02-01 15:09:14 +0800
2599
2600 Bump version and so version
2601
2602M configure.ac
2603
2604commit ea5f939ccb49c58af28337a707e7e81e9a458b55
2605Author: Peng Huang <shawn.p.huang@gmail.com>
2606Date: 2010-02-01 13:02:28 +0800
2607
2608 Add G_GNUC_DEPRECATED mark on ibus_keymap_new
2609
2610M src/ibuskeymap.c
2611M src/ibuskeymap.h
2612
2613commit 3aec8b5cc40ac1552472aa23468f54093fb64765
2614Author: Peng Huang <shawn.p.huang@gmail.com>
2615Date: 2010-01-31 11:03:10 +0800
2616
2617 Workaround for cursor following problem in some Java applications.
2618
2619M ui/gtk/candidatepanel.py
2620
2621commit f73d06cc030e0ecef761cd0862deccecfce2baa9
2622Author: Peng Huang <shawn.p.huang@gmail.com>
2623Date: 2010-01-31 09:21:21 +0800
2624
2625 Workaround for autohide problem with metacity
2626
2627M ui/gtk/languagebar.py
2628
2629commit 7b7e338cf52578a24b6f50fbcfd80e1ced4dce1d
2630Author: Peng Huang <shawn.p.huang@gmail.com>
2631Date: 2010-01-31 09:19:13 +0800
2632
2633 Update fr.po from julroy67
2634
2635M po/fr.po
2636
2637commit 44ef7c2035502f17c8bfb608d2d8c4eb672adc27
2638Author: Peng Huang <shawn.p.huang@gmail.com>
2639Date: 2010-01-30 23:19:32 +0800
2640
2641 Use G_DEFINE_TYPE to simplify code.
2642
2643M bus/connection.c
2644M bus/dbusimpl.c
2645M bus/engineproxy.c
2646M bus/factoryproxy.c
2647M bus/ibusimpl.c
2648M bus/inputcontext.c
2649M bus/matchrule.c
2650M bus/registry.c
2651M bus/server.c
2652M src/ibusattribute.c
2653M src/ibusattrlist.c
2654M src/ibusbus.c
2655M src/ibuscomponent.c
2656M src/ibusconnection.c
2657M src/ibusengine.c
2658M src/ibusenginedesc.c
2659M src/ibusfactory.c
2660M src/ibusinputcontext.c
2661M src/ibuskeymap.c
2662M src/ibuslookuptable.c
2663M src/ibusobject.c
2664M src/ibusobservedpath.c
2665M src/ibuspanelservice.c
2666M src/ibusproperty.c
2667M src/ibusproplist.c
2668M src/ibusproxy.c
2669M src/ibusserializable.c
2670M src/ibusserver.c
2671M src/ibusservice.c
2672M src/ibustext.c
2673
2674commit d48116864621e93072b4fb9ff60198f27bd201c5
2675Author: Peng Huang <shawn.p.huang@gmail.com>
2676Date: 2010-01-30 22:22:30 +0800
2677
2678 Refine comment in configure.ac
2679
2680M configure.ac
2681
2682commit 9e1ffbf2b3b4d43d4f299db73068875bda6846cc
2683Author: Peng Huang <shawn.p.huang@gmail.com>
2684Date: 2010-01-28 16:06:30 +0800
2685
2686 Fix some problems of sharing global engine among contexts.
2687
2688M bus/ibusimpl.c
2689
2690commit c4f538017f8e1589c204688c2a4e20450db399a6
2691Author: Peng Huang <shawn.p.huang@gmail.com>
2692Date: 2010-01-28 06:41:58 +0800
2693
2694 Attach/Detach global engine when switch focus.
2695
2696M bus/engineproxy.c
2697M bus/engineproxy.h
2698M bus/ibusimpl.c
2699M bus/inputcontext.c
2700
2701commit 85c107194f3f99be7ad5bbd986c71abc71ba6975
2702Author: Peng Huang <shawn.p.huang@gmail.com>
2703Date: 2010-01-27 17:11:59 +0800
2704
2705 Add global engine in setup UI from Su Zhe.
2706
2707M data/ibus.schemas.in
2708M po/ar.po
2709M po/as.po
2710M po/bn_IN.po
2711M po/ca.po
2712M po/da.po
2713M po/de.po
2714M po/es.po
2715M po/fr.po
2716M po/gu.po
2717M po/hi.po
2718M po/hu.po
2719M po/it.po
2720M po/ja.po
2721M po/kn.po
2722M po/ko.po
2723M po/ml.po
2724M po/mr.po
2725M po/or.po
2726M po/pa.po
2727M po/pl.po
2728M po/ru.po
2729M po/sr.po
2730M po/sr@latin.po
2731M po/ta.po
2732M po/te.po
2733M po/vi.po
2734M po/zh_CN.po
2735M po/zh_HK.po
2736M po/zh_TW.po
2737M setup/main.py
2738M setup/setup.ui
2739
2740commit cb216cedd6ee92c18384eded25766dee47d941a1
2741Author: Peng Huang <shawn.p.huang@gmail.com>
2742Date: 2010-01-27 17:09:15 +0800
2743
2744 Support share global engine in all input context from Su Zhe.
2745
2746M bus/engineproxy.c
2747M bus/engineproxy.h
2748M bus/ibusimpl.c
2749M bus/ibusimpl.h
2750M bus/inputcontext.c
2751M bus/inputcontext.h
2752
2753commit 501b24ed272993838d7c774275feb9a1d2efb403
2754Author: Peng Huang <phuang@phuang-laptop.(none)>
2755Date: 2010-01-30 08:27:05 +0800
2756
2757 Fix a typo
2758
2759M debian/changelog
2760
2761commit cda6b25a135f964304aa328f0cb3bad473d9cac6
2762Author: Peng Huang <phuang@phuang-laptop.(none)>
2763Date: 2010-01-30 08:12:54 +0800
2764
2765 Update debian pacakge scripts
2766
2767M debian/changelog
2768M debian/libibus1.symbols
2769
2770commit 90a9b33c336dcd067b9289de11f5f33c5bde2c19
2771Merge: b873dec 80f5d32
2772Author: Peng Huang <phuang@phuang-laptop.(none)>
2773Date: 2010-01-29 21:15:20 +0800
2774
2775 Merge branch 'G_DEFINE_TYPE'
2776
2777commit b873dec849e758dc376ad2a5588c6b3fefd6daa4
2778Author: Peng Huang <phuang@phuang-laptop.(none)>
2779Date: 2010-01-29 21:07:43 +0800
2780
2781 Refine API document of IBusInputContext
2782
2783M src/ibusinputcontext.c
2784
2785commit 80f5d32159e53623da82c868304f7bb23e9b1a02
2786Author: Peng Huang <phuang@phuang-laptop.(none)>
2787Date: 2010-01-29 20:48:17 +0800
2788
2789 Use G_DEFINE_TYPE to simplified code.
2790
2791M bus/inputcontext.c
2792M bus/matchrule.c
2793M bus/registry.c
2794M bus/server.c
2795
2796commit f0a7973f66a2031a7a02c65659402d13ed6b689e
2797Author: Peng Huang <phuang@phuang-laptop.(none)>
2798Date: 2010-01-29 20:34:05 +0800
2799
2800 Use G_DEFINE_TYPE to simplified code.
2801
2802M bus/connection.c
2803M bus/dbusimpl.c
2804M bus/engineproxy.c
2805M bus/factoryproxy.c
2806M bus/ibusimpl.c
2807M bus/panelproxy.c
2808
2809commit ba48d22a1441c5b55efd4162b4447acdb65c3c7e
2810Author: Peng Huang <phuang@phuang-laptop.(none)>
2811Date: 2010-01-29 19:58:38 +0800
2812
2813 Fix typo in API document
2814
2815M src/ibusengine.h
2816
2817commit 11099ced762a498d3a805264431a6fe8cf6fd6ac
2818Author: Peng Huang <phuang@phuang-laptop.(none)>
2819Date: 2010-01-29 19:49:44 +0800
2820
2821 Refine API document for IBusEngine
2822
2823M src/ibusengine.h
2824
2825commit 8fd4a54b11c5bf9cd279bebed229d65124969303
2826Author: Peng Huang <shawn.p.huang@gmail.com>
2827Date: 2010-01-28 07:35:22 +0800
2828
2829 Release floating objects in IBusEngine
2830
2831M src/ibusengine.c
2832
2833commit 93726dd3d8eade4c05d0d620110dccc3fc3b95b2
2834Author: Peng Huang <shawn.p.huang@gmail.com>
2835Date: 2010-01-26 21:22:06 +0800
2836
2837 Use GInitiallyUnowned correctly
2838
2839M bus/Makefile.am
2840M bus/dbusimpl.c
2841M bus/engineproxy.c
2842M bus/factoryproxy.c
2843M bus/ibusimpl.c
2844M bus/inputcontext.c
2845M bus/matchrule.c
2846M bus/panelproxy.c
2847M bus/registry.c
2848M client/gtk2/ibusimcontext.c
2849M src/ibusattrlist.c
2850M src/ibuscomponent.c
2851M src/ibusconfigservice.c
2852M src/ibusconnection.c
2853M src/ibusengine.c
2854M src/ibusfactory.c
2855M src/ibusinputcontext.c
2856M src/ibuskeymap.c
2857M src/ibuskeymap.h
2858M src/ibuslookuptable.c
2859M src/ibusobservedpath.c
2860M src/ibuspanelservice.c
2861M src/ibusproperty.c
2862M src/ibusproplist.c
2863M src/ibusproxy.c
2864M src/ibusserver.c
2865M src/ibusservice.c
2866M src/ibustext.c
2867M src/test-keymap.c
2868
2869commit bfdbf9855dea8a53ad47f4cf04f971335a73de9e
2870Author: Peng Huang <shawn.p.huang@gmail.com>
2871Date: 2010-01-28 09:03:31 +0800
2872
2873 Fix a typo.
2874
2875M bus/inputcontext.c
2876M bus/panelproxy.c
2877
2878commit 07f8e8a54ca676f7b0cc8ee489a15044205f280d
2879Author: Peng Huang <shawn.p.huang@gmail.com>
2880Date: 2010-01-28 08:59:35 +0800
2881
2882 Fix typos.
2883
2884M bus/ibusimpl.c
2885M bus/inputcontext.c
2886M bus/panelproxy.c
2887
2888commit 0ba7c1ddc696ea7042657a0084c60a5e2961bfa5
2889Author: Peng Huang <shawn.p.huang@gmail.com>
2890Date: 2010-01-28 08:42:47 +0800
2891
2892 Use G_N_ELEMENTS.
2893
2894M bus/ibusimpl.c
2895M bus/inputcontext.c
2896M bus/panelproxy.c
2897
2898commit 90553c93bb21387b257ce3e36ff8f6bfed521146
2899Merge: 7c842d9 59b2900
2900Author: Peng Huang <shawn.p.huang@gmail.com>
2901Date: 2010-01-27 14:26:02 +0800
2902
2903 Merge branch 'master' of github.com:phuang/ibus
2904
2905commit 7c842d9a3e0db5ce6349b3b5bb003c95db8aa97f
2906Author: Ding-Yi Chen <dingyichentw@yahoo.com>
2907Date: 2010-01-27 10:17:11 +1000
2908
2909 Fix some APIDOC
2910
2911M src/ibusbus.h
2912M src/ibusfactory.h
2913M src/ibusinputcontext.h
2914M src/ibusinternal.h
2915M src/ibusservice.h
2916
2917commit 59b2900f7336082b5690db4195e939b99a009a1f
2918Author: fujiwarat <takao.fujiwara1@gmail.com>
2919Date: 2010-01-26 12:35:16 +0900
2920
2921 Fix destroy about menu item
2922
2923M ui/gtk/languagebar.py
2924
2925commit 0caac1e5fbb85d11b51c01ee8e4f826219faefa4
2926Author: Peng Huang <shawn.p.huang@gmail.com>
2927Date: 2010-01-25 16:20:16 +0800
2928
2929 Show recommended engines with bold font
2930
2931M setup/enginecombobox.py
2932
2933commit 331e34332e9099121cfac689f40f71e3ca98f72b
2934Author: Peng Huang <shawn.p.huang@gmail.com>
2935Date: 2010-01-25 16:19:33 +0800
2936
2937 Only enable engines with rank > 0 at frist time startup
2938
2939M bus/ibusimpl.c
2940
2941commit 482be2ae0b50f423f1d172b4c13dcdad1beafea4
2942Author: Peng Huang <shawn.p.huang@gmail.com>
2943Date: 2010-01-19 16:11:35 +0800
2944
2945 Show properties on systray menu by Fujiwara
2946
2947M setup/setup.ui
2948M ui/gtk/languagebar.py
2949M ui/gtk/panel.py
2950
2951commit 425bd8288079e58314c935a46c5920c3118ac25a
2952Author: Peng Huang <shawn.p.huang@gmail.com>
2953Date: 2010-01-19 13:25:22 +0800
2954
2955 Remove some symbols for debian package.
2956
2957M debian/libibus1.symbols
2958
2959commit ba13596c99ead9f24afd334552f8710edc5cad7e
2960Author: Peng Huang <shawn.p.huang@gmail.com>
2961Date: 2010-01-15 14:56:59 +0800
2962
2963 Unify the help message.
2964
2965M bus/main.c
2966
2967commit dbc992ba0bab3253032fbcd9fc1a477dec80b855
2968Author: Peng Huang <shawn.p.huang@gmail.com>
2969Date: 2010-01-15 14:55:25 +0800
2970
2971 Check argument to avoid crash
2972
2973M gconf/config.c
2974
2975commit 157598a25f7c493313482868af9b800e6951ff14
2976Author: Peng Huang <shawn.p.huang@gmail.com>
2977Date: 2010-01-15 14:35:15 +0800
2978
2979 Fix typo.
2980
2981M ibus/enginedesc.py
2982
2983commit 883bc5ed5ddfd96e0f8a15abc9748f06d2fbd86b
2984Author: Peng Huang <shawn.p.huang@gmail.com>
2985Date: 2010-01-14 08:31:37 +0800
2986
2987 Fix coding style
2988
2989M ui/gtk/candidatepanel.py
2990
2991commit 02ceec9193952243f0e05e3c2a25284600dba9b9
2992Author: Peng Huang <shawn.p.huang@gmail.com>
2993Date: 2010-01-12 21:56:58 +0800
2994
2995 Change Title of IBusAttrList and IBusPropList
2996
2997M src/ibusattrlist.h
2998M src/ibusproplist.h
2999
3000commit 54cc7180226dc93466ba9b69e2bbc5499ca7645b
3001Author: Peng Huang <shawn.p.huang@gmail.com>
3002Date: 2010-01-12 21:46:29 +0800
3003
3004 Fix gtk-doc issues.
3005
3006M docs/reference/ibus/Makefile.am
3007M src/ibusmessage.h
3008M src/ibuspendingcall.h
3009
3010commit c35651093e7e647c64dc2d54e870c4b8ddf6bc8b
3011Author: Peng Huang <shawn.p.huang@gmail.com>
3012Date: 2010-01-12 21:05:02 +0800
3013
3014 Fix gtk-doc problems.
3015
3016M src/ibusattrlist.h
3017M src/ibusobject.h
3018M src/ibusproperty.h
3019M src/ibusproplist.h
3020
3021commit 07becd621cbf54bbc6faddf268a7d6e798ce6d69
3022Author: Peng Huang <shawn.p.huang@gmail.com>
3023Date: 2010-01-12 20:27:11 +0800
3024
3025 Ignore some header files.
3026
3027M docs/reference/ibus/Makefile.am
3028M docs/reference/ibus/ibus-docs.sgml
3029
3030commit 7e3e5d22c637de28cda17d8179b0c4edc80d93aa
3031Author: Peng Huang <shawn.p.huang@gmail.com>
3032Date: 2010-01-12 18:32:56 +0800
3033
3034 Separate IBusProperty and IBusPropList.
3035
3036M src/Makefile.am
3037M src/ibus.h
3038M src/ibusengine.h
3039M src/ibusinputcontext.c
3040M src/ibuspanelservice.h
3041M src/ibusproperty.c
3042M src/ibusproperty.h
3043A src/ibusproplist.c
3044A src/ibusproplist.h
3045
3046commit 6b1acacb23c8bef1fbf34197fb0fcb43774c03c0
3047Author: Peng Huang <shawn.p.huang@gmail.com>
3048Date: 2010-01-12 18:08:42 +0800
3049
3050 include ibusattrlist.h in ibus.h
3051
3052M src/ibus.h
3053
3054commit 75c5ea98a9c67f616a8f252b8eff795ba18c7203
3055Author: Peng Huang <shawn.p.huang@gmail.com>
3056Date: 2010-01-12 18:06:45 +0800
3057
3058 Separate IBusAttribute and IBusAttrList
3059
3060M src/Makefile.am
3061M src/ibusattribute.c
3062M src/ibusattribute.h
3063A src/ibusattrlist.c
3064A src/ibusattrlist.h
3065M src/ibustext.h
3066
3067commit 7e7a45b333ae667e79647842d3e8c3e6412c33d7
3068Author: Peng Huang <shawn.p.huang@gmail.com>
3069Date: 2010-01-12 17:07:21 +0800
3070
3071 Remove Class IBusFactoryInfo
3072
3073M docs/reference/ibus/ibus.types
3074M src/ibusfactory.c
3075M src/ibusfactory.h
3076
3077commit 6de5677aec441c30f52a7b0cf3a573571145b8b4
3078Author: Peng Huang <shawn.p.huang@gmail.com>
3079Date: 2010-01-12 16:27:43 +0800
3080
3081 remove IBusFactoryInfo
3082
3083M src/ibusfactory.c
3084M src/ibusfactory.h
3085
3086commit 8c7c06ecc3932f048a4961a9cce401073e9ee0df
3087Author: Peng Huang <shawn.p.huang@gmail.com>
3088Date: 2010-01-11 14:06:34 +0800
3089
3090 Fix string
3091
3092M po/zh_CN.po
3093
3094commit 70d202a8fa75f3ae246435fe041664cc33623c2c
3095Author: Peng Huang <shawn.p.huang@gmail.com>
3096Date: 2010-01-11 13:26:19 +0800
3097
3098 Update pl.po by Piotr DrÄ…g <piotrdrag@gmail.com>
3099
3100M po/pl.po
3101
3102commit 1df86898b54fcacfa6a14039a3fe46b4cbef1631
3103Author: Peng Huang <shawn.p.huang@gmail.com>
3104Date: 2010-01-10 05:31:40 +0800
3105
3106 Refine coding style
3107
3108M src/ibusconfigservice.c
3109M src/ibusconfigservice.h
3110
3111commit 1cbdea8d5f3183cc51c1d96e57ea9add4efcdfc3
3112Author: Peng Huang <shawn.p.huang@gmail.com>
3113Date: 2010-01-10 05:20:27 +0800
3114
3115 Try Cython
3116
3117M ui/gtk/main.py
3118
3119commit 7f93fe7650a6721aaf8ccecf3803ca00bb7075ff
3120Author: Peng Huang <shawn.p.huang@gmail.com>
3121Date: 2010-01-10 03:29:59 +0800
3122
3123 Update copyright.
3124
3125M Makefile.am
3126M bindings/Makefile.am
3127M bindings/python/Makefile.am
3128M bus/Makefile.am
3129M bus/connection.c
3130M bus/connection.h
3131M bus/dbusimpl.c
3132M bus/dbusimpl.h
3133M bus/engineproxy.c
3134M bus/engineproxy.h
3135M bus/factoryproxy.c
3136M bus/factoryproxy.h
3137M bus/ibusimpl.c
3138M bus/ibusimpl.h
3139M bus/inputcontext.c
3140M bus/inputcontext.h
3141M bus/main.c
3142M bus/matchrule.c
3143M bus/matchrule.h
3144M bus/option.h
3145M bus/panelproxy.c
3146M bus/panelproxy.h
3147M bus/registry.c
3148M bus/registry.h
3149M bus/server.c
3150M bus/server.h
3151M client/Makefile.am
3152M client/gtk2/Makefile.am
3153M client/gtk2/ibusim.c
3154M client/gtk2/ibusimcontext.c
3155M client/gtk2/ibusimcontext.h
3156M client/x11/Makefile.am
3157M client/x11/main.c
3158M configure.ac
3159M data/Makefile.am
3160M data/icons/Makefile.am
3161M data/keymaps/Makefile.am
3162M docs/Makefile.am
3163M docs/reference/Makefile.am
3164M gconf/Makefile.am
3165M ibus/Makefile.am
3166M ibus/__init__.py
3167M ibus/_config.py.in
3168M ibus/_gtk.py
3169M ibus/application.py
3170M ibus/attribute.py
3171M ibus/bus.py
3172M ibus/common.py
3173M ibus/component.py
3174M ibus/config.py
3175M ibus/engine.py
3176M ibus/enginedesc.py
3177M ibus/exception.py
3178M ibus/factory.py
3179M ibus/inputcontext.py
3180M ibus/interface/Makefile.am
3181M ibus/interface/__init__.py
3182M ibus/interface/iconfig.py
3183M ibus/interface/iengine.py
3184M ibus/interface/ienginefactory.py
3185M ibus/interface/iibus.py
3186M ibus/interface/iinputcontext.py
3187M ibus/interface/inotifications.py
3188M ibus/interface/ipanel.py
3189M ibus/lang.py
3190M ibus/lookuptable.py
3191M ibus/modifier.py
3192M ibus/notifications.py
3193M ibus/object.py
3194M ibus/observedpath.py
3195M ibus/panel.py
3196M ibus/property.py
3197M ibus/serializable.py
3198M ibus/text.py
3199M ibus/utility.py
3200M m4/Makefile.am
3201M po/ar.po
3202M po/as.po
3203M po/bn_IN.po
3204M po/ca.po
3205M po/da.po
3206M po/de.po
3207M po/es.po
3208M po/fr.po
3209M po/gu.po
3210M po/hi.po
3211M po/hu.po
3212M po/it.po
3213M po/ja.po
3214M po/kn.po
3215M po/ko.po
3216M po/ml.po
3217M po/mr.po
3218M po/or.po
3219M po/pa.po
3220M po/pl.po
3221M po/ru.po
3222M po/sr.po
3223M po/sr@latin.po
3224M po/ta.po
3225M po/te.po
3226M po/vi.po
3227M po/zh_CN.po
3228M po/zh_HK.po
3229M po/zh_TW.po
3230M setup/Makefile.am
3231M setup/enginecombobox.py
3232M setup/enginetreeview.py
3233M setup/ibus-setup.in
3234M setup/icon.py
3235M setup/keyboardshortcut.py
3236M setup/main.py
3237M src/Makefile.am
3238M src/ibus.h
3239M src/ibusattribute.c
3240M src/ibusattribute.h
3241M src/ibusbus.c
3242M src/ibusbus.h
3243M src/ibuscomponent.c
3244M src/ibuscomponent.h
3245M src/ibusconfig.c
3246M src/ibusconfig.h
3247M src/ibusconfigprivate.h
3248M src/ibusconfigservice.c
3249M src/ibusconfigservice.h
3250M src/ibusconnection.c
3251M src/ibusconnection.h
3252M src/ibusdebug.h
3253M src/ibusengine.c
3254M src/ibusengine.h
3255M src/ibusenginedesc.c
3256M src/ibusenginedesc.h
3257M src/ibuserror.c
3258M src/ibuserror.h
3259M src/ibusfactory.c
3260M src/ibusfactory.h
3261M src/ibushotkey.c
3262M src/ibushotkey.h
3263M src/ibusinputcontext.c
3264M src/ibusinputcontext.h
3265M src/ibusinternal.h
3266M src/ibuskeymap.c
3267M src/ibuskeymap.h
3268M src/ibuskeysyms-update.pl
3269M src/ibuskeysyms.h
3270M src/ibuslookuptable.c
3271M src/ibuslookuptable.h
3272M src/ibusmainloop.c
3273M src/ibusmainloop.h
3274M src/ibusmessage.c
3275M src/ibusmessage.h
3276M src/ibusobject.c
3277M src/ibusobject.h
3278M src/ibusobservedpath.c
3279M src/ibusobservedpath.h
3280M src/ibuspendingcall.c
3281M src/ibuspendingcall.h
3282M src/ibusproperty.c
3283M src/ibusproperty.h
3284M src/ibusproxy.c
3285M src/ibusproxy.h
3286M src/ibusserializable.c
3287M src/ibusserializable.h
3288M src/ibusserver.c
3289M src/ibusserver.h
3290M src/ibusservice.c
3291M src/ibusservice.h
3292M src/ibusshare.c
3293M src/ibusshare.h
3294M src/ibustext.c
3295M src/ibustext.h
3296M src/ibustypes.h
3297M src/ibusversion.h.in
3298M src/ibusxml.c
3299M src/ibusxml.h
3300M ui/Makefile.am
3301M ui/gtk/Makefile.am
3302M ui/gtk/candidatepanel.py
3303M ui/gtk/engineabout.py
3304M ui/gtk/handle.py
3305M ui/gtk/ibus-ui-gtk.in
3306M ui/gtk/icon.py
3307M ui/gtk/languagebar.py
3308M ui/gtk/main.py
3309M ui/gtk/menu.py
3310M ui/gtk/notifications.py
3311M ui/gtk/panel.py
3312M ui/gtk/propitem.py
3313M ui/gtk/toolitem.py
3314M util/IMdkit/Makefile.am
3315M util/Makefile.am
3316
3317commit 344ed80466ddd0be3735bdcc5877cf703efb89c2
3318Author: Peng Huang <shawn.p.huang@gmail.com>
3319Date: 2010-01-09 18:04:14 +0800
3320
3321 Adjust pad to avoid break ABI
3322
3323M src/ibusconfigservice.h
3324
3325commit d61d13cbc8ae7fba461cfde1bc7e256bf9c96c7f
3326Author: Daiki Ueno <ueno@unixuser.org>
3327Date: 2010-01-07 18:06:48 +0900
3328
3329 Add IBusConfigService#unset().
3330
3331 Add a new method unset() to IBusConfigService, which removes existing entry to
3332 a configuration option. This also adds ibus.Config.unset() to the Python API
3333 and ibus_config_unset() to the C API.
3334
3335M gconf/config.c
3336M ibus/config.py
3337M src/ibusconfig.c
3338M src/ibusconfig.h
3339M src/ibusconfigservice.c
3340M src/ibusconfigservice.h
3341
3342commit 515fcdb8e57d493ea06ac97111165d5b607a9090
3343Author: Peng Huang <shawn.p.huang@gmail.com>
3344Date: 2010-01-09 17:36:14 +0800
3345
3346 Do not store arguments in global vars.
3347
3348M client/x11/main.c
3349
3350commit 6510918a09d502f9449288cc70fb20d892890396
3351Author: Peng Huang <shawn.p.huang@gmail.com>
3352Date: 2010-01-09 17:12:56 +0800
3353
3354 Fix problems in XIM server.
3355
3356M client/x11/main.c
3357
3358commit f5519ff8f096e470780e70bfe6fcd5d24ecc2d0c
3359Author: Peng Huang <shawn.p.huang@gmail.com>
3360Date: 2010-01-07 14:39:18 +0800
3361
3362 Add ibus_input_context_property_activate by Yusuke
3363 <yusukes@chromium.org>
3364
3365M bus/inputcontext.c
3366M src/ibusinputcontext.h
3367
3368commit 363e7f76183473943199575db128deaa12936a20
3369Author: Peng Huang <shawn.p.huang@gmail.com>
3370Date: 2010-01-07 13:02:44 +0800
3371
3372 Only install signal handler for NORMAL, RADIO and TOGGLE
3373
3374M ui/gtk/menu.py
3375
3376commit ab1267e1f2b3c578e513423d8370a120ed609521
3377Author: Peng Huang <shawn.p.huang@gmail.com>
3378Date: 2010-01-07 12:51:00 +0800
3379
3380 Fix a typo.
3381
3382M ui/gtk/menu.py
3383
3384commit 3bd1ea69cb0eb6fc730c2a0aebad05d483e4df26
3385Author: Peng Huang <shawn.p.huang@gmail.com>
3386Date: 2010-01-07 12:25:04 +0800
3387
3388 Fix PROP_MENU problem. Patch from Fujiwara-san
3389
3390M ui/gtk/menu.py
3391
3392commit b501b31efda5f925d40ae04f102b5e006e0fdecf
3393Author: Peng Huang <shawn.p.huang@gmail.com>
3394Date: 2010-01-05 15:50:23 +0800
3395
3396 Add ibus_engine_delete_surrounding_text in ibusengine.h
3397
3398M src/ibusengine.h
3399
3400commit 71643e6f699ac4e60f41bd8e1739b4dea90ccd86
3401Author: Peng Huang <shawn.p.huang@gmail.com>
3402Date: 2010-01-05 14:06:32 +0800
3403
3404 Use 5 scounds as default dbus reply timeout
3405
3406M bus/main.c
3407
3408commit 066d8ae1246002d051c0015ed2b46478c3a9eeed
3409Author: Peng Huang <shawn.p.huang@gmail.com>
3410Date: 2010-01-01 20:54:22 +0800
3411
3412 Do not update lookup table in recreate_ui
3413
3414M ui/gtk/candidatepanel.py
3415
3416commit c637c6f4bcc9df92571f26580a225e23d0ab27ba
3417Author: Peng Huang <shawn.p.huang@gmail.com>
3418Date: 2010-01-01 20:53:36 +0800
3419
3420 Refine code of update_lookup_table
3421
3422M ui/gtk/candidatepanel.py
3423
3424commit fd001d559a7af08ac1da54daad6c3da48d90e86e
3425Author: Peng Huang <shawn.p.huang@gmail.com>
3426Date: 2010-01-01 20:47:59 +0800
3427
3428 Remove gproperties from CandidatePanel
3429
3430M ui/gtk/candidatepanel.py
3431
3432commit 1b0f7f2093990ab829b826a4ab592856bac4770f
3433Author: Peng Huang <shawn.p.huang@gmail.com>
3434Date: 2010-01-01 19:28:27 +0800
3435
3436 Refine some code
3437
3438M ibus/lookuptable.py
3439
3440commit 15bc382dd95e7bb4cee52b45022f5fb89c652d1f
3441Author: Peng Huang <shawn.p.huang@gmail.com>
3442Date: 2010-01-01 19:25:54 +0800
3443
3444 Use ibus.ORIENTATION_* in panel.py
3445
3446M ui/gtk/panel.py
3447
3448commit 59106caf2ce397ab8f42278336a283eddfb3fcf7
3449Author: Peng Huang <shawn.p.huang@gmail.com>
3450Date: 2010-01-01 18:58:40 +0800
3451
3452 Remove some unused code.
3453
3454M ui/gtk/candidatepanel.py
3455
3456commit acdc9fbefb6435678587674a5a0c83c227875447
3457Author: Peng Huang <shawn.p.huang@gmail.com>
3458Date: 2010-01-01 16:46:05 +0800
3459
3460 Rename system_orientation to orientation, and use current_orientation
3461
3462M ui/gtk/candidatepanel.py
3463M ui/gtk/panel.py
3464
3465commit f094435f25e900d66f8a7ea6dea401eef5064bad
3466Author: Peng Huang <shawn.p.huang@gmail.com>
3467Date: 2010-01-01 16:39:17 +0800
3468
3469 Use ibus.ORENTATION_*
3470
3471M ui/gtk/candidatepanel.py
3472
3473commit 6814942030df916a425838d6d8169b2781dbca18
3474Author: Daiki Ueno <ueno@unixuser.org>
3475Date: 2010-01-01 13:22:58 +0900
3476
3477 Apply CandidatePanel orientation change request from IME.
3478
3479 This version also saves the system orientation setting for a later IME switch.
3480
3481M ui/gtk/candidatepanel.py
3482M ui/gtk/panel.py
3483
3484commit d8273edce75cf5a0b37b444efceef0ea5ac932ef
3485Author: Peng Huang <shawn.p.huang@gmail.com>
3486Date: 2010-01-01 16:17:09 +0800
3487
3488 Fix bug in ibus_engine_update_lookup_table_fast.
3489
3490M src/ibusengine.c
3491
3492commit 0531502772192aa442f2fd3fe2057797970bc197
3493Author: Peng Huang <shawn.p.huang@gmail.com>
3494Date: 2010-01-01 16:16:37 +0800
3495
3496 Add getter and setter methods of orientation.
3497
3498M src/ibuslookuptable.c
3499M src/ibuslookuptable.h
3500
3501commit 4c97ef4ee02866c5b2fe44e5a5b15bd85cb9be97
3502Author: Daiki Ueno <ueno@unixuser.org>
3503Date: 2009-12-31 15:04:51 +0900
3504
3505 Merge double-defined im_ibus_la_LIBADD.
3506
3507M client/gtk2/Makefile.am
3508
3509commit 85ec75bba808580c6dd86f9a335eb7d910760d8c
3510Author: Daiki Ueno <ueno@unixuser.org>
3511Date: 2009-12-31 15:03:16 +0900
3512
3513 Set CFLAGS/LDADD for test-matchrule properly.
3514
3515M bus/Makefile.am
3516
3517commit 205d07ca2928e798ad303daa59a0481674424eb8
3518Author: Peng Huang <shawn.p.huang@gmail.com>
3519Date: 2009-12-31 07:03:25 +0800
3520
3521 Fix typo.
3522
3523M client/x11/main.c
3524
3525commit 1277dca5b68853712026b837c3ce257cd8f96861
3526Author: Peng Huang <shawn.p.huang@gmail.com>
3527Date: 2009-12-30 10:19:51 +0800
3528
3529 Currect use of autotools: Use *_LIBADD and *_LDADD to replace some *_LDFLAGS.
3530
3531M bus/Makefile.am
3532M client/gtk2/Makefile.am
3533M client/x11/Makefile.am
3534M gconf/Makefile.am
3535M src/Makefile.am
3536
3537commit 84229373ed5ac6dbb132f6bd83260b6378437530
3538Author: Peng Huang <shawn.p.huang@gmail.com>
3539Date: 2009-12-30 10:06:09 +0800
3540
3541 Fix _FORTIFY_SOURCE warnings, from galtgendo
3542
3543M client/x11/main.c
3544
3545commit 89ff52ef5492bb1b767faf3c9eaac49913285322
3546Author: Peng Huang <shawn.p.huang@gmail.com>
3547Date: 2009-12-27 18:34:07 +0800
3548
3549 Fix link errors in Ubuntu
3550
3551M bus/Makefile.am
3552M client/x11/Makefile.am
3553M gconf/Makefile.am
3554M src/Makefile.am
3555
3556commit 3b140a91098560f569fe62b89895a9d5850a6845
3557Author: Peng Huang <shawn.p.huang@gmail.com>
3558Date: 2009-12-27 09:53:27 +0800
3559
3560 Fix rpmlint warnings in spec file.
3561
3562M ibus.spec.in
3563
3564commit 7182448378b644bfe12e778c71333975055322bd
3565Author: Peng Huang <shawn.p.huang@gmail.com>
3566Date: 2009-12-25 08:33:11 +0800
3567
3568 Catch KeyboardInterrupt Exception
3569
3570M ui/gtk/main.py
3571
3572commit b0f395d7039bf29d87437b2d272ad67e486a3182
3573Author: Peng Huang <shawn.p.huang@gmail.com>
3574Date: 2009-12-25 08:24:30 +0800
3575
3576 Change pinyin.xml to gtkpanel.xml
3577
3578M ui/gtk/gtkpanel.xml.in.in
3579
3580commit f167b19216dd3845674155169ecc2eeaa41c0e75
3581Author: Peng Huang <shawn.p.huang@gmail.com>
3582Date: 2009-12-24 17:19:51 +0800
3583
3584 Process engine method call correctly.
3585
3586M src/ibusengine.c
3587M src/ibusinputcontext.c
3588
3589commit 252e0e4217cf81903bb121bb0af804d810c43cf4
3590Author: Peng Huang <shawn.p.huang@gmail.com>
3591Date: 2009-12-24 16:49:17 +0800
3592
3593 Fix coding style.
3594
3595M ibus/enginedesc.py
3596
3597commit d00778b6842e24da83f590130bec5c55e97147ab
3598Author: Peng Huang <shawn.p.huang@gmail.com>
3599Date: 2009-12-24 15:02:31 +0800
3600
3601 Fix some typos.
3602
3603M setup/enginecombobox.py
3604M setup/enginetreeview.py
3605M setup/main.py
3606
3607commit 043f6fe0b41e5c29d5e6bd7760ff2e301c00bf73
3608Author: Peng Huang <shawn.p.huang@gmail.com>
3609Date: 2009-12-24 14:18:20 +0800
3610
3611 Sort engines in setup ui.
3612
3613M ibus/enginedesc.py
3614M setup/enginecombobox.py
3615M src/ibusenginedesc.c
3616
3617commit ae0a66775f2ce27c4355739167aca1f4e3b9faa1
3618Author: Peng Huang <shawn.p.huang@gmail.com>
3619Date: 2009-12-24 14:05:14 +0800
3620
3621 Use 2 xpad in engine combobox
3622
3623M setup/enginecombobox.py
3624
3625commit 94c9b7a07a9f6eab6c02376d614768391e008943
3626Author: Peng Huang <shawn.p.huang@gmail.com>
3627Date: 2009-12-24 13:59:27 +0800
3628
3629 Fix coding style and remove useless line.
3630
3631M setup/enginecombobox.py
3632
3633commit 1c02e76a0f5cca127fd34cad63aecce7b686e8c2
3634Author: Peng Huang <shawn.p.huang@gmail.com>
3635Date: 2009-12-24 10:42:23 +0800
3636
3637 Make some buttons disabled, when they are not useful.
3638
3639M setup/enginecombobox.py
3640M setup/enginetreeview.py
3641M setup/main.py
3642M setup/setup.ui
3643
3644commit d789a01a2c6cb13e088b1bf7ea04a530c42cd070
3645Author: Peng Huang <shawn.p.huang@gmail.com>
3646Date: 2009-12-24 10:41:19 +0800
3647
3648 Update UI.
3649
3650M setup/setup.ui
3651
3652commit 4ec2a988a6546a73b92c8c6eed7985e19d550ce2
3653Author: Peng Huang <shawn.p.huang@gmail.com>
3654Date: 2009-12-23 15:55:49 +0800
3655
3656 Do not init gthread if undefine G_THREADS_ENABLED.
3657
3658M bus/main.c
3659
3660commit f580326150d486f9dd86961d1bcb80daa4612519
3661Author: Peng Huang <shawn.p.huang@gmail.com>
3662Date: 2009-12-23 15:39:17 +0800
3663
3664 Poll engine changes in different thread.
3665
3666M bus/Makefile.am
3667M bus/ibusimpl.c
3668M bus/main.c
3669M bus/registry.c
3670M bus/registry.h
3671M configure.ac
3672
3673commit d3f11c5b489b63d26a8cc9c6c4fb6dba9881e53a
3674Author: Peng Huang <shawn.p.huang@gmail.com>
3675Date: 2009-12-22 17:56:31 +0800
3676
3677 ibus will poll changes of engines, and show notification to user.
3678
3679M bus/ibusimpl.c
3680M bus/main.c
3681M bus/registry.c
3682M bus/registry.h
3683M ibus/bus.py
3684M ibus/interface/iibus.py
3685M po/ar.po
3686M po/as.po
3687M po/bn_IN.po
3688M po/ca.po
3689M po/da.po
3690M po/de.po
3691M po/es.po
3692M po/fr.po
3693M po/gu.po
3694M po/hi.po
3695M po/hu.po
3696M po/it.po
3697M po/ja.po
3698M po/kn.po
3699M po/ko.po
3700M po/ml.po
3701M po/mr.po
3702M po/or.po
3703M po/pa.po
3704M po/pl.po
3705M po/ru.po
3706M po/sr.po
3707M po/sr@latin.po
3708M po/ta.po
3709M po/te.po
3710M po/vi.po
3711M po/zh_CN.po
3712M po/zh_HK.po
3713M po/zh_TW.po
3714M ui/gtk/main.py
3715
3716commit ea664de646e5d1d24ecb4ba465279861f77bdafd
3717Author: Peng Huang <shawn.p.huang@gmail.com>
3718Date: 2009-12-20 18:40:42 +0800
3719
3720 Remove space before and after =
3721
3722M xinput-ibus.in
3723
3724commit 69b0425825bce479cfb9923934f24c2e382231c8
3725Author: Peng Huang <shawn.p.huang@gmail.com>
3726Date: 2009-12-20 18:37:21 +0800
3727
3728 Fix build rpm errors.
3729
3730M configure.ac
3731D xinput-ibus
3732A xinput-ibus.in
3733
3734commit 8b0d36cf4202b79d965095817c04354e069e25eb
3735Author: Peng Huang <shawn.p.huang@gmail.com>
3736Date: 2009-12-20 18:16:15 +0800
3737
3738 Fix build errors if ./configure is not executed in top src dir.
3739
3740M bus/Makefile.am
3741M client/gtk2/Makefile.am
3742M client/x11/Makefile.am
3743M docs/reference/ibus/Makefile.am
3744M gconf/Makefile.am
3745
3746commit d0d97b819cd64e4693bdac1124e15a2cc2c379f5
3747Author: Peng Huang <shawn.p.huang@gmail.com>
3748Date: 2009-12-17 07:35:09 +0800
3749
3750 Use bold style to display current engine in engine menu.
3751
3752M ui/gtk/panel.py
3753
3754commit 5cfbb5077f51397d30b271946f81bb05dbf3f067
3755Author: Peng Huang <shawn.p.huang@gmail.com>
3756Date: 2009-12-16 20:35:17 +0800
3757
3758 Do not use sub menu to list input methods.
3759
3760M ui/gtk/panel.py
3761
3762commit d23e87402abe96659cd402cdfd8db9417a4c1a40
3763Author: Peng Huang <shawn.p.huang@gmail.com>
3764Date: 2009-12-16 07:37:58 +0800
3765
3766 Update es.po from daniel cabrera <logan@fedoraproject.org>
3767
3768M po/es.po
3769
1commit f869a58793c4b760173e5423e60ee1982b9d893b3770commit f869a58793c4b760173e5423e60ee1982b9d893b
2Author: Peng Huang <shawn.p.huang@gmail.com>3771Author: Peng Huang <shawn.p.huang@gmail.com>
3Date: 2009-12-15 17:16:39 +08003772Date: 2009-12-15 17:16:39 +0800
43773
=== modified file 'INSTALL'
--- INSTALL 2009-05-17 22:19:38 +0000
+++ INSTALL 2010-08-06 11:53:43 +0000
@@ -2,10 +2,12 @@
2*************************2*************************
33
4Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,4Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,
52006, 2007, 2008 Free Software Foundation, Inc.52006, 2007, 2008, 2009 Free Software Foundation, Inc.
66
7 This file is free documentation; the Free Software Foundation gives7 Copying and distribution of this file, with or without modification,
8unlimited permission to copy, distribute and modify it.8are permitted in any medium without royalty provided the copyright
9notice and this notice are preserved. This file is offered as-is,
10without warranty of any kind.
911
10Basic Installation12Basic Installation
11==================13==================
@@ -13,7 +15,11 @@
13 Briefly, the shell commands `./configure; make; make install' should15 Briefly, the shell commands `./configure; make; make install' should
14configure, build, and install this package. The following16configure, build, and install this package. The following
15more-detailed instructions are generic; see the `README' file for17more-detailed instructions are generic; see the `README' file for
16instructions specific to this package.18instructions specific to this package. Some packages provide this
19`INSTALL' file but do not implement all of the features documented
20below. The lack of an optional feature in a given package is not
21necessarily a bug. More recommendations for GNU packages can be found
22in *note Makefile Conventions: (standards)Makefile Conventions.
1723
18 The `configure' shell script attempts to guess correct values for24 The `configure' shell script attempts to guess correct values for
19various system-dependent variables used during compilation. It uses25various system-dependent variables used during compilation. It uses
@@ -42,7 +48,7 @@
42you want to change it or regenerate `configure' using a newer version48you want to change it or regenerate `configure' using a newer version
43of `autoconf'.49of `autoconf'.
4450
45The simplest way to compile this package is:51 The simplest way to compile this package is:
4652
47 1. `cd' to the directory containing the package's source code and type53 1. `cd' to the directory containing the package's source code and type
48 `./configure' to configure the package for your system.54 `./configure' to configure the package for your system.
@@ -53,12 +59,22 @@
53 2. Type `make' to compile the package.59 2. Type `make' to compile the package.
5460
55 3. Optionally, type `make check' to run any self-tests that come with61 3. Optionally, type `make check' to run any self-tests that come with
56 the package.62 the package, generally using the just-built uninstalled binaries.
5763
58 4. Type `make install' to install the programs and any data files and64 4. Type `make install' to install the programs and any data files and
59 documentation.65 documentation. When installing into a prefix owned by root, it is
6066 recommended that the package be configured and built as a regular
61 5. You can remove the program binaries and object files from the
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches

to all changes: