Branch: refs/heads/master
Home:   https://github.com/phuang/ibus-pinyin

Commit: 5a0ba0b751abe079fad8bc90316501cd489f50e6
    
https://github.com/phuang/ibus-pinyin/commit/5a0ba0b751abe079fad8bc90316501cd489f50e6
Author: Yuren Ju <[email protected]>
Date:   2010-10-11 (Mon, 11 Oct 2010)

Changed paths:
  M src/PYFallbackEditor.cc

Log Message:
-----------
use , & 。 instead of 《 & 》 for traditional chinese user


Commit: d43d04a9b92f7abd719cf3da666c23eee43fb67c
    
https://github.com/phuang/ibus-pinyin/commit/d43d04a9b92f7abd719cf3da666c23eee43fb67c
Author: Yuren Ju <[email protected]>
Date:   2010-10-22 (Fri, 22 Oct 2010)

Changed paths:
  M po/zh_TW.po
  M setup/ibus-pinyin-preferences.ui
  M setup/main.py
  M src/PYBopomofoEditor.cc
  M src/PYConfig.cc
  M src/PYConfig.h

Log Message:
-----------
add options for enter key, original feature is commit original english text, 
new feature is commit first candidate phrase


Commit: bcf86cbf44e2a9658fda42724ed066f3f05ced79
    
https://github.com/phuang/ibus-pinyin/commit/bcf86cbf44e2a9658fda42724ed066f3f05ced79
Author: Yuren Ju <[email protected]>
Date:   2010-10-22 (Fri, 22 Oct 2010)

Changed paths:
  M po/zh_CN.po
  M po/zh_HK.po

Log Message:
-----------
added simp. chinese and hong kang translation


Commit: 2924d05cf008f7c7794d4f4b65940a70ba2247bd
    
https://github.com/phuang/ibus-pinyin/commit/2924d05cf008f7c7794d4f4b65940a70ba2247bd
Author: Peng Huang <[email protected]>
Date:   2010-10-29 (Fri, 29 Oct 2010)

Changed paths:
  M configure.ac
  M src/PYConfig.cc
  M src/PYConfig.h

Log Message:
-----------
Fix problem with ibus-2.0


Commit: ead9afe09d8e580bc2abb3556cf778c0a29c243c
    
https://github.com/phuang/ibus-pinyin/commit/ead9afe09d8e580bc2abb3556cf778c0a29c243c
Author: phuang <phuang@phuang-MacPro.(none)>
Date:   2010-10-29 (Fri, 29 Oct 2010)

Changed paths:
  M Makefile.am
  M debian/control
  M debian/rules

Log Message:
-----------
Fix some errors when build debian packages.


Commit: 16a3b3d689de672efc1ed8eb4604160cd38d7302
    
https://github.com/phuang/ibus-pinyin/commit/16a3b3d689de672efc1ed8eb4604160cd38d7302
Author: Peng Huang <[email protected]>
Date:   2010-10-29 (Fri, 29 Oct 2010)

Changed paths:
  M configure.ac
  M debian/control

Log Message:
-----------
Fix build errors with ibus-1.4


Commit: 9b655b630a50e9cd7a9415f07b2ddb4348b2db64
    
https://github.com/phuang/ibus-pinyin/commit/9b655b630a50e9cd7a9415f07b2ddb4348b2db64
Author: Peng Huang <[email protected]>
Date:   2010-10-29 (Fri, 29 Oct 2010)

Changed paths:
  M configure.ac

Log Message:
-----------
Bump version to 1.3.99


Commit: a17468d8ade1df427ca204605f608b9e4ab67b50
    
https://github.com/phuang/ibus-pinyin/commit/a17468d8ade1df427ca204605f608b9e4ab67b50
Author: Peng Huang <[email protected]>
Date:   2010-10-29 (Fri, 29 Oct 2010)

Changed paths:
  M Makefile.am

Log Message:
-----------
Change default ubunut serie to mavreick


Commit: e6f36dbffa9da69fd3819ce21ac7504f50b055e7
    
https://github.com/phuang/ibus-pinyin/commit/e6f36dbffa9da69fd3819ce21ac7504f50b055e7
Author: Peng Huang <[email protected]>
Date:   2010-11-04 (Thu, 04 Nov 2010)

Changed paths:
  M Makefile.am
  M debian/control

Log Message:
-----------
Fix deb build errors.


Commit: f067b7a651cf24f7234441a31c0f88191cb74a42
    
https://github.com/phuang/ibus-pinyin/commit/f067b7a651cf24f7234441a31c0f88191cb74a42
Author: Peng Wu <[email protected]>
Date:   2010-11-11 (Thu, 11 Nov 2010)

Changed paths:
  M setup/ibus-pinyin-preferences.ui
  M src/pinyin.xml.in.in

Log Message:
-----------
add author


Commit: 15b9b66b013ee83974b3ae16a76983cc10e9dbe8
    
https://github.com/phuang/ibus-pinyin/commit/15b9b66b013ee83974b3ae16a76983cc10e9dbe8
Author: Peng Huang <[email protected]>
Date:   2010-11-23 (Tue, 23 Nov 2010)

Changed paths:
  M src/PYDatabase.cc
  M src/PYDatabase.h
  M src/PYMain.cc
  M src/PYString.h

Log Message:
-----------
Use in memory user database to improve performance.

I found pinyin's performance is very low when system IO load is big. So
I let pinyin use im memory user database to improve the performance, and
write the database to the harddisk in 60 seconds or when engine exits.

BUG=none
TEST=manual

Review URL: http://codereview.appspot.com/3303041


Commit: a142d959cdba0406a2c614fadfa9367803c31286
    
https://github.com/phuang/ibus-pinyin/commit/a142d959cdba0406a2c614fadfa9367803c31286
Author: Peng Huang <[email protected]>
Date:   2011-01-18 (Tue, 18 Jan 2011)

Changed paths:
  M src/PYBopomofoEngine.cc
  M src/PYPinyinEngine.cc

Log Message:
-----------
Do not handle release key events, if engine is in init mode.

Most application only process key press events, but some process key release 
events. This change will let Pinyin engine to ignore some release events in 
init mode, and let applications have chance to get release key events.

BUG=none
TEST=Test within Ubuntu 10.10

Review URL: http://codereview.appspot.com/3975042


Commit: fb0a1f4fb7bedff230a67e162e038425529bd146
    
https://github.com/phuang/ibus-pinyin/commit/fb0a1f4fb7bedff230a67e162e038425529bd146
Author: Peng Huang <[email protected]>
Date:   2011-02-06 (Sun, 06 Feb 2011)

Changed paths:
  M src/PYDatabase.cc
  M src/PYDatabase.h

Log Message:
-----------
Storing user database to disk, if engine idles more than 60 seconds.


-- 
You received this message because you are subscribed to the Google
Groups "ibus-devel" group.
iBus project web page: http://code.google.com/p/ibus/
iBus dev group: http://groups.google.com/group/ibus-devel?hl=en

回复