-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
2918 lines (2195 loc) · 90.5 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 c0b099c162a8e7c695585cbf5fe0730a2c2509e3
Author: Daiki Ueno <ueno@unixuser.org>
Date: Fri Feb 3 17:10:47 2012 +0900
Bump version to 0.0.10.
configure.ac | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit 4f9398cb3d6fc7ec69702f679ea28ec7894e0974
Author: Daiki Ueno <ueno@unixuser.org>
Date: Fri Feb 3 17:10:28 2012 +0900
Add news entry for skkfep.
NEWS | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit 3a9f77df08d0e40a2f7a2cd2877499512ebcb2a2
Author: Daiki Ueno <ueno@unixuser.org>
Date: Fri Feb 3 17:10:00 2012 +0900
Remove "[DictEdit]" translation from po.
po/ja.po | 22 +++++++++-------------
1 files changed, 9 insertions(+), 13 deletions(-)
commit f4a301f0599e074252d44897a05b88caad6c62a3
Author: Daiki Ueno <ueno@unixuser.org>
Date: Fri Feb 3 17:02:30 2012 +0900
Fix build with --disable-fep; add an entry about skkfep in NEWS.
NEWS | 2 +
po/POTFILES.in | 4 +-
po/POTFILES.skip | 3 +-
tools/Makefile.am | 35 ++++++---
tools/fep.vala | 132 +++++++++++++++++++++++++++++++++-
tools/fep.wrapper.in | 6 ++
tools/skk.vala | 175
++++++++++++++++++++++++++++++++++++++++++++
tools/skkfep.in | 4 +-
tools/skkfep.wrapper.in | 4 -
tools/tool.vala | 186
-----------------------------------------------
10 files changed, 345 insertions(+), 206 deletions(-)
commit 62b102033c79d7c50318e640eddcba132ab29fb6
Author: Daiki Ueno <ueno@unixuser.org>
Date: Mon Jan 30 19:07:12 2012 +0900
Support libfep.
To compile with libfep, pass --enable-fep to configure. It will
install a new program called skkfep for testing.
configure.ac | 11 +++++
tools/Makefile.am | 28 ++++++++++++-
tools/fep.vala | 105
+++++++++++++++++++++++++++++++++++++++++++++++
tools/skkfep.1 | 16 +++++++
tools/skkfep.in | 6 +++
tools/skkfep.wrapper.in | 4 ++
tools/tool.vala | 31 +++++++++++++-
7 files changed, 197 insertions(+), 4 deletions(-)
commit 7135e430344fd9b43e3056b39bef3d09d4a6a19a
Author: Daiki Ueno <ueno@unixuser.org>
Date: Fri Feb 3 10:53:54 2012 +0900
Clear rom kana converter when switching from None -> Start (Issue#11).
Also don't prepend output to preedit when state is top level.
libskk/context.vala | 19 +++++++++----------
libskk/state.vala | 3 +++
tests/basic.c | 6 +++++-
3 files changed, 17 insertions(+), 11 deletions(-)
commit 5a7515eb46ba0ceb17e9dc75005af93a6c0ad9ba
Author: Daiki Ueno <ueno@unixuser.org>
Date: Wed Feb 1 16:53:31 2012 +0900
Add NEWS entries for 0.0.10.
NEWS | 8 +++++++-
1 files changed, 7 insertions(+), 1 deletions(-)
commit 6509e3d05190e69561f0eb8729da3ae0e0884c72
Author: Daiki Ueno <ueno@unixuser.org>
Date: Wed Feb 1 16:51:24 2012 +0900
Port Skk.KeyEvent.from_x_keysym from ibus-skk.
libskk/Makefile.am | 1 +
libskk/context.vala | 10 +-
libskk/key-event.vala | 55 ++-
libskk/keymap.vala | 17 +-
libskk/keysyms.vala | 2106
+++++++++++++++++++++++++++++++++++++++++++++++++
5 files changed, 2184 insertions(+), 5 deletions(-)
commit caf894e1c284a80fc9ff006838685d869ff9ecb3
Author: Daiki Ueno <ueno@unixuser.org>
Date: Tue Jan 31 18:51:12 2012 +0900
Re-enable /libskk/abort test case which was mistakenly disabled.
tests/basic.c | 2 --
1 files changed, 0 insertions(+), 2 deletions(-)
commit 27de85be755ec34925337877d16b857b08e00d51
Author: Daiki Ueno <ueno@unixuser.org>
Date: Tue Jan 31 18:48:19 2012 +0900
Work around euc-jis-2004 coding cookie.
libskk/encoding.vala | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
commit 5b30bd73e1031a28861cd204a0c144161d6ed9df
Author: Daiki Ueno <ueno@unixuser.org>
Date: Tue Jan 31 18:47:41 2012 +0900
Change preedit format for dict edit mode.
libskk/context.vala | 38 +++++++++++++++++++++++---------------
tests/basic.c | 32 +++++++++++++++++---------------
tests/context.c | 2 +-
3 files changed, 41 insertions(+), 31 deletions(-)
commit 6a0389b757218376278ab746d48d1f83d3956f7c
Merge: 988a007 929edad
Author: Daiki Ueno <ueno@unixuser.org>
Date: Mon Jan 30 16:32:25 2012 +0900
Merge branch 'master' of github.com:ueno/libskk
commit 988a0079e0c6647148e96a75a9fc89e69a3493ec
Author: Daiki Ueno <ueno@unixuser.org>
Date: Mon Jan 30 16:31:44 2012 +0900
Respect coding cookie when reading file dict (ibus-skk Issue#45).
libskk/context.vala | 1 +
libskk/encoding.vala | 46
++++++++++++++++++++++++++++++++++++++++++++++
libskk/file-dict.vala | 21 +++++++++++++++++++++
libskk/user-dict.vala | 48
++++++++++++++----------------------------------
4 files changed, 82 insertions(+), 34 deletions(-)
commit 929edada57b33a4f5efd8934878c786dcd7c6cd9
Author: Daiki Ueno <ueno@unixuser.org>
Date: Sun Jan 29 17:07:53 2012 +0900
Fix "Q" binding in default and nicola keymaps (Issue#10).
rules/default/keymap/default.json | 1 -
rules/default/keymap/hankaku-katakana.json | 1 +
rules/default/keymap/hiragana.json | 1 +
rules/default/keymap/katakana.json | 1 +
rules/nicola/keymap/default.json | 1 -
rules/nicola/keymap/kana.json | 3 ++-
tests/basic.c | 4 +++-
7 files changed, 8 insertions(+), 4 deletions(-)
commit 65680c3d71d30d18655aba705fd45936e256c679
Author: Daiki Ueno <ueno@unixuser.org>
Date: Fri Jan 27 10:54:17 2012 +0900
Update git.mk.
git.mk | 30 ++++++++++++++++++------------
1 files changed, 18 insertions(+), 12 deletions(-)
commit 781dd29317463f824c3644a0c36836e81c0108f2
Author: Daiki Ueno <ueno@unixuser.org>
Date: Fri Jan 27 10:17:23 2012 +0900
Move docs/skk.1 to tools/skk.1 so it is installed without
--enable-docs.
docs/Makefile.am | 2 -
docs/skk.1 | 55
-----------------------------------------------------
tools/Makefile.am | 2 +
tools/skk.1 | 55
+++++++++++++++++++++++++++++++++++++++++++++++++++++
4 files changed, 57 insertions(+), 57 deletions(-)
commit e18039c5466cddd2c88c4d63f98e0d2064ce0f3a
Author: Daiki Ueno <ueno@unixuser.org>
Date: Thu Jan 26 15:57:08 2012 +0900
Escape hyphen in skk.1.
docs/skk.1 | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
commit 7cbf39bc44b19f11944b76985c31acfd0106ffd6
Author: Daiki Ueno <ueno@unixuser.org>
Date: Wed Jan 25 17:10:12 2012 +0900
Bump version to 0.0.9.
configure.ac | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit a4cbcaa7f0e7b723d5ef0ff0f1ef5feb7d1830f1
Author: Daiki Ueno <ueno@unixuser.org>
Date: Wed Jan 25 17:09:06 2012 +0900
Request server to close skkserv connection before closing local port.
libskk/skkserv.vala | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
commit 566dd9732c58c070dce57570484b91907dcf7143
Author: Daiki Ueno <ueno@unixuser.org>
Date: Wed Jan 25 17:06:56 2012 +0900
Delete ChangeLog on make distclean when off the tree build.
Makefile.am | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
commit 77d60c6cd6bba2f58fd4d79c4f5d995e4c34d5fb
Author: Daiki Ueno <ueno@unixuser.org>
Date: Tue Jan 17 17:52:08 2012 +0900
Consume any key when "ん" is produced in rom-kana conversion
(Issue#9).
libskk/rom-kana.vala | 9 ++++++---
tests/basic.c | 2 ++
2 files changed, 8 insertions(+), 3 deletions(-)
commit 1a16bb57857efbcbd454fd7c335335bee0d3f37d
Author: Daiki Ueno <ueno@unixuser.org>
Date: Mon Jan 16 12:41:10 2012 +0900
Generate ChangeLog from git log.
Makefile.am | 17 +++++++++++++++++
1 files changed, 17 insertions(+), 0 deletions(-)
commit 3bac7b90023ff50dce464c0a45315c3fa96d3d61
Author: Daiki Ueno <ueno@unixuser.org>
Date: Mon Jan 16 11:56:08 2012 +0900
Add license to README.rules.
rules/README.rules | 11 +++++++++++
1 files changed, 11 insertions(+), 0 deletions(-)
commit 396035a9de5a1d3880f6eb7ad698603c5bc1ee95
Author: Daiki Ueno <ueno@unixuser.org>
Date: Mon Jan 16 11:40:58 2012 +0900
Revert Skk.init coverage hack.
libskk/context.vala | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit 1ee72f95ae7c95b1a61432781fa5cc5d26f07ba2
Author: Daiki Ueno <ueno@unixuser.org>
Date: Mon Jan 16 11:40:32 2012 +0900
Factor out socket closing code in skkserv.vala.
libskk/candidate-list.vala | 23 +++++++++++++----------
libskk/skkserv.vala | 26 +++++++++++++++++---------
2 files changed, 30 insertions(+), 19 deletions(-)
commit d7f20a8015f26c4d8a1d4c2708c62ab49662568a
Author: Daiki Ueno <ueno@unixuser.org>
Date: Mon Jan 16 11:40:08 2012 +0900
Use Gee.LinkedList instead of GLib.SList for stack.
libskk/context.vala | 125
++++++++++++++++++++++++++++++---------------------
libskk/state.vala | 4 +-
2 files changed, 76 insertions(+), 53 deletions(-)
commit b9043aa16f099acb46ca3a413b05fec79961c03e
Author: Daiki Ueno <ueno@unixuser.org>
Date: Fri Jan 13 18:43:43 2012 +0900
Fix memleaks in test cases, minor coverage improvements.
libskk/context.vala | 2 +-
libskk/key-event.vala | 2 +-
libskk/rom-kana.vala | 2 +-
libskk/skkserv.vala | 3 ++-
libskk/state.vala | 1 +
libskk/util.vala | 4 ++++
tests/basic.c | 1 +
tests/cdb-dict.c | 1 +
tests/context.c | 34 +++++++++++++++++++++++++++++++---
tests/rule.c | 10 +++++++---
tests/skkserv.c | 16 +++++++++++++++-
tests/user-dict.c | 1 +
12 files changed, 66 insertions(+), 11 deletions(-)
commit f5e1087f89ff4935532e4138bb770ab2e36c94f9
Author: Daiki Ueno <ueno@unixuser.org>
Date: Fri Jan 13 17:36:51 2012 +0900
Create filter instance per rule.
libskk/rule.vala | 19 ++++++++++++-------
1 files changed, 12 insertions(+), 7 deletions(-)
commit 707f4b3cb75a63bde67c509afbcb0f49dc79fec2
Author: Daiki Ueno <ueno@unixuser.org>
Date: Fri Jan 13 16:03:32 2012 +0900
Add NEWS entry for 0.0.9.
NEWS | 9 +++++++++
1 files changed, 9 insertions(+), 0 deletions(-)
commit ca25ce25cba9913702a4e35ebcde0e51ecebbf36
Author: Daiki Ueno <ueno@unixuser.org>
Date: Fri Jan 13 16:03:14 2012 +0900
Add skkserv test.
tests/Makefile.am | 5 +-
tests/skkserv.c | 164
+++++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 168 insertions(+), 1 deletions(-)
commit a395d3e42123067eaf494ed6b192998201229100
Author: Daiki Ueno <ueno@unixuser.org>
Date: Fri Jan 13 16:02:25 2012 +0900
Fix skkserv completion response handling.
Also make sure to close the socket on finalize.
libskk/skkserv.vala | 8 +++++++-
1 files changed, 7 insertions(+), 1 deletions(-)
commit 159e06616717984b6e1c92b03708e5857feba58c
Author: Daiki Ueno <ueno@unixuser.org>
Date: Fri Jan 13 10:44:01 2012 +0900
Add tests for CDB dict and surrounding text.
Also split tests/context.c into separate files.
libskk/rom-kana.vala | 2 +
tests/Makefile.am | 18 ++-
tests/basic.c | 452
++++++++++++++++++++++++++++++++++++++++++++++
tests/cdb-dict.c | 58 ++++++
tests/cdb-dict.dat | Bin 0 -> 2426 bytes
tests/context.c | 485
--------------------------------------------------
tests/file-dict.c | 5 +
tests/rule.c | 97 ++++++++++
tests/user-dict.c | 22 +++-
9 files changed, 650 insertions(+), 489 deletions(-)
commit 0fede13b00f33586ca5b7db5c81ee858d8c84360
Author: Daiki Ueno <ueno@unixuser.org>
Date: Thu Jan 12 18:46:17 2012 +0900
Improve candidate_list test.
libskk/candidate-list.vala | 3 +-
tests/context.c | 72
++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 74 insertions(+), 1 deletions(-)
commit 4aefb71cf91ef40cc8ca109a8451a6a8f6bbc503
Author: Daiki Ueno <ueno@unixuser.org>
Date: Thu Jan 12 18:19:42 2012 +0900
Make ExprNode a struct instead of a class.
libskk/expr.vala | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
commit 761cef8360277f18ef9d9acc13e6ff8e1ffcfa9c
Author: Daiki Ueno <ueno@unixuser.org>
Date: Thu Jan 12 18:19:21 2012 +0900
Derive EncodingConverter from GLib.Object.
libskk/encoding.vala | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit e255c01ae846f666bc3510509c11343ff3c0a317
Author: Daiki Ueno <ueno@unixuser.org>
Date: Thu Jan 12 18:18:34 2012 +0900
Always add empty dict to increase test coverage.
tests/common.c | 9 ++++++++-
1 files changed, 8 insertions(+), 1 deletions(-)
commit f59f11038d70702dac49f863985859ca6c9dfb47
Author: Daiki Ueno <ueno@unixuser.org>
Date: Thu Jan 12 18:00:39 2012 +0900
Fix compilation warnings.
tests/common.c | 12 +++++++++---
tests/common.h | 5 +++--
tests/context.c | 37 +++++++++++++++++++------------------
tests/user-dict.c | 24 +++++++++++-------------
tools/tool.vala | 32 ++++++++++++++++++++++++++++----
5 files changed, 70 insertions(+), 40 deletions(-)
commit 3bd2c44c776b5623e35e2b10cfa28834c8d78ee0
Author: Daiki Ueno <ueno@unixuser.org>
Date: Thu Jan 12 16:49:19 2012 +0900
Add --enable-valgrind-tests configure option.
configure.ac | 15 +++++++++++++++
tests/Makefile.am | 8 ++++++--
2 files changed, 21 insertions(+), 2 deletions(-)
commit d53e73e4b47cb21010b1a4118ec15066e6a25854
Author: Daiki Ueno <ueno@unixuser.org>
Date: Thu Jan 12 16:33:15 2012 +0900
Fix skk command description in the command line help.
po/ja.po | 12 ++++++++----
tools/tool.vala | 3 ++-
2 files changed, 10 insertions(+), 5 deletions(-)
commit dba80820a606eb1fd1e92f3fcb6b698801602dab
Author: Daiki Ueno <ueno@unixuser.org>
Date: Thu Jan 12 16:15:40 2012 +0900
Fix gtk-doc link in README.
README | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit 4d00219f0619c5ddccfab1d7e4c080ca19b83658
Author: Daiki Ueno <ueno@unixuser.org>
Date: Thu Jan 12 13:54:23 2012 +0900
Support code coverage check with lcov.
Makefile.am | 16 ++++++++++++++++
configure.ac | 14 ++++++++++++++
lcov.mk | 23 +++++++++++++++++++++++
libskk/Makefile.am | 7 ++++++-
4 files changed, 59 insertions(+), 1 deletions(-)
commit c3c04a918260563f68ab845d15fd13a0f579e79e
Author: Daiki Ueno <ueno@unixuser.org>
Date: Thu Jan 12 11:53:54 2012 +0900
Don't export internal symbols from libskk.so.
configure.ac | 15 +++++++++++++++
libskk/Makefile.am | 12 ++++++++++--
2 files changed, 25 insertions(+), 2 deletions(-)
commit 67bc47fb031ed0b1e761506d96e218b54ff7d4fe
Author: Daiki Ueno <ueno@unixuser.org>
Date: Thu Jan 12 11:26:46 2012 +0900
Doc fix.
libskk/cdb-dict.vala | 2 +-
libskk/context.vala | 2 +-
libskk/file-dict.vala | 2 +-
libskk/key-event-filter.vala | 7 ++++++-
libskk/nicola.vala | 10 +++++++++-
libskk/skkserv.vala | 2 +-
libskk/user-dict.vala | 2 +-
7 files changed, 20 insertions(+), 7 deletions(-)
commit 524a25c85be58fb6177fee38717846c2dca599c6
Author: Daiki Ueno <ueno@unixuser.org>
Date: Thu Jan 12 11:13:50 2012 +0900
Split out some classes to separate files to make valadoc happy.
libskk/Makefile.am | 2 +
libskk/candidate-list.vala | 410
++++++++++++++++++++++++++++++++++++++++++
libskk/candidate.vala | 390
---------------------------------------
libskk/key-event-filter.vala | 63 +++++++
libskk/key-event.vala | 45 -----
5 files changed, 475 insertions(+), 435 deletions(-)
commit 499e7a56661ec0b1d736139340f23fe840d36b7e
Author: Daiki Ueno <ueno@unixuser.org>
Date: Thu Jan 12 10:30:47 2012 +0900
Update copyright year.
Makefile.am | 4 ++--
NEWS | 4 ++--
README | 4 ++--
configure.ac | 4 ++--
libskk/Makefile.am | 4 ++--
libskk/candidate.vala | 4 ++--
libskk/cdb-dict.vala | 4 ++--
libskk/context.vala | 4 ++--
libskk/dict.vala | 4 ++--
libskk/encoding.vala | 4 ++--
libskk/expr.vala | 4 ++--
libskk/file-dict.vala | 4 ++--
libskk/key-event.vala | 4 ++--
libskk/keymap.vala | 4 ++--
libskk/map-file.vala | 4 ++--
libskk/nicola.vala | 4 ++--
libskk/rom-kana.vala | 4 ++--
libskk/rule.vala | 4 ++--
libskk/skkserv.vala | 4 ++--
libskk/state.vala | 4 ++--
libskk/user-dict.vala | 4 ++--
libskk/util.vala | 4 ++--
rules/Makefile.am | 4 ++--
tests/Makefile.am | 4 ++--
tools/Makefile.am | 4 ++--
tools/tool.vala | 4 ++--
26 files changed, 52 insertions(+), 52 deletions(-)
commit 8ca45cc27d4feca52bb08785f6b2220aac327a91
Author: Daiki Ueno <ueno@unixuser.org>
Date: Thu Jan 12 10:27:06 2012 +0900
Import skk.1 from Debian.
docs/Makefile.am | 2 +
docs/skk.1 | 55
++++++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 57 insertions(+), 0 deletions(-)
commit 8874edd2f0a7bf852a6a4f0a5d03d0dbc4a2768a
Author: Daiki Ueno <ueno@unixuser.org>
Date: Wed Jan 11 17:16:07 2012 +0900
Add NEWS entry for 0.0.8.
NEWS | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
commit 63b79d2e99ece7b9b8ef49b3c2e52123f05bd310
Author: Daiki Ueno <ueno@unixuser.org>
Date: Wed Jan 11 17:05:09 2012 +0900
Bump version to 0.0.8.
configure.ac | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit d2f6bf8c335bbc45bc1ec9f8f7d37fffd7a01d43
Author: Daiki Ueno <ueno@unixuser.org>
Date: Wed Jan 11 17:04:55 2012 +0900
Fix preedit change detection.
libskk/context.vala | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
commit 5ea878fad07966555c8723a079d23d52acdc0391
Author: Daiki Ueno <ueno@unixuser.org>
Date: Tue Jan 10 18:25:22 2012 +0900
Don't expose State's CandidateList to client.
Also make sure to disconnect signal handlers from per-state objects.
libskk/candidate.vala | 399
+++++++++++++++++++++++++++++++++----------------
libskk/context.vala | 67 ++++++---
libskk/state.vala | 3 +-
3 files changed, 321 insertions(+), 148 deletions(-)
commit ca7d6761741ea3a44f16419bdb0b54af7fa77a0d
Author: Daiki Ueno <ueno@unixuser.org>
Date: Wed Jan 11 10:57:35 2012 +0900
Fix a typo in the code swapping candidates in user dict.
libskk/user-dict.vala | 5 ++---
1 files changed, 2 insertions(+), 3 deletions(-)
commit ba9af5354e8f39e5a32cce000993dfc84d2504e1
Author: Daiki Ueno <ueno@unixuser.org>
Date: Wed Jan 11 10:43:01 2012 +0900
Call EncodingConverter.convert repeatedly until all the input is
consumed.
This fixes ibus-skk Issue#44.
libskk/encoding.vala | 28 +++++++++++++++++++---------
1 files changed, 19 insertions(+), 9 deletions(-)
commit d0393db1318087a83ac481078f4f9e2dd3d55e39
Author: Daiki Ueno <ueno@unixuser.org>
Date: Tue Jan 10 10:17:31 2012 +0900
Add Skk.Context.{add|remove}_dictionary.
libskk/context.vala | 25 ++++++++++++++++++++++++-
1 files changed, 24 insertions(+), 1 deletions(-)
commit 1c9d09c0335460a9c4cbada1b7e13b3727f61aa3
Author: Daiki Ueno <ueno@unixuser.org>
Date: Tue Jan 10 10:08:03 2012 +0900
Update translation.
po/ja.po | 9 +++------
1 files changed, 3 insertions(+), 6 deletions(-)
commit 4e7309c204cc50c7c28b81833a51b24001cb56af
Author: Daiki Ueno <ueno@unixuser.org>
Date: Tue Jan 10 10:05:46 2012 +0900
Don't change input mode when ▽ひらがな + 'q' => ヒラガナ
(Issue#8).
libskk/state.vala | 2 +-
po/ja.po | 25 ++++++++++++++++---------
tests/context.c | 12 ++++++------
3 files changed, 23 insertions(+), 16 deletions(-)
commit 99b233ce406cca0c3cd5918e85d6be0b86fc41c6
Author: Daiki Ueno <ueno@unixuser.org>
Date: Fri Jan 6 18:33:43 2012 +0900
Fix the last commit; register completion test.
tests/user-dict.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
commit 5b6cd8eb8dbaa4cbc45f1abaec525bbc9cb05e56
Author: Daiki Ueno <ueno@unixuser.org>
Date: Fri Jan 6 18:15:43 2012 +0900
Add completion test for user-dict.
tests/common.c | 37 ++++++++++++++++++++++---------------
tests/common.h | 3 ++-
tests/context.c | 34 +++++++++++++++++-----------------
tests/user-dict.c | 43 ++++++++++++++++++++++++++++++++++++++++++-
4 files changed, 83 insertions(+), 34 deletions(-)
commit e7d52908e0797f884e48f941edac78953ba2cb6c
Author: Daiki Ueno <ueno@unixuser.org>
Date: Fri Jan 6 17:29:17 2012 +0900
Avoid memleaks in Gee.TreeSet.
libskk/user-dict.vala | 9 ++++++---
1 files changed, 6 insertions(+), 3 deletions(-)
commit fb24c2c6493f6f73685433619932f83088ab71c7
Author: Daiki Ueno <ueno@unixuser.org>
Date: Fri Jan 6 12:00:41 2012 +0900
Install skk-1.0.deps in vapi dir.
libskk/Makefile.am | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit f7918d48e9130804d48fdf320313bc2a91db5824
Author: Daiki Ueno <ueno@unixuser.org>
Date: Fri Jan 6 11:59:59 2012 +0900
Improve exception message when loading map-file fails.
libskk/map-file.vala | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit 8674aa83f97a0a5122af1fb794244a111b15e081
Author: Daiki Ueno <ueno@unixuser.org>
Date: Thu Jan 5 16:39:32 2012 +0900
Bump version to 0.0.7.
NEWS | 8 +++++++-
configure.ac | 2 +-
2 files changed, 8 insertions(+), 2 deletions(-)
commit ca7bc375698fa217842dfcf946c6f75bdbac2f7e
Author: Daiki Ueno <ueno@unixuser.org>
Date: Thu Jan 5 16:24:26 2012 +0900
Preserve State.input_mode when reset.
libskk/candidate.vala | 16 ++++++++++++++++
libskk/state.vala | 33 ++++++++-------------------------
2 files changed, 24 insertions(+), 25 deletions(-)
commit 80d5bf9f011503b09271c3223847c980ab351792
Author: Daiki Ueno <ueno@unixuser.org>
Date: Wed Jan 4 17:56:12 2012 +0900
Remove erroneous comma in rule example (Issue#7).
rules/README.rules | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit b43cd99a70d85615e28c4ef0b76f479774202917
Author: Daiki Ueno <ueno@unixuser.org>
Date: Wed Jan 4 17:54:33 2012 +0900
Check modifiers when handling latin keysyms in NoneStateHandler
(Issue#5).
libskk/state.vala | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
commit dd5233647ecfdcea689adfe565e03cc820e9b336
Author: Daiki Ueno <ueno@unixuser.org>
Date: Wed Jan 4 17:52:07 2012 +0900
Make user dict file modes private (Issue#4).
libskk/user-dict.vala | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit 6cd3a6e63fd454d7fa0b71dc7010a4799870b9a3
Author: Daiki Ueno <ueno@unixuser.org>
Date: Wed Jan 4 17:50:27 2012 +0900
Fix candidate cursor movement with x and SPC.
libskk/candidate.vala | 156
+++++++++++++++++++++++++++++++++++++++++++++---
libskk/context.vala | 1 +
libskk/state.vala | 41 ++++++++-----
tests/context.c | 25 +++++++-
4 files changed, 194 insertions(+), 29 deletions(-)
commit d8bc3891659061969e08c3cbbf1e59114cd98aed
Author: Daiki Ueno <ueno@unixuser.org>
Date: Thu Dec 29 19:01:42 2011 +0900
Optimize the number of property notification.
libskk/candidate.vala | 4 +++-
libskk/context.vala | 29 ++++++++++++++++++++---------
2 files changed, 23 insertions(+), 10 deletions(-)
commit 605f2cb6f226592eec49db65ca0147315f7e57f4
Author: Daiki Ueno <ueno@unixuser.org>
Date: Thu Dec 29 11:49:17 2011 +0900
Don't update preedit when CandidateList is cleared.
libskk/context.vala | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
commit 2150d6572de6300d8a467c36eccb10dcb6b1aa70
Author: Daiki Ueno <ueno@unixuser.org>
Date: Wed Dec 28 18:03:18 2011 +0900
Fix doc.
libskk/candidate.vala | 14 ++++++++------
libskk/cdb-dict.vala | 13 ++++++++++++-
libskk/context.vala | 15 +++++++++++----
libskk/file-dict.vala | 4 +++-
libskk/key-event.vala | 38 +++++++++++++++++++++++++++++++++++---
5 files changed, 69 insertions(+), 15 deletions(-)
commit 8ae149098b1ceafecee935137a07713fbfc3b7db
Author: Daiki Ueno <ueno@unixuser.org>
Date: Wed Dec 28 17:13:40 2011 +0900
Bump version to 0.0.6.
configure.ac | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit 6381269eda384aaaad92d7ab8680fdf8f90a8b81
Author: Daiki Ueno <ueno@unixuser.org>
Date: Wed Dec 28 17:14:23 2011 +0900
Relax valac version requirement for Fedora 15.
configure.ac | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit 88a98083ae9ad434849d92b25a8a7baf800781c2
Author: Daiki Ueno <ueno@unixuser.org>
Date: Wed Dec 28 16:51:12 2011 +0900
Make sure to abort dict edit and restore surrounding text on
Context.reset.
configure.ac | 2 +-
libskk/context.vala | 21 +++++++++++++++++----
libskk/state.vala | 6 ++++++
tests/common.c | 5 ++++-
tests/context.c | 8 +++++---
tools/tool.vala | 1 +
6 files changed, 34 insertions(+), 9 deletions(-)
commit 37e20192619520da1051622949d67ac57c102366
Author: Daiki Ueno <ueno@unixuser.org>
Date: Wed Dec 28 12:33:31 2011 +0900
Support (current-time-string), (pwd), and (skk-version).
libskk/expr.vala | 15 +++++++++++++--
1 files changed, 13 insertions(+), 2 deletions(-)
commit 914581ea7fed4209aa5f7a75015871b3f22fbec2
Author: Daiki Ueno <ueno@unixuser.org>
Date: Wed Dec 28 11:32:36 2011 +0900
Add doc.
NEWS | 40 ++++++++++++++++++++++++++++++++++++++++
README | 30 ++++++++++++++++++++++++++++++
libskk/context.vala | 25 +++++++++++++++++++++++++
3 files changed, 95 insertions(+), 0 deletions(-)
commit 16f3818753c48679909be6097487efe2ac1e7c1a
Author: Daiki Ueno <ueno@unixuser.org>
Date: Wed Dec 28 11:32:11 2011 +0900
Assign Left and Right to shrink-preedit and expand-preedit.
rules/default/keymap/default.json | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
commit 7043e20bf0eef7e4c96c8a397e78581f9b989873
Author: Daiki Ueno <ueno@unixuser.org>
Date: Wed Dec 28 11:31:47 2011 +0900
Fix memleak on loading user dict.
libskk/user-dict.vala | 22 ++++++++++++++++++++--
1 files changed, 20 insertions(+), 2 deletions(-)
commit a25700ec48fffb89d0bb95aeae24ba4bb0364b77
Author: Daiki Ueno <ueno@unixuser.org>
Date: Tue Dec 27 18:28:33 2011 +0900
Make sure to commit remaining surrounding text after SPC following
▽.
libskk/state.vala | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
commit 9e85632c09a49f163c2d0d626fc1dfa39e548ede
Author: Daiki Ueno <ueno@unixuser.org>
Date: Tue Dec 27 18:24:26 2011 +0900
Fix reconvert behavior.
libskk/context.vala | 21 ++++++++++-
libskk/state.vala | 98
+++++++++++++++++++++++++++++++++++++++-----------
2 files changed, 96 insertions(+), 23 deletions(-)
commit 523520a246908f6b9b0d614b8e0bd75e9bb6896d
Author: Daiki Ueno <ueno@unixuser.org>
Date: Tue Dec 27 17:01:08 2011 +0900
Support reconvert based on surrounding text.
libskk/context.vala | 6 +++
libskk/state.vala | 71
++++++++++++++++++++++++++++---------
rules/default/keymap/default.json | 4 ++-
3 files changed, 63 insertions(+), 18 deletions(-)
commit ae78f9f1e76f3ab7dc5c15a56a89c2569b96d72a
Author: Daiki Ueno <ueno@unixuser.org>
Date: Mon Dec 26 18:05:20 2011 +0900
Refactor API.
Split Context.get_output into peek_output and poll_output, and abolish
list_typing_rule.
libskk/context.vala | 42 +++++++++++++++++++++++++++++-------------
libskk/key-event.vala | 3 +--
libskk/nicola.vala | 38 +++++++++++++++++++++++++++++---------
libskk/rule.vala | 2 +-
tools/tool.vala | 4 ++--
5 files changed, 62 insertions(+), 27 deletions(-)
commit d3aae2dfe1384aa74a27f9f4f556c418b7de811e
Author: Daiki Ueno <ueno@unixuser.org>
Date: Mon Dec 26 16:29:09 2011 +0900
Simplify rule loading API.
libskk/map-file.vala | 6 +++---
libskk/rule.vala | 46
+++++++++++++++++++++++++++++-----------------
2 files changed, 32 insertions(+), 20 deletions(-)
commit 207ef0f6a19b77da8017a530a86cfcd970b4a835
Author: Daiki Ueno <ueno@unixuser.org>
Date: Sun Dec 25 09:55:28 2011 +0900
Bump version to 0.0.5.
configure.ac | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit 18f3427bda4937096123c517dd6fc4111e7e11e8
Author: Daiki Ueno <ueno@unixuser.org>
Date: Sun Dec 25 09:54:46 2011 +0900
Add license header to Makefile.am and configure.ac.
Makefile.am | 16 ++++++++
configure.ac | 16 ++++++++
libskk/Makefile.am | 99
++++++++++++++++++++++++++++++----------------------
rules/Makefile.am | 46 +++++++++++++++++++-----
tests/Makefile.am | 16 ++++++++
tools/Makefile.am | 22 ++++++++++-
6 files changed, 161 insertions(+), 54 deletions(-)
commit d54734ab2b752c9f5a2e6748ed5ec7ece6707f31
Author: Daiki Ueno <ueno@unixuser.org>
Date: Sun Dec 25 09:36:29 2011 +0900
Fix buffer overrun when reading skkserv response (Issue#2).
libskk/skkserv.vala | 7 +++++--
1 files changed, 5 insertions(+), 2 deletions(-)
commit 5bc3defcaf7fe53dbe0955c2043ed9fa29d5f91b
Author: Daiki Ueno <ueno@unixuser.org>
Date: Fri Dec 23 07:30:29 2011 +0900
Clarify wording "rule" and "map file" in README.rules.
rules/README.rules | 31 ++++++++++++++++---------------
1 files changed, 16 insertions(+), 15 deletions(-)
commit cfc66724fefe53f9db603e6e651b17e663182303
Author: Daiki Ueno <ueno@unixuser.org>
Date: Thu Dec 22 16:40:13 2011 +0900
Notify Context:candidates change.
libskk/context.vala | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
commit f21878c4ad915aa1e871627d54c839e234f23fbf
Author: Daiki Ueno <ueno@unixuser.org>
Date: Thu Dec 22 16:09:06 2011 +0900
Fix zipcode conversion and avoid memleaks in Gee.TreeSet.
libskk/candidate.vala | 93 ++++++++++++------------------------------
libskk/cdb-dict.vala | 2 +-
libskk/context.vala | 49 +++++++++++++----------
libskk/dict.vala | 31 +++++++++------
libskk/file-dict.vala | 2 +-
libskk/skkserv.vala | 6 ++-
libskk/state.vala | 66 ++++++++++++++++++------------
libskk/user-dict.vala | 106
++++++++++++++++++++++++++-----------------------
tests/common.c | 11 ++++-
tests/context.c | 4 ++
tests/file-dict.c | 18 ++++++--
11 files changed, 203 insertions(+), 185 deletions(-)
commit 939fe86af61257a8946e88310174f5ef04ec6b0b
Author: Daiki Ueno <ueno@unixuser.org>
Date: Thu Dec 22 11:14:48 2011 +0900
Fix a typo in README.
README | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit 7f813d52d7e26da2407659e0ffb575f378c287cb
Author: Daiki Ueno <ueno@unixuser.org>
Date: Thu Dec 22 11:13:08 2011 +0900
Reduce the number of pkg-config dependencies.
configure.ac | 20 ++++++++++++++++----
1 files changed, 16 insertions(+), 4 deletions(-)
commit b6f23cab13196693505d0e67f3b0d946ec8f03ea
Author: Daiki Ueno <ueno@unixuser.org>
Date: Thu Dec 22 11:00:49 2011 +0900