-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
3896 lines (2573 loc) · 84.9 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
commit a84ab44681ac869f54160535ef611986ab59b29a
Author: Daiki Ueno <[email protected]>
Date: 2012-01-25 17:32:51 +0900
Bump version to 1.4.0.
M configure.ac
commit bf82571fbfb96e00402400cf0dd1829f30f1a6cd
Author: Daiki Ueno <[email protected]>
Date: 2012-01-16 18:18:38 +0900
Filter out unnecessary modifier bits.
M src/engine.vala
commit cb3094200a426c590c668da3dcf780755ede881f
Author: Daiki Ueno <[email protected]>
Date: 2012-01-16 10:19:35 +0900
Always consume C-j.
M src/engine.vala
commit 6d188d551711c1964492a2d68c8ab9b02eb9de07
Author: Daiki Ueno <[email protected]>
Date: 2012-01-16 10:07:03 +0900
Remove unnecessary files from git.
D TODO
M ibus-skk.spec.in
D python-config.py
commit e6b19ee8e70742d763c23204ff0986e3ad682564
Author: Daiki Ueno <[email protected]>
Date: 2012-01-12 14:27:27 +0900
Update copyright year.
M src/engine.vala
M src/plist.vala
M src/preferences.vala
M src/setup.vala
commit d870e757fe6ebd75c892990aec2e32ff23cf3448
Author: Daiki Ueno <[email protected]>
Date: 2012-01-12 14:26:06 +0900
Avoid TreeSet memleak.
M src/plist.vala
commit 295ed5ed25f5aced06a69a6f7b95465bbd1164bb
Author: Daiki Ueno <[email protected]>
Date: 2012-01-11 16:46:29 +0900
Cache lookup table visibility in engine side.
Also factor out keyval resolution code.
M src/engine.vala
commit 282509ad856bd1a5a311412fc84336c13e6bd4ee
Merge: e6ec2bb 6851ae3
Author: Daiki Ueno <[email protected]>
Date: 2012-01-11 15:26:35 +0900
Merge branch 'master' of github.com:ueno/ibus-skk
commit e6ec2bb99c6e71ea7a38cc4dd32a172b52e42e8e
Author: Daiki Ueno <[email protected]>
Date: 2012-01-11 14:49:33 +0900
Follow libskk API change.
M src/engine.vala
commit 4f45284eab8d5c7e1f21e2ab65e9616209bd1056
Author: Daiki Ueno <[email protected]>
Date: 2012-01-11 14:48:48 +0900
Simplify README.
M README
commit 6851ae3be22634a13046ef8fa47397816337d932
Author: Daiki Ueno <[email protected]>
Date: 2012-01-05 16:28:17 +0900
Use warning instead of stderr.printf extensively.
M src/engine.vala
commit ebb86e3874ba6327754706d049ccd4428b21c948
Author: Daiki Ueno <[email protected]>
Date: 2012-01-05 14:39:12 +0900
Use update_lookup_table_fast.
M src/engine.vala
commit 63d64da02b38786efd51f7c8c60f5f84fc326f6d
Author: Daiki Ueno <[email protected]>
Date: 2012-01-04 18:41:44 +0900
Warning if loading a typing rule fails (libskk Issue#6).
M src/engine.vala
commit 7296af866b8491b448c60af2deaf82530b54a2af
Author: Daiki Ueno <[email protected]>
Date: 2012-01-04 17:57:30 +0900
Refine lookup table cursor movement.
M src/engine.vala
commit b54c3258d653d4a93039ad479c8251f9ac2a2596
Author: Daiki Ueno <[email protected]>
Date: 2011-12-29 19:31:12 +0900
Don't register candidates signal handlers more than once.
M src/engine.vala
commit acbad042569b87325df660e3a6544ef277b9a0cd
Author: Daiki Ueno <[email protected]>
Date: 2011-12-29 11:48:58 +0900
Revert <layout> to jp from us.
M skk.xml.in.in
commit ee2a6de5fc97269148eb90d20da4324b5feba895
Author: Daiki Ueno <[email protected]>
Date: 2011-12-28 17:26:35 +0900
Cleanup Makefile.am.
M Makefile.am
M configure.ac
M icons/Makefile.am
commit 3f2bed38ceebde0cddc63040f2d7660cef50ad74
Author: Daiki Ueno <[email protected]>
Date: 2011-12-28 17:26:09 +0900
Don't add removed ibus.m4 to EXTRA_DIST.
M m4/Makefile.am
commit 5ee3d6a5b9953ab8321a269b1b2a5ec0681cf7e5
Author: Daiki Ueno <[email protected]>
Date: 2011-12-28 17:04:31 +0900
Make sure to restore surrounding text after focus change.
M src/engine.vala
commit 5b6a94759ff64e108b2ba62f7b88e2b0aadbff33
Author: Daiki Ueno <[email protected]>
Date: 2011-12-28 12:56:58 +0900
Map space/x to page_down/page_up when lookup table is active.
Also pass Left and Right to Skk.Context.process_key_event.
M src/engine.vala
commit 27f68b41c5803e120afc7b569f227c856cdd0835
Author: Daiki Ueno <[email protected]>
Date: 2011-12-28 12:55:21 +0900
Assume CDB dict if pathname ends with ".cdb" (Issue#42).
M src/engine.vala
commit 688bd0026040ddfec24d8e919eaec51b642a7790
Author: Daiki Ueno <[email protected]>
Date: 2011-12-27 18:24:42 +0900
Fix reconvert behavior.
M src/engine.vala
commit 52e280840a2b3f45a4ade234456325b0aac55f4d
Author: Daiki Ueno <[email protected]>
Date: 2011-12-27 17:16:07 +0900
Fix commit 8ce64802.
M src/engine.vala
commit 40adc3e1849167d2f93d4562ed7c39489122bf96
Author: Daiki Ueno <[email protected]>
Date: 2011-12-27 17:09:39 +0900
Remove <symbol> and <hotkeys> checks, as we support only ibus 1.4 or later.
M configure.ac
D m4/ibus.m4
M skk.xml.in.in
commit 2500ac6df7aa722366ff0758b17b99be57b3d5a1
Author: Daiki Ueno <[email protected]>
Date: 2011-12-27 17:09:05 +0900
Use Skk.Context.poll_output instead of .get_output.
M src/engine.vala
commit 8ce6480291374b1071b44da229510398f0ee39f7
Author: Daiki Ueno <[email protected]>
Date: 2011-12-27 17:01:40 +0900
Support reconvert based on surrounding text.
M src/engine.vala
M src/ibus-1.0.vapi
commit fcb4b2352c1fc7c6c79327dc174862d96d51ddea
Author: Daiki Ueno <[email protected]>
Date: 2011-12-27 16:45:07 +0900
Fix attribute range overflow for preedit.
M src/engine.vala
M src/setup.vala
commit 81f981c7c1706cddf615ac473127a8044fc98212
Author: Daiki Ueno <[email protected]>
Date: 2011-12-22 16:40:30 +0900
Restore lookup table after dict edit.
M src/engine.vala
commit 2415a0ce892f42683e685bf3383468852f6317e8
Author: Daiki Ueno <[email protected]>
Date: 2011-12-22 10:28:10 +0900
Switch to use git.mk from pango.
D .gitignore
M Makefile.am
A git.mk
M icons/Makefile.am
M m4/Makefile.am
M src/Makefile.am
commit c08a5526908d9b55f2635d15def2bcc604b3cbe9
Author: Daiki Ueno <[email protected]>
Date: 2011-12-22 10:20:49 +0900
Remove compile time Python dependency.
Also split PKG_CHECK_MODULES for each library (Issue#41).
M Makefile.am
M configure.ac
M m4/ibus.m4
D scripts/Makefile.am
D scripts/ibus-skk-convert-jisyo.in
M src/Makefile.am
commit 9b945711c759afb1b48c7d8bff248a3a235b6544
Author: Daiki Ueno <[email protected]>
Date: 2011-12-21 16:40:06 +0900
Fix Vala code license header to GPLv2+.
M README
M src/engine.vala
M src/plist.vala
M src/preferences.vala
M src/setup.vala
commit 3e19f15769f83b172f59a5cce4012490fc620f0f
Author: Daiki Ueno <[email protected]>
Date: 2011-12-20 18:42:49 +0900
Don't remove *.[ch] with make clean.
M src/Makefile.am
commit 5052d783f8e871b1b923026b3033f9ec61fcd11d
Author: Daiki Ueno <[email protected]>
Date: 2011-12-20 10:56:31 +0900
Merge branches 'libskk' and 'master'
commit ad0b820ff14d7fd8f85e8f8fb8b4c83c9b4d03f8
Author: Daiki Ueno <[email protected]>
Date: 2011-11-17 16:50:44 +0900
Port to Vala from Python using libskk.
A .dir-locals.el
M Makefile.am
M README
M configure.ac
D engine/.gitignore
D engine/Makefile.am
D engine/engine.py
D engine/factory.py
D engine/ibus-engine-skk.in
D engine/kzik.py
D engine/main.py
D engine/nicola.py
D engine/skk.py
D engine/skk.xml.in.in
D engine/test.py
D engine/virtkbd.py
D ibus-skk.json.example
M ibus-skk.spec.in
M po/POTFILES.in
M po/POTFILES.skip
M po/ja.po
D setup/.gitignore
D setup/Makefile.am
D setup/config.py
D setup/ibus-setup-skk.in
D setup/ibus-skk-preferences.ui.in
D setup/main.py
A skk.xml.in.in
A src/Makefile.am
A src/config.vapi
A src/engine.vala
A src/ibus-1.0.deps
A src/ibus-1.0.vapi
A src/ibus-skk-preferences.ui.in
A src/ibus-skk.deps
A src/plist.vala
A src/preferences.vala
A src/setup.vala
commit 543f599c406e6da545404f77eaea3043c7fb9fdd
Author: Daiki Ueno <[email protected]>
Date: 2011-09-20 15:42:47 +0900
Update m4/ibus.m4.
M configure.ac
M engine/skk.xml.in.in
M m4/ibus.m4
commit 6cecc98887639eba877fa7ae9f18022521f26189
Author: Daiki Ueno <[email protected]>
Date: 2011-09-20 10:24:30 +0900
Fix initial_input_mode_liststore to have correct index values (Issue#37).
M setup/ibus-skk-preferences.ui.in
commit bc257d52b622398a4c076402a53c2dd81fc8068c
Author: Daiki Ueno <[email protected]>
Date: 2011-09-02 12:21:23 +0900
Update to 1.3.9.
M configure.ac
commit e0affe73d75e6e9073533befbcffbaaab73da61b
Author: Daiki Ueno <[email protected]>
Date: 2011-09-02 12:20:57 +0900
Fix XML entity reference.
M configure.ac
commit c0406fceaeae17f60621c03ae157c838710dffb2
Author: Daiki Ueno <[email protected]>
Date: 2011-08-29 13:59:58 +0900
Update to 1.3.8.
M configure.ac
commit 6665f6532d324ff1cb0c1f7a1c3758fbcf899856
Author: Daiki Ueno <[email protected]>
Date: 2011-08-29 13:51:56 +0900
Update virtkbd module to check engine's typing mode.
M engine/engine.py
M engine/skk.py
M engine/virtkbd.py
commit 3b83653961b56ac09d82ffb238c14fac410ca424
Author: Daiki Ueno <[email protected]>
Date: 2011-08-26 17:30:52 +0900
Don't connect to eekboard-server if enable_virtual_keyboard is false.
M engine/engine.py
M engine/skk.py
M engine/test.py
M engine/virtkbd.py
commit 1af3082f76ec0a86d0c384e2f32f331b20d1146a
Author: Daiki Ueno <[email protected]>
Date: 2011-08-26 15:57:57 +0900
Fix the last commit.
M engine/engine.py
M engine/skk.py
commit 6ac36f3dcbe0534a9e81f32faed945bc09b926a5
Author: Daiki Ueno <[email protected]>
Date: 2011-03-08 15:37:56 +0900
Support virtual keyboard.
M engine/Makefile.am
M engine/engine.py
M engine/skk.py
A engine/virtkbd.py
M setup/config.py
M setup/ibus-skk-preferences.ui.in
M setup/main.py
commit 74fb959a80367f67fb67833272df08d66928c61c
Merge: 2534a8c 0eee22b
Author: Daiki Ueno <[email protected]>
Date: 2011-08-03 18:33:26 +0900
Merge branch 'master' of github.com:ueno/ibus-skk
commit 2534a8c785136d5b216a3f767de55bc41d823bcc
Author: Daiki Ueno <[email protected]>
Date: 2011-06-22 18:24:59 +0900
Revert "Fix icon symbol support check."
This reverts commit 16e6d569b47825bebb2b579a30075cd6462c1547.
M m4/ibus.m4
commit da7574da03e4d7c43e9752d69ae749007b4af3f3
Author: Daiki Ueno <[email protected]>
Date: 2011-06-22 18:17:49 +0900
Fix icon symbol support check.
M m4/ibus.m4
commit e2706c69cb76f3d66ab5ae6b673bab162d68f2b0
Author: Daiki Ueno <[email protected]>
Date: 2011-06-18 14:13:15 +0900
Fix the last commit.
M engine/skk.py
commit 0eee22b74dbd37869cc2ef167f2f10a912a252c8
Author: Daiki Ueno <[email protected]>
Date: 2011-06-22 18:24:59 +0900
Revert "Fix icon symbol support check."
This reverts commit 16e6d569b47825bebb2b579a30075cd6462c1547.
M m4/ibus.m4
commit 16e6d569b47825bebb2b579a30075cd6462c1547
Author: Daiki Ueno <[email protected]>
Date: 2011-06-22 18:17:49 +0900
Fix icon symbol support check.
M m4/ibus.m4
commit 0c5d77d5af333741d2c2a1a9b2cbe50ae5e49576
Merge: 7f6a6bf 0a3a25e
Author: Daiki Ueno <[email protected]>
Date: 2011-06-22 15:53:59 +0900
Merge branch 'master' of github.com:ueno/ibus-skk
commit 7f6a6bfe155b210bb4a3073cc38ca25c161f5623
Author: Daiki Ueno <[email protected]>
Date: 2011-06-22 15:52:44 +0900
Define hotkeys and icon-symbol in description.
M configure.ac
M engine/engine.py
M engine/skk.xml.in.in
D m4/.gitignore
A m4/ibus.m4
commit 0a3a25e40b604e648dcdb16e4615eeda8f01cffb
Author: Daiki Ueno <[email protected]>
Date: 2011-06-18 14:13:15 +0900
Fix the last commit.
M engine/skk.py
commit 764edb18bdfbbc7147fc4d2855e25e75af58e1c1
Author: Daiki Ueno <[email protected]>
Date: 2011-06-17 13:12:03 +0900
Don't start auto conversion if there is no preceding input (Issue#36).
M engine/skk.py
M engine/test.py
commit 347efc4a4314b917ff15ff6353b80239258a5039
Author: Daiki Ueno <[email protected]>
Date: 2011-06-17 12:38:08 +0900
Add credit for Kagotani-san.
M THANKS
commit 994ae4a41e80403b361a55e759c61bfdf93c1894
Author: Daiki Ueno <[email protected]>
Date: 2011-06-17 12:36:16 +0900
Don't handle ctrl+g in non-converting state (Issue#35).
M engine/skk.py
M engine/test.py
commit 6f0b126f87d894117bcec4aa971fe451b06ca188
Author: Daiki Ueno <[email protected]>
Date: 2011-06-16 10:51:45 +0900
Ignore errors when locale module doesn't provide bindtextdomain (Issue#34).
M setup/main.py
commit e2a3113baca45bb7ec4393ab8dd27d9d1787aa0c
Author: Daiki Ueno <[email protected]>
Date: 2011-06-15 12:12:07 +0900
Update to 1.3.7.
M configure.ac
commit cb29636e137b6c08a442f721bbb2d8d75e818a91
Author: Daiki Ueno <[email protected]>
Date: 2011-06-14 04:31:49 +0900
Fix "mm" -> "っm" conversion (Issue#33).
M engine/skk.py
M engine/test.py
commit 6304c8c33049913f7e3a0b9d51816e5a30cfbea9
Author: Daiki Ueno <[email protected]>
Date: 2011-06-14 03:47:38 +0900
Add a note why bug reports should be written in English.
M README
commit 056c2a4e410241a11b1ad650a487308e729c0190
Author: Daiki Ueno <[email protected]>
Date: 2011-05-31 11:01:22 +0900
Don't switch to initial input mode when reset (Issue#32).
M engine/engine.py
commit 0b01eeb504c45c671315d684632a5d9cf2b2e236
Author: Daiki Ueno <[email protected]>
Date: 2011-05-17 18:03:17 +0900
Update FSF address.
M engine/ibus-engine-skk.in
M icons/Makefile.am
commit 1fa8d87cc6603753b7d0b3c1786226668039f86b
Author: Daiki Ueno <[email protected]>
Date: 2011-05-12 17:54:01 +0900
Update to 1.3.6.
M configure.ac
commit 706a67a1914f5f4e500f65f33dd09cbe1bd9e812
Author: Daiki Ueno <[email protected]>
Date: 2011-05-10 10:46:57 +0900
Get rid of the checkbox "Use mmap" from the setup dialog.
M po/ja.po
M setup/ibus-skk-preferences.ui.in
M setup/main.py
commit 9e96a88cfaff4b7f672777d305fc32af522112a7
Author: Daiki Ueno <[email protected]>
Date: 2011-05-09 22:46:54 +0900
Fix the last commit.
M setup/config.py
commit feaa3d5816c1d92f9f55d16caf740a2ee2f5d6fa
Author: Daiki Ueno <[email protected]>
Date: 2011-05-09 18:07:38 +0900
Make sure to save sysdict_paths when set (Issue#31).
M setup/config.py
commit 00b7c8242fb3bc9efd84ab8190ff9f535b908a54
Author: Daiki Ueno <[email protected]>
Date: 2011-05-08 07:50:57 +0900
Don't expect LF when skkserv returns error (Issue#30).
M engine/skk.py
commit bd0fa96793cc396a5d625a07bcf095982a4e4d44
Author: Daiki Ueno <[email protected]>
Date: 2011-03-22 12:20:02 +0900
Finish "っ" before okuri-ari conversion (Issue#28).
M engine/skk.py
commit e130250d27626bc345257cae724f3459b844abce
Author: Daiki Ueno <[email protected]>
Date: 2011-03-07 14:07:06 +0900
Add failing test for "SasS" -> "▽さっ*s" (Issue#28).
M engine/test.py
commit afb7cc7137be89db1899299351354da07b758197
Author: Daiki Ueno <[email protected]>
Date: 2010-12-21 10:40:46 +0900
Call locale.bindtextdomain() for non-standard localedir (Issue#27).
M THANKS
M setup/main.py
commit 545e76bc39132922de3e703279e9d1858462c433
Author: Daiki Ueno <[email protected]>
Date: 2010-12-18 15:57:16 +0900
Update to 1.3.5.
M configure.ac
commit 154bfb550a217ad5286f9865bfe6b836705e3e24
Author: Daiki Ueno <[email protected]>
Date: 2010-12-16 18:06:37 +0900
Simplify the previous commit.
M engine/skk.py
commit fe1852af452c212f8feec65944221fad3c912be6
Author: Daiki Ueno <[email protected]>
Date: 2010-12-16 17:18:36 +0900
Implement server completion.
Implement server completion and set timeout for socket operations.
M engine/skk.py
commit c5fa7ec664aafe34c140c13146ba78402e2170c0
Author: Daiki Ueno <[email protected]>
Date: 2010-12-16 17:17:23 +0900
Fix writing config values when config section does not exist.
M setup/config.py
commit 9cbf8e9a94645d4be62732a0a6f2705ae1ce24b8
Author: Daiki Ueno <[email protected]>
Date: 2010-12-15 11:19:48 +0900
Update translation.
M po/ja.po
commit 212387e8706060253513984f3016490c85721626
Author: Daiki Ueno <[email protected]>
Date: 2010-12-10 10:41:19 +0900
Try to retrieve text from "CLIPBOARD" selection as well.
M engine/engine.py
commit cc34ff61bfda86e41f0e4230a9d5317b0c5ad1d4
Author: Daiki Ueno <[email protected]>
Date: 2010-12-09 18:40:45 +0900
Remove debug print.
M setup/config.py
commit 36e238f104d4c049250232c57f2428e1a30868f8
Author: Daiki Ueno <[email protected]>
Date: 2010-12-09 17:51:57 +0900
nicola: add UI to enable NICOLA.
M README
M THANKS
M setup/ibus-skk-preferences.ui.in
M setup/main.py
commit 4d57d47fbc3524244911da14cbc783ad594436c2
Author: Daiki Ueno <[email protected]>
Date: 2010-12-09 17:27:25 +0900
Fix the last commit.
M engine/skk.py
commit 0c33512e18bcc37ddeec5e9bd3448830a96512d6
Author: Daiki Ueno <[email protected]>
Date: 2010-12-09 17:18:07 +0900
Try to yank text from clipboard when 'ctrl+y' is pressed.
M engine/engine.py
M engine/skk.py
commit e27720192e766817240df9c438995219dfe0b559
Author: Daiki Ueno <[email protected]>
Date: 2010-12-07 12:32:59 +0900
nicola: fix latin mode (Issue#25 comment#2).
M engine/nicola.py
M engine/skk.py
M engine/test.py
commit e7b5974a872544340a522e39be023e2b4486759a
Author: Daiki Ueno <[email protected]>
Date: 2010-12-06 17:31:10 +0900
nicola: handle input mode transition keys [LR] and Z (Issue#25).
M engine/nicola.py
M engine/skk.py
M engine/test.py
commit 5308baee65bf931d017da9682c112eaea4598b66
Author: Daiki Ueno <[email protected]>
Date: 2010-12-01 12:13:32 +0900
nicola: support okuri-ari conversion (Issue#24).
M engine/skk.py
M engine/test.py
commit 94c0c8f6129dbb4dbe4cda19f99abfcdd758b5b9
Author: Daiki Ueno <[email protected]>
Date: 2010-11-29 16:24:26 +0900
Update to 1.3.4.
M configure.ac
commit 18b67432548a7f60af7ffefbe3dd873c79668769
Author: Daiki Ueno <[email protected]>
Date: 2010-11-29 16:23:21 +0900
Add description about NICOLA.
M README
commit db0eefd3fbacc8df36eb4ce08d931156095f31d6
Merge: 6b6cc33 bd0dfd6
Author: Daiki Ueno <[email protected]>
Date: 2010-11-29 16:21:08 +0900
Merge branch 'nicola'
commit bd0dfd61779cef968dc5125e66e230b51df63f30
Author: Daiki Ueno <[email protected]>
Date: 2010-11-29 16:20:01 +0900
Fix inversion of lshift and rshift.
M engine/skk.py
commit 6b6cc3384e29e73d4dede8cb9feb0f8a92e4e28d
Author: Daiki Ueno <[email protected]>
Date: 2010-11-28 09:34:28 +0900
Don't touch PYTHONPATH (Debian Bug#605173).
M engine/ibus-engine-skk.in
commit cd58d9e10492b6be387f6bffdd5baf2f188e6196
Author: Daiki Ueno <[email protected]>
Date: 2010-11-22 11:56:01 +0900
Treat 'ctrl+j' as handled.
M engine/skk.py
commit 661e76b724333273ac42437bdaef5814f6a2a28f
Author: Daiki Ueno <[email protected]>
Date: 2010-11-22 10:52:56 +0900
Don't change input mode with "ctrl+j" when input mode is hiragana or katakana.
M engine/skk.py
commit bd2c7771e04be508bacc2257a7fe667e806b037b
Author: Daiki Ueno <[email protected]>
Date: 2010-11-08 16:33:53 +0900
Update to 1.3.3.
M configure.ac
commit e86b55821231640e3fc21c49a3e092fc91120926
Author: Daiki Ueno <[email protected]>
Date: 2010-11-08 16:29:28 +0900
Delay config value initialization for ibus-1.4.
M engine/factory.py
M setup/config.py
M setup/ibus-skk-preferences.ui.in
M setup/main.py
commit 5a0eb37abab15da3866dc252c138f4923af82494
Author: Daiki Ueno <[email protected]>
Date: 2010-11-04 09:44:56 +0900
Fix engine startup error when use_nicola is False.
M engine/engine.py
commit 55f475def398bb645d90daaa7a90a15622098257
Author: Daiki Ueno <[email protected]>
Date: 2010-11-03 17:12:26 +0900
Simplify testnicola().
M engine/test.py
commit 1e54cacc747e15b0ce579e7ffc1d2ab33a6c9937
Author: Daiki Ueno <[email protected]>
Date: 2010-11-03 17:12:01 +0900
Replace the latest key event when key repeat.
M engine/nicola.py
commit 85cd57b759b903852ce9bd13687c71b0db19982b
Author: Daiki Ueno <[email protected]>
Date: 2010-11-02 15:35:39 +0900
Fix input mode transition with nicola+[dk].
M engine/skk.py
commit 610aece8152ebcbf6db21c7519adba9718eea82b
Author: Daiki Ueno <[email protected]>
Date: 2010-11-02 14:51:21 +0900
Integrate NICOLA to the engine.
M engine/engine.py
M engine/nicola.py
M engine/skk.py
M setup/config.py
commit ebd23ab13b81d87d8a60dc8c7551fc629c28c575
Author: Daiki Ueno <[email protected]>
Date: 2010-11-01 18:53:00 +0900
Add NICOLA support code.
M engine/Makefile.am
A engine/nicola.py
M engine/test.py
commit 5e7c5e8959081f52491d70215e1d76af1f213e81
Author: Daiki Ueno <[email protected]>
Date: 2010-10-12 20:28:45 +0900
Update to 1.3.2.
M configure.ac
commit f13d4d45f4d9bb467b7e8c95c838791591186cf0
Author: Daiki Ueno <[email protected]>
Date: 2010-10-12 17:58:38 +0900
Fix NANA and NANa conversion.
M engine/skk.py
M engine/test.py
commit 6e25ec869326aba1c365747d048760b87a37ee01
Author: Daiki Ueno <[email protected]>
Date: 2010-10-12 16:52:58 +0900
Add failing tests for "NANA" and "NANa".
M engine/test.py
commit e01f5c6f8b828ff8c60df408de87e532c9a8b60a
Author: Daiki Ueno <[email protected]>
Date: 2010-10-12 11:31:35 +0900
Don't store custom_rom_kana_rule in ibus config.
M setup/config.py
commit 78fd5b17a7eea2429c48a9af7b6cf05ec3adbc9d
Author: Daiki Ueno <[email protected]>
Date: 2010-10-12 11:14:20 +0900
Put default config values in config.py.
M engine/engine.py
M engine/factory.py
M setup/config.py
M setup/main.py
commit 1a120b787cca73b2560d4e53e837cdf6b663e0c1
Author: Daiki Ueno <[email protected]>
Date: 2010-10-12 10:37:40 +0900
Abolish skk.Context#__rom_kana_has_pending().
M engine/skk.py
commit dd06efb08df6ffef0e47872d68c5be66f13a6fc3
Author: Daiki Ueno <[email protected]>
Date: 2010-10-12 09:33:56 +0900
Fix "NA" conversion.
M engine/skk.py
M engine/test.py
commit 3034c8cb4085c1fed1c424ba971f448e251cad71
Author: Daiki Ueno <[email protected]>
Date: 2010-10-11 20:18:13 +0900
Supply D-Bus signature of "custom_rom_kana_rule".
M engine/engine.py
commit f2df3be1cfd3f75a4eed772801a7a55d27ee7a71
Author: Daiki Ueno <[email protected]>
Date: 2010-10-11 20:17:25 +0900
Add failing test for "NA" -> "な".
M engine/test.py
commit 4b4a23b2e158555749288561c4322dd77c7a3e54
Author: Daiki Ueno <[email protected]>
Date: 2010-10-11 12:56:13 +0900
Make sure to use lower-case keysyms if ctrl:nocaps enabled (Issue#22).
M engine/engine.py
commit 6870ba37c0886e5e43f581865e4cb6f0608d07a1
Author: Daiki Ueno <[email protected]>
Date: 2010-10-11 12:47:52 +0900
Fix the last commit.
M po/POTFILES.skip
commit 858e20b5665b9181c8bbf5bf25bfe64ee474670f
Author: Daiki Ueno <[email protected]>
Date: 2010-10-11 12:43:13 +0900
Prevent intltool from scanning setup/ibus-skk-preferences.ui.
A po/POTFILES.skip
commit 9f61ab4f3f38d98e2bac7487e13f8eaece16f189
Author: Daiki Ueno <[email protected]>
Date: 2010-10-11 12:33:15 +0900
Update to 1.3.1.
M configure.ac
commit cad2dabd0ffc9eb338e1fd389f72f37ea7400e04
Author: Daiki Ueno <[email protected]>
Date: 2010-10-08 12:15:54 +0900
Make trie creation robuster (Issue#21 comment #1).