forked from tzhuan/scim-anthy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
2859 lines (1803 loc) · 86.1 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
2010-05-19 Takuro Ashie <[email protected]>
* data/atok.sty: Assign Control + N key to CommitSelectedSegmentKey.
https://bugs.launchpad.net/ubuntu-jp-improvement/+bug/582036
2009-0l-29 Takuro Ashie <[email protected]>
* configure.ac: Version-1.2.7 (BRANCH_1_2).
2009-0l-15 Takuro Ashie <[email protected]>
* src/scim_anthy_conversion.cpp, src/scim_anthy_setup.cpp,
src/scim_anthy_prefs.h: Set UTF-8 as default encoding.
2008-08-04 Takuro Ashie <[email protected]>
* src/scim_anthy_reading.cpp: Set NICOLA engine as case sensitive.
2008-03-29 Takuro Ashie <[email protected]>
* configure.ac: Version-1.2.6 (BRANCH_1_2).
2008-03-28 Takuro Ashie <[email protected]>
* src/scim_anthy_factory.cpp, src/scim_anthy_imengine.cpp,
src/scim_anthy_prefs.cpp:
Fix typo. Thanks Malcolm Parsons and Ikuya Awashiro.
2008-02-29 Takuro Ashie <[email protected]>
* configure.ac: Version-1.3.1.
2008-02-29 Takuro Ashie <[email protected]>
* configure.ac: Version-1.2.5 (BRANCH_1_2).
2008-02-27 Takuro Ashie <[email protected]>
* src/scim_anthy_imengine.h, src/scim_anthy_preedit.h,
src/scim_anthy_factory.h:
Removed needless includes.
2008-02-26 Takuro Ashie <[email protected]>
* src/scim_anthy_factory.cpp, src/scim_anthy_conversion.cpp:
Initialize the Anthy library at Conversion class instead of at
AnthyFactory class.
2008-02-26 Takuro Ashie <[email protected]>
* src/scim_anthy_setup.cpp: Sort style file list by name.
2008-02-26 Takuro Ashie <[email protected]>
* po/POTFILES.in: Fix a build problem.
2008-02-25 Takuro Ashie <[email protected]>
* src/scim_anthy_factory.cpp: Update credit.
2008-01-23 Takuro Ashie <[email protected]>
* src/scim_anthy_conversion.cpp, src/scim_anthy_diction.cpp,
src/scim_anthy_imengine.cpp, src/scim_anthy_kana.cpp,
src/scim_anthy_preedit.cpp, src/scim_anthy_prefs.cpp,
src/scim_anthy_setup.cpp, src/scim_anthy_tray.cpp,
src/scim_anthy_utils.cpp:
Added missing include files to build against gcc-4.3.
2007-10-12 Takuro Ashie <[email protected]>
* po/de.po: Added. Thanks Gerrit Sangel.
2007-05-29 Takuro Ashie <[email protected]>
* data/nicola-f.sty: Added. Thanks MORIYAMA Masayuki.
You also need to tune X Window System to apply NICOLA-F style completly.
Please see the following site for more details:
http://d.hatena.ne.jp/tree3yama/20070513/1179067686#c1180408348
2007-05-29 Takuro Ashie <[email protected]>
* configure.ac: Version-1.2.4 (BRANCH_1_2).
2007-05-21 Takuro Ashie <[email protected]>
* src/scim_color_button.{cpp,h}: Renamed to
scim_anthy_color_button.{cpp,h}.
* src/scim_anthy_color_button.{cpp.h]: Added.
* src/Makefile.am, scim_anthy_setup.cpp: Renamed to
scim_anthy_color_button* and ScimAnthyColorButton*.
2007-05-14 Takuro Ashie <[email protected]>
* src/scim_anthy_key2kana.cpp: Clear m_last_key on clear().
2007-05-14 Takuro Ashie <[email protected]>
* src/scim_anthy_key2kana.cpp: Fix a bug that voiced consonants are
gone after inputing "Ro" has been fixed. Thanks MORIYAMA Masayuki.
2007-04-29 Takuro Ashie <[email protected]>
* configure.ac: Version-1.2.3 (BRANCH_1_2).
2007-04-18 Takuro Ashie <[email protected]>
* src/scim_anthy_setup.{cpp,h}, src/scim_anthy_setup_kana.cpp,
src/scim_anthy_setup_romaji.cpp:
Add create_subgroup_label(). Migrate all create_check_buton() to
GtkTable.
2007-04-16 Takuro Ashie <[email protected]>
* src/scim_anthy_factory.{cpp,h}, src/scim_anthy_key2kana.{cpp,h},
src/scim_anthy_prefs.h, src/scim_anthy_default_table.cpp:
Add spcial treatment for "RO" key of JIS kana layout. It requires
scim-1.4.6 or later (it is not released yet).
2007-04-06 Takuro Ashie <[email protected]>
* src/scim_anthy_setup.cpp: Move "All" item in the key category menu to
top, and capitalize it.
* po/ja.po: Update.
2007-04-06 Takuro Ashie <[email protected]>
* src/scim_anthy_setup.cpp: Move prediction related preferences to
"Common" page.
* po/ja.po: Update.
2007-04-05 Takashi Nakamoto <[email protected]>
* configure.ac, src/scim_anthy_helper.cpp,
src/scim_anthy_setup.cpp
Rename SCIM_BUILD_TRAY SCIM_ANTHY_BUILD_TRAY.
* configure.ac, src/Makefile.am
SCIM_BUILD_TRAY is used to determine whether scim_anthy_tray.cpp
will be compiled.
2007-04-04 Takuro Ashie <[email protected]>
* src/scim_anthy_setup.{cpp,h}, src/scim_anthy_setup_kana.cpp:
Arrange left alignment of widgets on kana page.
2007-04-04 Takuro Ashie <[email protected]>
* src/scim_anthy_setup.cpp, src/scim_anthy_table_editor.cpp:
Add title labels for GtkTreeView widgets.
* po/ja.po: Update.
2007-04-04 Takuro Ashie <[email protected]>
* src/scim_anthy_set.cpp: Use GtkOptionMenu for non editable dropdown
list (although GtkOptionMenu is deplecated on latest GTK+...).
2007-04-04 Takuro Ashie <[email protected]>
* src/scim_anthy_setup.cpp, src/scim_anthy_setup_kana.cpp,
src/scim_anthy_setup_romaji.cpp:
Fix padding of most outer containers and fix capitalization of title
labels to comply with Gnome HIG.
* po/ja.po: Update.
2007-04-04 Takuro Ashie <[email protected]>
* src/scim_anthy_setup.cpp: Add SCIM_BUILD_TRAY compile condition.
2007-04-04 Takashi Nakamoto <[email protected]>
* configure.ac
Fix the bug that tray is not built even if the SCIM supports
gtkutils.
* configure.ac, src/scim_anthy_helper.cpp
The tray icon won't be built if SCIM doesn't have gtkutils.
* src/scim_anthy_helper.cpp
Fix the bug that the helper window remains as a garbage window
even after hide_*() is called.
2007-04-02 Takashi Nakamoto <[email protected]>
* src/scim_anthy_imengine.cpp
Fix the bug that helper windows remain as a garbage window
even after reset() is called.
2007-03-30 Takashi Nakamoto <[email protected]>
* configure.ac, bootstrap:
Remove all files generated automatically by "autopoint" from CVS
repository.
2007-03-29 Takuro Ashie <[email protected]>
* src/scim_anthy_imengine.{cpp,h}: Show aux string again if the lookup
table is activated on focus in event (Merge from BRANCH_1_2).
Thanks TAGOH-san and somebody who contributes the patch.
2007-03-29 Takashi Nakamoto <[email protected]>
* Version-1.3.0.
2007-03-28 Takuro Ashie <[email protected]>
* src/scim_anthy_tray.cpp: Define TRAY_ICON_SIZE.
2007-03-28 Takuro Ashie <[email protected]>
* src/scim_anthy_conversion.cpp: Fix a bug that ANTHY_RECONVERT_ALWAYS
was used on normal conversion.
2007-03-23 Takuro Ashie <[email protected]>
* src/scim_anthy_tray.cpp: Set transparency of tray icon.
2007-03-23 Takashi Nakamoto <[email protected]>
* src/scim_anthy_imengine.cpp: Set "EUC-JP" for the character
encoding of the string to pass Kasumi.
* data/diction: Add one empty line to read the first chunk
correctly.
* src/scim_anthy_diction.cpp: disable diction fuction if the
diction file cannot be loaded correctly.
2007-03-22 Takuro Ashie <[email protected]>
* src/scim_anthy_conversion.cpp, src/scim_anthy_setup.cpp:
Add "UTF-8" into dictionary encodings list.
2007-03-22 Takuro Ashie <[email protected]>
* src/scim_anthy_tray.cpp: Set tray icon size to 18.
I prefer 18 than 20 :)
2007-03-22 Takuro Ashie <[email protected]>
* src/scim_anthy_imengine.cpp: Suppress compile time warnings.
* src/scim_anthy_tray.cpp: Ditto.
2007-03-21 Takuro Ashie <[email protected]>
* src/scim_anthy_prefs.cpp: Remove SCIM_ANTHY_CONFIG_DICTION_FILE.
* src/scim_anthy_diction.cpp: Ditto. And load ~/.scim/Anthy/diction
instead of the system wide diction file if it exists.
2007-03-20 Takuro Ashie <[email protected]>
* src/scim_anthy_setup.cpp: Remove some needless config items.
Move tray icon config to toolbar page.
* src/scim_anthy_prefs.cpp: Fix a label.
* po/ja.po: Update.
2007-03-20 Takuro Ashie <[email protected]>
* src/scim_anthy_prefs.h: Remove categories from new config items.
2007-03-20 Takuro Ashie <[email protected]>
* src/scim_anthy_imengine.cpp, src/scim_anthy_helper.cpp:
It is not needed to add SCIM_TRANS_CMD_REQUEST on sending helper event.
SCIM will take care about it.
2007-03-20 Takashi Nakamoto <[email protected]>
* src/scim_anthy_helper.cpp, src/scim_anthy_helper.h
src/scim_anthy_const.h, src/scim_anthy_imengine.cpp:
Enable selecting candidates by mouse click.
2007-03-11 Takashi Nakamoto <[email protected]>
* src/scim_anthy_helper.cpp, src/scim_anthy_helper.h:
Drastic changes on manipulation of the helper window and the
note window to avoid their flickering.
2007-03-09 Takuro Ashie <[email protected]>
* src/scim_anthy_prefs.h: Reorder some config items.
2007-03-06 Takashi Nakamoto <[email protected]>
* src/scim_anthy_imengine.cpp:
Fix the bug that the aux string is not updated on the custom
lookup window.
2007-03-05 Takuro Ashie <[email protected]>
* src/scim_anthy_setup.cpp:
Remove launch buttons in the dictionary page.
2007-03-05 Takuro Ashie <[email protected]>
* src/scim_anthy_setup.cpp: Set sensitivity of dition check button.
* src/scim_anthy_prefs.cpp: Fix some messages.
* po/ja.po: Update.
2007-03-05 Takuro Ashie <[email protected]>
* src/scim_anthy_prefs.cpp, src/scim_anthy_setup.cpp:
Add UI for SCIM_ANTHY_CONFIG_USE_CUSTOM_LOOKUP_WINDOW.
2007-03-04 Takuro Ashie <[email protected]>
* src/scim_anthy_prefs.cpp, src/scim_anthy_setup.cpp:
Add UI for some new configuration items.
2007-02-24 Takuro Ashie <[email protected]>
* configure.ac: Bump version number.
* NEWS: Update.
2007-02-24 Takuro Ashie <[email protected]>
* src/Makefile.am, src/scim_anthy_const.h, src/scim_anthy_helper.h,
src/scim_anthy_imengine.cpp:
Remove GTK+2 dependency from scim-anthy module.
2007-02-15 Takashi Nakamoto <[email protected]>
* src/scim_anthy_factory.cpp, src/scim_anthy_factory.h,
src/scim_anthy_imengine.cpp, src/scim_anthy_tray.h
src/scim_anthy_prefs.h
Added the option to hide the scim-anthy tray icon.
* configure.ac
increase the requirement version of gtk+-2.0 to 2.8.0 due to the
funciton "gtk_menu_shell_set_take_focus".
2007-02-14 Takashi Nakamoto <[email protected]>
* src/scim_anthy_factory.cpp, src/scim_anthy_factory.h,
src/scim_anthy_imengine.h, src/scim_anthy_imengine.cpp,
src/scim_anthy_helper.cpp, src/scim_anthy_prefs.h
- Fixed the bug that the note window is displayed above
the lookup window.
- Added my copyright notice.
- Added some configuration options for colors, fonts and so on.
- New function to disable the custom lookup window.
- Give me chocolates!
2007-02-09 Takashi Nakamoto <[email protected]>
* src/scim_anthy_helper.cpp, src/scim_anthy_helper.h
- Added a new option to determine the face font to show a note.
- Some default colors are changed according to my favorite.
2007-02-05 Takashi Nakamoto <[email protected]>
* src/scim_anthy_helper.cpp, src/scim_anthy_helper.h
- Fundamental changes around the colors.
- Change the padding size of each candidate for good-looking.
2007-02-04 Takashi Nakamoto <[email protected]>
* src/scim_anthy_diction.cpp, src/scim_anthy_imengine.cpp
Changes about the line feed code at the end of diction text.
2007-02-03 Takashi Nakamoto <[email protected]>
* data/conjugation, data/diction, src/scim_anthy_diction.cpp
- Imported most of diction data from prime-dict.
Thanks to the authors of prime-dict.
- Improved conjugation file.
2007-01-21 Takashi Nakamoto <[email protected]>
* data/conjugation, src/scim_anthy_diction.cpp,
src/scim_anthy_diction.h:
Support declinable words for diction.
2007-01-14 Takashi Nakamoto <[email protected]>
* src/scim_anthy_imengine.cpp, src/scim_anthy_imengine.h,
src/scim_anthy_tray.cpp:
- Fixed the problem that the general menu items of tray icon cannot
be activated by clicking the left button.
- Changed the label of the general menu items.
2007-01-06 Takuro Ashie <[email protected]>
* src/scim_anthy_utils.h: Include missing header files.
Thanks Gregor Waltz.
2006-12-28 Takashi Nakamoto <[email protected]>
* src/scim_anthy_tray.cpp, src/scim_anthy_tray.h,
src/scim_anthy_imengine.cpp, src/scim_anthy_helper.cpp,
src/scim_anthy_const.h:
The skelton of right click menu for the tray icon.
2006-12-27 Takashi Nakamoto <[email protected]>
* src/scim_anthy_tray.cpp, src/scim_anthy_tray.h:
- Configure the tray button padding to be 0.
- Reserve the right button click on the tray button for showing
a general menu to change various modes.
- Implement the tray icon with GtkEventBox + GtkLabel
alternative to the GtkButton.
(see USE_GTK_BUTTON_FOR_TRAY macro in src/scim_anthy_tray.h)
- Fix the problem that the tray icon cannot be hidden properly.
- Use the input methods icons, available from
http://code.google.com/p/inputmethod-icons/, for tray.
2006-12-24 Takashi Nakamoto <[email protected]>
* src/scim_anthy_tray.cpp, src/scim_anthy_tray.h,
src/scim_anthy_imengine.cpp, src/scim_anthy_imengine.h,
src/scim_anthy_helper.cpp, src/scim_anthy_helper.h,
src/scim_anthy_preedit.h, src/scim_anthy_key2kana_table.h,
src/scim_anthy_const.h, src/Makefile.am:
Reduce the number of tray icons to one.
* src/scim_anthy_diction.cpp, data/Makefile.am,
data/conjugation:
Test data to append conjugated ending
2006-12-23 Takashi Nakamoto <[email protected]>
* src/scim_anthy_tray.cpp:
Prevent the menu widgets from taking focus.
2006-12-20 Takashi Nakamoto <[email protected]>
* src/scim_anthy_helper.cpp, src/scim_anthy_tray.cpp:
Hide tray icons at the time of focus out.
* src/scim_anthy_helper.cpp:
Add missing "break" statements.
* src/scim_anthy_diction.cpp, src/scim_anthy_diction.h,
src/scim_anthy_imengine.cpp, src/scim_anthy_imengine.h:
Change matching function for finding diction of conjugated words.
* data/diction:
Add part of speech lines and new examples.
2006-12-19 Takuro Ashie <[email protected]>
* src/scim_anthy_helper.cpp:
- Use "delete" for objects allocated by "new".
- Initialize global variables.
2006-12-18 Takashi Nakamoto <[email protected]>
* src/scim_anthy_tray.cpp, src/scim_anthy_tray.h,
src/scim_anthy_helper.cpp, src/scim_anthy_helper.h,
src/scim_anthy_imengine.cpp:
Complete tray icons.
2006-12-17 Takashi Nakamoto <[email protected]>
* src/scim_anthy_tray.cpp, src/scim_anthy_tray.h
Add tooltips of tray icons and menu items.
2006-12-15 Takashi Nakamoto <[email protected]>
* src/scim_anthy_helper.cpp, src/scim_anthy_imengine.cpp,
src/scim_anthy_tray.cpp, src/scim_anthy_tray.h,
src/Makefile.am:
Add tray icons but they has not been effective yet.
2006-12-13 Takashi Nakamoto <[email protected]>
* src/scim_anthy_helper.cpp, src/scim_anthy_helper.h,
src/scim_anthy_tray.cpp, src/scim_anthy_tray.h,
src_scim_anthy_prefs.h, src/Makefile.am:
Add the skelton class managing tray icons.
But the related codes cannot be compiled yet because of name
confliction.
2006-12-10 Takashi Nakamoto <[email protected]>
* src/scim_anthy_diction.cpp, src/scim_anthy_diction.h,
src/scim_anthy_imengine.cpp, src/scim_anthy_imengine.h,
src/scim_anthy_helper.cpp, src/scim_anthy_helper.h,
src/scim_anthy_prefs.h, src/Makefile.am,
data/diction, src/Makefile.am:
Add a function to display diction.
2006-12-08 Takashi Nakamoto <[email protected]>
* src/scim_anthy_helper.cpp, src/scim_anthy_helper.h:
- Changed the appearance of lookup table and aux string to suit with
desktop and scim configuration.
- Added interfaces to manipulate note.
2006-12-07 Takashi Nakamoto <[email protected]>
* src/scim_anthy_helper.cpp, src/scim_anthy_helper.h:
Fix the location of lookup table and aux string to be confined to
screen.
2006-12-06 Takashi Nakamoto <[email protected]>
* src/scim_anthy_helper.cpp, src/scim_anthy_helper.h
src/scim_anthy_imengine.cpp, src/scim_anthy_imengine.h
src/Makefile.am:
The skelton of custom lookup window.
2006-11-27 Takuro Ashie <[email protected]>
* src/scim_anthy_helper.cpp: Add a sample code for getting spot
location. It will be used for our custom lookup window.
2006-11-23 Takashi Nakamoto <[email protected]>
* src/scim_anthy_imengine.cpp, src/scim_anthy_prefs.cpp:
Change the string "Conversion mode" to "Conversion method" to
avoid conflit the with different function with the same name of
MS-IME.
* po/ja.po: Update
2006-11-15 Takuro Ashie <[email protected]>
* src/scim_anthy_imengine.cpp: Clear or commit the current preedit text
when exit Japanese mode.
2006-11-14 Takuro Ashie <[email protected]>
* configure.ac; Version-1.2.2 (BRANCH_1_2).
2006-11-13 Takuro Ashie <[email protected]>
* configure.ac: Add missing checks pointed out by autoscan.
2006-11-13 Takuro Ashie <[email protected]>
* configure.ac: Use pkg-config to check the anthy library.
* README: Require anthy-7500 or later.
2006-10-30 Takuro Ashie <[email protected]>
* src/scim_anthy_conversion.cpp: Use anthy_set_reconversion_mode() if
it is available. But I don't test it yet.
2006-10-30 Takuro Ashie <[email protected]>
* src/scim_anthy_conversion.cpp: Fix a bug that a wrong partial string
is converted on direct kana conversion after commiting a piece of
segments.
2006-10-30 Takuro Ashie <[email protected]>
* src/scim_anthy_conversion.{cpp,h}: Learn a result of direct kana
selecting.
2006-10-30 Takuro Ashie <[email protected]>
* src/scim_anthy_conversion.cpp: Learn a result of prediction.
2006-10-15 Takashi Nakamoto <[email protected]>
* src/scim_anthy_setup.cpp, src/scim_anthy_prefs.cpp,
po/ja.po
Add a preference to change the argument of yomi option.
* src/scim_anthy_factory.cpp, src/scim_anthy_factory.h,
src/scim_anthy_imengine.cpp, src/scim_anthy_prefs.h:
Enable to launch a dictionary tool with yomi option as a
result of CodeFest Kyoto 2006.
https://members.fsij.org/trac/codefest2006kyoto/wiki
2006-09-29 Takuro Ashie <[email protected]>
* configure.ac: Version-1.2.1.
2006-09-25 Takuro Ashie <[email protected]>
* src/scim_anthy_setup.cpp: Enable dictionary encoding prefs.
* src/scim_anthy_prefs.h: Revert default dictionary encoding to EUC-JP.
2006-09-25 Takuro Ashie <[email protected]>
* src/scim_anthy_reading.cpp, src/scim_anthy_key2kana.cpp:
Apply TAGOH-san's solution for the previous problem. Thanks.
2006-09-25 Takuro Ashie <[email protected]>
* src/scim_anthy_reading.cpp: Give a first aid to the problem that
codes of pseudo ASCII mode breaks pending state of normal kana input
mode. Thanks Ryo Dairiki for your report.
Fix indent.
* src/scim_anthy_key2kana.cpp: Fix indent.
2006-09-11 Takuro Ashie <[email protected]>
* README, src/scim_anthy_factory.cpp: Change Dairiki-san's mail address.
* po/ja.po: Update.
2006-08-06 Takuro Ashie <[email protected]>
* configure.ac: Add AC_SUBST(LIBTOOL_EXPORT_OPTIONS).
Thanks Kouhei Sutou.
2006-07-31 Takuro Ashie <[email protected]>
* NEWS: Add a missing entry (The description about the tsuki layout).
2006-07-29 Takuro Ashie <[email protected]>
* configure.ac: Version-1.2.0.
2006-07-25 Takuro Ashie <[email protected]>
* src/scim_anthy_factory.cpp: Raise priority of "pseudo ascii mode
cancel" key.
* src/scim_anthy_imengine.cpp: Ignore key event without relation
at AnthyInstance::action_cancel_pseudo_ascii_mode().
* src/scim_anthy_prefs.h: Add "Escape" into
SCIM_ANTHY_CONFIG_ROMAJI_PSEUDO_ASCII_BLANK_BEHAVIOR_DEFAULT key.
2006-07-25 Takuro Ashie <[email protected]>
* src/scim_anthy_imengine.cpp: Insert a half space on pressing space
key during pseudo ascii mode.
2006-07-24 Takuro Ashie <[email protected]>
* src/scim_anthy_setup.cpp: Hide dictionary encoding option.
2006-07-24 Takuro Ashie <[email protected]>
* src/scim_anthy_conversion.{cpp,h}, src/scim_anthy_factory.{cpp,h},
src/scim_anthy_imengine.cpp, src/scim_anthy_preedit.{cpp,h},
src/scim_anthy_prefs.{cpp,h}, src/scim_anthy_reading.cpp,
src/scim_anthy_setup.cpp, src/scim_anthy_setup_romaji.cpp:
DIC_ENCODING -> DICT_ENCODING. And fix compile time warnings.
2006-07-21 Takuro Ashie <[email protected]>
* src/scim_anthy_prefs.{cpp,h}, src/scim_anthy_setup.cpp:
EUCJP-MS -> EUC-JP-MS and set default encoding as EUC-JP-MS.
* po/ja.po: Update.
2006-07-20 Takuro Ashie <[email protected]>
* src/scim_anthy_conversion.{cpp,h}, src/scim_anthy_factory.{cpp,h},
src/scim_anthy_imengine.cpp, src/scim_anthy_preedit.{cpp,h},
src/scim_anthy_prefs.{cpp,h}, src/scim_anthy_setup.cpp:
Add "Encoding of dictionary" preference to improve
interoperatability with Microsoft Windows.
* src/scim_anthy_key2kana_base.h: Fix compile time warning.
* po/ja.po: Update.
2006-07-18 Takuro Ashie <[email protected]>
* src/scim_anthy_prefs.cpp: Fix some messages.
* po/ja.po: Update.
2006-07-13 Akira TAGOH <[email protected]>
* src/scim_anthy_action.{cpp,h}, src/scim_anthy_factory.{cpp,h},
src/scim_anthy_imengine.{cpp,h}, src/scim_anthy_kana.{cpp,h},
src/scim_anthy_key2kana.{cpp,h}, src/scim_anthy_key2kana_base.h,
src/scim_anthy_nicola.{cpp,h}, src/scim_anthy_preedit.{cpp,h},
src/scim_anthy_prefs.{cpp,h}, src/scim_anthy_reading.{cpp,h},
src/scim_anthy_setup.cpp, src/scim_anthy_setup_romaji.cpp:
Enable to enter space during pseudo ASCII mode.
2006-07-11 Takuro Ashie <[email protected]>
* data/Makefile.am, data/tsuki-2-203-101.sty,
data/tsuki-2-203-106.sty: Add "tsuki" layout. Thanks Tatsuki Sugiura.
2006-07-11 Takuro Ashie <[email protected]>
* src/scim_anthy_imengine.cpp: Enable reconversion feature on non-GTK+
application. But it's a ad-hoc solution.
Thank you for your patch > Takashi Nakamoto
2006-07-10 Takuro Ashie <[email protected]>
* src/scim_anthy_conversion.cpp: Fix a bug that scim-anthy never
switch to conversion mode when the auto prediction feature is enabled.
2006-07-04 Takuro Ashie <[email protected]>
* src/scim_anthy_factory.{cpp,h}, src/scim_anthy_imengine.cpp,
src/scim_anthy_prefs.{cpp,h}, src/scim_anthy_prefs.h,
src/scim_anthy_setup.cpp: Add a preference to choose behavior on
focus out.
2006-06-26 Takuro Ashie <[email protected]>
* src/scim_anthy_setup.cpp: Fix indent.
2006-06-26 Takuro Ashie <[email protected]>
* src/scim_anthy_preedit.h: Fix some comments.
2006-06-18 Takuro Ashie <[email protected]>
* src/scim_anthy_conversion.{cpp,h}, src/scim_anthy_imengine.cpp,
src/scim_anthy_preedit.{cpp,h}: Add an arguemnt to Preedit::clear()
and Conversion::clear() to specify segment_id to enable partial clear.
It is needed for commiting without learn. Thanks Jun Oizumi for your
report.
2006-06-17 Takuro Ashie <[email protected]>
* src/scim_anthy_imengine.cpp: Fix a typo in a comment.
2006-06-02 Ikuya Awashiro <[email protected]>
* data/msime.sty: Add predict keys.
* data/wnn.sty: ditto.
* data/canna.sty: ditto.
2006-06-01 Takuro Ashie <[email protected]>
* data/atok.sty, data/msime.sty: Fix some wrong entries in Romaji
table. Thanks Jun Oizumi.
2006-05-31 Takuro Ashie <[email protected]>
* src/scim_anthy_imengine.cpp: The bug that direct select keys didn't
work while predicting has been fixed. Thank you for reporting >
TAGOH-san, UTUMI-san, Bando-san.
2006-04-10 Akira TAGOH <[email protected]>
* src/scim_anthy_factory.{cpp,h}, src/scim_anthy_imengine.cpp,
src/scim_anthy_key2kana.{cpp,h}, src/scim_anthy_key2kana_base.h,
src/scim_anthy_preedit.{cpp,h}, src/scim_anthy_prefs.{cpp,h},
src/scim_anthy_reading.{cpp,h}, src/scim_anthy_setup_romaji.cpp:
Add pseudo ASCII input mode.
2006-03-29 Takuro Ashie <[email protected]>
* configure.ac: Version-1.0.0.
2006-03-29 Takuro Ashie <[email protected]>
* src/scim_anthy_imengine.cpp: Don't activate direct select key when
the lookup window isn't shown. Thanks TAGOH-san.
2006-02-28 Takuro Ashie <[email protected]>
* src/scim_anthy_conversion.cpp: Strange bihavior of resizing segment
after partial commit has been fixed.
2006-02-14 Takuro Ashie <[email protected]>
* src/scim_anthy_setup.cpp: Modify order of symbol style.
2006-02-14 Takuro Ashie <[email protected]>
* src/scim_anthy_imengine.cpp: Install symbol style properties.
* src/scim_anthy_setup.cpp: Show check box for symbol style label.
2006-02-13 Takuro Ashie <[email protected]>
* data/atok.sty, data/canna.sty, data/msime.sty, data/vje-delta.sty,
data/wnn.sty: "/", "[", "]" entries in romaji table aren't needed
anymore.
2006-02-13 Takuro Ashie <[email protected]>
* src/scim_anthy_factory.{cpp,h}, src/scim_anthy_imengine.cpp,
src/scim_anthy_prefs.{cpp,h}, src/scim_anthy_setup.cpp:
Add a preference to show or hide symbol style label on toolbar.
But label itself is not added yet.
2006-02-13 Takuro Ashie <[email protected]>
* src/scim_anthy_setup.cpp: Split symbol related preferences from
"Common" page. Change order of candidates in some combos.
2006-02-13 Takuro Ashie <[email protected]>
* src/scim_anthy_factory.cpp: Fix credit.
* po/ja.po: Update.
2006-02-08 Takuro Ashie <[email protected]>
* po/ja.po: Update.
2006-02-08 Takuro Ashie <[email protected]>
* src/scim_anthy_setup.cpp: Add version information.
2006-02-08 Akira TAGOH <[email protected]>
* src/scim_anthy_default_tables.{cpp,h},
src/scim_anthy_factory.{cpp,h}, src/scim_anthy_imengine.{cpp,h},
src/scim_anthy_key2kana_table.{cpp,h},
src/scim_anthy_preedit.{cpp,h}, src/scim_anthy_prefs.{cpp,h},
src/scim_anthy_reading.{cpp,h}, src/scim_anthy_setup.cpp:
Add symbol style preference.
2006-01-29 Takuro Ashie <[email protected]>
* configure.ac: Version-0.9.0.
2006-01-21 Takuro Ashie <[email protected]>
* src/scim_anthy_imengine.cpp: Fix double commiting on wide latin mode.
Thanks UTUMI-san and Dairiki-san.
2006-01-13 Takuro Ashie <[email protected]>
* src/scim_anthy_imengine.cpp: Fix typo (ANthy -> Anthy).
2005-12-27 Takuro Ashie <[email protected]>
* src/scim_anthy_prefs.{cpp,h}: Minor fix.
2005-12-27 Takuro Ashie <[email protected]>
* src/scim_anthy_key2kana_table.h, src/scim_anthy_style_file.h:
Remove needless #include.
2005-12-26 Takuro Ashie <[email protected]>
* data/wnn.sty: Fix typo (shrink segment).
2005-12-20 Takuro Ashie <[email protected]>
* src/scim_anthy_style_file.cpp: Remove needless code.
2005-12-16 Takuro Ashie <[email protected]>
* src/scim_anthy_imengine.cpp: Avoid double deleting both former and
later mathced text when start reconversion.
2005-12-15 Takuro Ashie <[email protected]>
* src/scim_anthy_default_tables.cpp: NULL terminate for voiced
contonant table.
2005-12-14 Takuro Ashie <[email protected]>
* src/scim_anthy_imengine.cpp: Half space character was never outputed
by space key when the typing method is NICOLA mode.
2005-12-08 Takuro Ashie <[email protected]>
* src/scim_anthy_factory.cpp, po/ja.po: Fix typo.
2005-12-07 Takuro Ashie <[email protected]>
* src/scim_anthy_imengine.cpp: Through space key event on
action_insert_space() family to activate application's specific
features.
2005-12-06 Takuro Ashie <[email protected]>
* src/scim_anthy_nicola.cpp: Timer didn't work correctly when both
a normal key and a thumb shift key was pressed.
2005-11-29 Takuro Ashie <[email protected]>
* data/atok.sty: Add predict keys.
2005-11-29 Takuro Ashie <[email protected]>
* Version-0.8.0.
2005-11-25 Takuro Ashie <[email protected]>
* src/scim_anthy_reading.cpp: Don't set NICOLA engine as case
sensitive by default.
2005-11-22 Takuro Ashie <[email protected]>
* src/tron-dvorak.sty, src/tron-qwerty-jp.sty:
Add TRON layout. Thanks Okano, Shinchi <[email protected]>.
2005-11-19 Takuro Ashie <[email protected]>
* src/scim_anthy_prefs.cpp: Add mnemonic.
* po/ja.po: Update.
2005-11-19 Takuro Ashie <[email protected]>
* src/scim_anthy_key2kana_table.cpp: Remove needless comment.
2005-11-19 Takuro Ashie <[email protected]>
* src/scim_anthy_conversion.{cpp,h}, src/scim_anthy_imengine.cpp,
src/scim_anthy_preedit.h: Rename SCIM_ANTHY_CANDIDATE_NORMAL to
SCIM_ANTHY_CANDIDATE_DEFAULT.
2005-11-19 Takuro Ashie <[email protected]>
* src/scim_anthy_reading.{cpp,h}, src/scim_anthy_conversion.cpp,
src/scim_anthy_preedit.cpp: Remove needless code in Reading class.
2005-11-19 Takuro Ashie <[email protected]>
* src/scim_anthy_reading.cpp: Remove debug print.
2005-11-19 Takuro Ashie <[email protected]>
* src/scim_anthy_nicola.cpp: Don't eat unknown key release event.
* src/scim_anthy_imengine.cpp: Add a comment.
2005-11-19 Takuro Ashie <[email protected]>
* src/scim_anthy_key2kana_base.h, src/scim_anthy_kana.{cpp,h},
src/scim_anthy_key2kana.{cpp,h}, src/scim_anthy_nicola.{cpp,h}:
Move implementation of set_case_sensitive() and get_case_sensitive() to
Key2KanaConvertorBase.
2005-11-19 Takuro Ashie <[email protected]>
* src/scim_anthy_key2kana_base.h, src/scim_anthy_kana.{cpp,h},
src/scim_anthy_key2kana.{cpp,h}, src/scim_anthy_nicola.{cpp,h},
src/scim_anthy_reading.cpp:
Add reset_pending () to Key2KanaConvertorBase class.
2005-11-16 Takuro Ashie <[email protected]>
* src/scim_anthy_imengine.cpp: Remove needless code.
2005-11-16 Takuro Ashie <[email protected]>
* src/scim_anthy_nicola.cpp: Sorry, forgot to set alarm at some place.
2005-11-16 Takuro Ashie <[email protected]>
* src/scim_anthy_default_tables.cpp: Add voiced consonants as shift
modifired keys into default NICOLA table.
2005-11-15 Takuro Ashie <[email protected]>
* src/scim_anthy_conversion.cpp: Add remaining HAS_ANTHY_PREDICTION
condition.
2005-11-15 Takuro Ashie <[email protected]>
* src/scim_anthy_factory.{cpp,h}, src/scim_anthy_imengine.cpp,
src/scim_anthy_prefs.{cpp,h}, src/scim_anthy_setup.cpp:
Add UI for preferences of prediction.
* po/ja.po: Update.
2005-11-15 Takuro Ashie <[email protected]>
* src/scim_anthy_factory.{cpp,h}, src/scim_anthy_imengine.cpp,
src/scim_anthy_prefs.h: Enable to choose whether use direct select key
while predicting or not.
2005-11-15 Takuro Ashie <[email protected]>
* src/scim_anthy_helper.h: Fix typo.
2005-11-15 Takuro Ashie <[email protected]>
* src/scim_anthy_imengine.cpp: Enable to select a candidte by direct
select key on prediction.
2005-11-15 Takuro Ashie <[email protected]>
* src/scim_anthy_imengine.cpp: Enable to select a candidte on
prediction.
2005-11-15 Takuro Ashie <[email protected]>
* src/scim_anthy_reading.cpp: NICOLA engine should be case sensitive.
* src/scim_anthy_default_tables.cpp: Add some shift modifired keys into
NICOLA table.
2005-11-15 Takuro Ashie <[email protected]>
* src/scim_anthy_setup_kana.cpp: Fix some messages.
* po/ja.po: Update.
2005-11-15 Takuro Ashie <[email protected]>
* src/scim_anthy_imengine.cpp: Don't to use m_lookup_table for\
prediction to avoid conflict.
2005-11-15 Takuro Ashie <[email protected]>
* src/scim_anthy_factory.{cpp,h}, src/scim_anthy_imengine.cpp,
src/scim_anthy_prefs.h: Add a preference to select whether predict
while inputting or not.
2005-11-15 Takuro Ashie <[email protected]>
* src/scim_anthy_imengine.{cpp,h}, src/scim_anthy_factory.cpp,
src/scim_anthy_prefs.{cpp,h}: Add key bindings for prediction, and
comment out realtime prediction.
* src/scim_anthy_preedit.{cpp,h}: Add is_predicting ().
* src/scim_anthy_conversion.{cpp,h}: Add a feature for getting predicted
candidates.
* po/ja.po: Update.
2005-11-14 Takuro Ashie <[email protected]>
* src/scim_anthy_conversion.{cpp,h}, src/scim_anthy_preedit.cpp:
Cleanup.
2005-11-14 Takuro Ashie <[email protected]>
* src/scim_anthy_imengine.{cpp,h}: Add test code for prediction.