-
Notifications
You must be signed in to change notification settings - Fork 28
/
ChangeLog.old
6659 lines (4167 loc) · 197 KB
/
ChangeLog.old
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
2007-04-16 05:42 James Su <suzhe@tsinghua.org.cn>
* configs/config, extras/gtk2_immodule/gtkimcontextscim.cpp,
src/scim_keyevent_data.h, utils/scim_x11_utils.cpp
(scim_1_4.[3,12,1,2]):
Fix QuirkKanaRo support.
2007-04-14 08:35 James Su <suzhe@tsinghua.org.cn>
* src/scim_iconv.cpp (scim_1_4.1):
Added missing header.
2007-04-11 15:24 James Su <suzhe@tsinghua.org.cn>
* extras/gtk2_immodule/gtkimcontextscim.cpp, src/scim_event.h,
utils/scim_x11_utils.cpp (scim_1_4.[11,1,1]):
Prevent spot location from being changed too frequently. Add
SCIM_KEY_QuirkKanaRoMask to KeyEvent::mask to distinguish two
backslash keys on jp106 keyboard.
2007-04-11 11:30 James Su <suzhe@tsinghua.org.cn>
* extras/panel/scim_panel_gtk.cpp (scim_1_4.15):
Automatically adjust the position of toolbar according to the size
of work area. Patch is provided by Takuro Ashie.
2007-04-11 06:10 James Su <suzhe@tsinghua.org.cn>
* modules/FrontEnd/scim_x11_frontend.cpp (scim_1_4.4):
Just return when receiving events from an un-focused IC.
2007-04-10 09:46 James Su <suzhe@tsinghua.org.cn>
* configure.ac, po/cs.po, po/de.po, po/fi.po, po/fr.po, po/it.po,
po/ja.po, po/ko.po, po/nl.po, po/pa.po, po/scim.pot, po/sv.po,
po/zh_CN.po, po/zh_TW.po (scim_1_4.[8,3,3,2,4,3,3,3,1,3,9,2,3,3]):
Added Dutch translation.
2007-04-10 09:18 James Su <suzhe@tsinghua.org.cn>
* src/scim_types.h.in (scim_1_4.1):
Support for FreeBSD.
2007-04-10 09:14 James Su <suzhe@tsinghua.org.cn>
* configure.ac, scim-gtkutils.pc.in, scim-x11utils.pc.in,
scim.pc.in, scim.spec.in, extras/gtk2_immodule/Makefile.am,
extras/gtk2_immodule/imscim.cpp, extras/panel/Makefile.am,
extras/setup/Makefile.am, modules/Config/Makefile.am,
modules/Filter/Makefile.am, modules/FrontEnd/Makefile.am,
modules/IMEngine/Makefile.am, modules/SetupUI/Makefile.am,
src/Makefile.am, tests/Makefile.am, utils/Makefile.am
(scim_1_4.[7,1,1,4,2,1,1,1,1,1,1,1,1,1,1,1,1]):
Use SCIM_EPOCH=-1.0 macro to replace hardcoded -1.0 suffix.
2007-04-10 07:47 James Su <suzhe@tsinghua.org.cn>
* extras/panel/scim_panel_gtk.cpp,
modules/IMEngine/scim_rawcode_imengine.cpp (scim_1_4.[14,7]):
Use GtkEventBox instead of GtkButton in tray icon. Postpone the
initialization of a static string object in rawcode imengine.
2007-03-13 07:57 James Su <suzhe@tsinghua.org.cn>
* extras/gtk2_immodule/gtkimcontextscim.cpp (scim_1_4.10):
Fixed a null pointer issue.
2007-03-11 12:35 James Su <suzhe@tsinghua.org.cn>
* extras/gtk2_immodule/gtkimcontextscim.cpp, src/scim_private.cpp
(scim_1_4.[9,1]):
Don't call setlocale() if locale is already set.
2006-12-14 04:12 Jens-Ulrik Petersen <juhp@users.sourceforge.net>
* extras/panel/scim_panel_gtk.cpp (1.125):
fix spelling of dragging in identifiers
2006-11-30 02:19 James Su <suzhe@tsinghua.org.cn>
* src/scim_compose_key_data.h (scim_1_4.1):
Fixed a wrong sequence in compose key table.
2006-11-17 00:39 James Su <suzhe@tsinghua.org.cn>
* modules/FrontEnd/scim_x11_frontend.cpp (scim_1_4.3):
Just return if the IC is not focused.
2006-11-02 04:14 James Su <suzhe@tsinghua.org.cn>
* extras/panel/scim_panel_gtk.cpp (scim_1_4.13):
Return menu_item in ui_create_factory_menu_entry().
2006-11-02 04:11 James Su <suzhe@tsinghua.org.cn>
* src/scim_utility.cpp (scim_1_4.5):
Accept language names such as "zh-cn" etc.
2006-10-08 09:31 tag scim_1_4_5
2006-10-08 09:31 James Su <suzhe@tsinghua.org.cn>
* ChangeLog, configure.ac (scim_1_4.[8,6]):
Bump version to 1.4.5
2006-10-08 08:09 James Su <suzhe@tsinghua.org.cn>
* po/: scim.pot, sv.po (scim_1_4.[8,1]):
Added Swedish translation. Thanks Leo Wallentin.
2006-09-30 07:40 James Su <suzhe@tsinghua.org.cn>
* extras/panel/scim_panel_gtk.cpp (scim_1_4.12):
Don't show factory and command menu twice in very short time.
2006-09-30 02:18 James Su <suzhe@tsinghua.org.cn>
* modules/FrontEnd/scim_x11_frontend.cpp (scim_1_4.2):
Don't draw underline for characters which have attributes when
drawing preedit string.
2006-09-29 15:17 James Su <suzhe@tsinghua.org.cn>
* extras/gtk2_immodule/gtkimcontextscim.cpp (scim_1_4.8):
Don't draw underline for characters with attributes when drawing
preedit string.
2006-09-27 03:33 James Su <suzhe@tsinghua.org.cn>
* extras/panel/scim_panel_gtk.cpp (scim_1_4.11):
Fix multihead support of workarea code, by Takuro Ashie.
2006-09-24 16:17 James Su <suzhe@tsinghua.org.cn>
* ChangeLog (scim_1_4.7):
Updated ChangeLog.
2006-09-24 16:00 James Su <suzhe@tsinghua.org.cn>
* scim.pc.in, configs/config,
extras/gtk2_immodule/gtkimcontextscim.cpp,
extras/panel/scim_panel_gtk.cpp,
modules/SetupUI/scim_imengine_setup.cpp, po/scim.pot,
src/scim_backend.cpp, src/scim_utility.cpp, tests/testlang.cpp
(scim_1_4.[3,2,7,10,2,7,1,4,1]):
Merge some patches from RedHat Fedora Core's scim package as well
as some other contributors.
2006-09-22 07:52 James Su <suzhe@tsinghua.org.cn>
* src/scim_utility.cpp (scim_1_4.3):
Use _exit() instead of exit() in scim_daemon().
2006-08-23 16:12 James Su <suzhe@tsinghua.org.cn>
* extras/panel/scim_panel_gtk.cpp (scim_1_4.9):
Enable Exit command by default.
2006-08-10 13:59 James Su <suzhe@tsinghua.org.cn>
* extras/gtk2_immodule/gtkimcontextscim.cpp (scim_1_4.6):
Emit preedit-start/preedit-end signal correctly.
2006-08-10 05:16 James Su <suzhe@tsinghua.org.cn>
* extras/gtk2_immodule/gtkimcontextscim.cpp (scim_1_4.5):
Add option to disable key snooper.(Again3)
2006-08-09 14:02 James Su <suzhe@tsinghua.org.cn>
* extras/gtk2_immodule/gtkimcontextscim.cpp (scim_1_4.4):
Add option to disable key snooper.(Again2)
2006-08-09 13:48 James Su <suzhe@tsinghua.org.cn>
* extras/gtk2_immodule/gtkimcontextscim.cpp (scim_1_4.3):
Add option to disable key snooper.(Again)
2006-08-09 11:16 James Su <suzhe@tsinghua.org.cn>
* extras/gtk2_immodule/gtkimcontextscim.cpp (scim_1_4.2):
Add option to disable key snooper.
2006-07-11 03:50 James Su <suzhe@tsinghua.org.cn>
* ChangeLog (scim_1_4.6):
Update ChangeLog.
2006-07-11 02:58 James Su <suzhe@tsinghua.org.cn>
* utils/scimtrayicon.c (scim_1_4.1):
Applied patch for bug #1520119. Make tray icon transparent.
2006-07-03 04:49 James Su <suzhe@tsinghua.org.cn>
* extras/panel/scim_panel_gtk.cpp (scim_1_4.8):
Set initial toolbar position to not overlap desktop panel. Patch
from Takuro Ashie.
2006-06-29 07:40 Jens-Ulrik Petersen <juhp@users.sourceforge.net>
* ChangeLog (scim_1_4.5):
add entry for changes to scim_panel_gtk.cpp to use toplevel factory
menu entries for single IME langs
2006-06-22 01:07 LiuCougar <liuspider@users.sourceforge.net>
* po/ja.po (1.55):
update ja, thanks to Yukiko Bando
2006-06-07 10:35 James Su <suzhe@tsinghua.org.cn>
* configure.ac, po/scim.pot (scim_1_4.[5,6]):
Add --without-doxygen option
2006-06-07 09:40 James Su <suzhe@tsinghua.org.cn>
* configure.ac (1.151), extras/panel/scim_panel_gtk.cpp (1.124):
Handle --without-doxygen option correctly.
2006-06-07 09:27 James Su <suzhe@tsinghua.org.cn>
* src/: scim_transaction.cpp (scim_1_4.1), scim_transaction.cpp
(1.14):
Handle empty LookupTable correctly in Transaction.
2006-06-06 05:39 James Su <suzhe@tsinghua.org.cn>
* extras/panel/scim_panel_gtk.cpp (scim_1_4.7):
Patch from Jens Petersen <petersen@redhat.com>: Change the menu to
put a single factory for a language on the main menu. Add
variables `engines', `lang', `ime' and `text'. `engines' holds
number of factories for `lang'. `ime' is the factory name. Label
factories of miscellaneous `lang' with just the `ime' name. Add a
tooltip to main menu entries with the `ime' name.
2006-06-01 06:04 James Su <suzhe@tsinghua.org.cn>
* po/: fi.po (scim_1_4.1), fi.po (1.2):
Added fi.po
2006-06-01 06:00 James Su <suzhe@tsinghua.org.cn>
* configure.ac, po/scim.pot (scim_1_4.[4,5]), configure.ac (1.150),
po/cs.po (1.21), po/de.po (1.42), po/fr.po (1.34), po/it.po (1.24),
po/ja.po (1.54), po/ko.po (1.45), po/pa.po (1.8), po/scim.pot
(1.113), po/zh_CN.po (1.159), po/zh_TW.po (1.160):
Added fi.po
2006-04-24 01:59 James Su <suzhe@tsinghua.org.cn>
* modules/FrontEnd/IMdkit/: i18nIMProto.c (1.2), i18nIc.c (1.6),
i18nMethod.c (1.5), i18nPtHdr.c (1.4):
Fix endian issue in IMdkit.
https://bugzilla.novell.com/show_bug.cgi?id=163522.
2006-04-24 01:46 James Su <suzhe@tsinghua.org.cn>
* modules/FrontEnd/IMdkit/: i18nIMProto.c, i18nIc.c, i18nMethod.c,
i18nPtHdr.c (scim_1_4.[1,1,1,1]):
Fix endian issue in IMdkit.
https://bugzilla.novell.com/show_bug.cgi?id=163522.
2006-03-26 16:32 Kitae <neeum@users.sourceforge.net>
* po/ko.po (1.44):
translate some undtaranslated word in ko.po file
2006-03-20 08:00 James Su <suzhe@tsinghua.org.cn>
* modules/FrontEnd/: scim_x11_frontend.cpp (scim_1_4.1),
scim_x11_frontend.cpp (1.180):
Don't check whether ic is focused when doing helper related
operations.
2006-03-01 10:25 James Su <suzhe@tsinghua.org.cn>
* ChangeLog (scim_1_4.4):
Updated ChangeLog.
2006-02-24 04:32 James Su <suzhe@tsinghua.org.cn>
* scim.pc.in (scim_1_4.2):
Revert the moduledir change, this may lead incompatibility issue.
2006-02-23 05:29 James Su <suzhe@tsinghua.org.cn>
* po/fr.po (scim_1_4.3):
Fixed some fuzzy strings.
2006-02-23 04:35 James Su <suzhe@tsinghua.org.cn>
* modules/SetupUI/scim_imengine_setup.cpp (1.11):
Initialize hotkey and filter buttons before factory list view to
prevent NULL pointers from being used in callback function.
2006-02-23 04:32 James Su <suzhe@tsinghua.org.cn>
* modules/SetupUI/scim_imengine_setup.cpp (scim_1_4.1):
Initialize hotkey and filter buttons before factory list view to
prevent NULL pointers from being used in callback function.
2006-02-23 04:29 James Su <suzhe@tsinghua.org.cn>
* po/: cs.po, de.po, fr.po, it.po, ja.po, ko.po, pa.po, scim.pot,
zh_CN.po, zh_TW.po (scim_1_4.[2,2,2,2,2,2,2,4,2,2]):
Updated po files to add some new strings.
2006-02-23 04:03 James Su <suzhe@tsinghua.org.cn>
* scim.pc.in (scim_1_4.1), scim.pc.in (1.18):
Change moduledir to @libdir@/scim-1.0/@SCIM_BINARY_VERSION@
2006-02-22 04:03 Jens-Ulrik Petersen <juhp@users.sourceforge.net>
* ChangeLog, po/cs.po, po/de.po, po/fr.po, po/it.po, po/ja.po,
po/ko.po, po/pa.po, po/scim.pot, po/zh_CN.po, po/zh_TW.po,
src/scim_utility.cpp (scim_1_4.[3,1,1,1,1,1,1,1,3,1,1,2]):
2006-02-22 Jens Petersen <petersen@redhat.com>
* src/scim_utility.cpp (__languages): Name of pa is
Punjabi.
2006-02-22 03:47 Jens-Ulrik Petersen <juhp@users.sourceforge.net>
* ChangeLog (1.68), po/cs.po (1.20), po/de.po (1.41), po/fr.po
(1.33), po/it.po (1.23), po/ja.po (1.53), po/ko.po (1.43), po/pa.po
(1.7), po/scim.pot (1.112), po/zh_CN.po (1.158), po/zh_TW.po
(1.159), src/scim_utility.cpp (1.50):
2006-02-22 Jens Petersen <petersen@redhat.com>
* src/scim_utility.cpp (__languages): Name of pa is
Punjabi.
2006-02-16 05:49 James Su <suzhe@tsinghua.org.cn>
* configure.ac, extras/panel/scim_panel_gtk.cpp, intl/localename.c,
po/scim.pot, src/scim_utility.cpp (scim_1_4.[2,6,1,2,1]):
Added some new language names.
2006-02-16 05:13 James Su <suzhe@tsinghua.org.cn>
* configs/config (1.44), docs/Makefile.am (1.7),
extras/panel/scim_panel_gtk.cpp (1.123),
extras/setup/scim_setup_helper.cpp (1.6),
extras/setup/scim_setup_ui.cpp (1.53), intl/localename.c (1.3),
modules/IMEngine/scim_rawcode_imengine.cpp (1.14),
modules/SetupUI/scim_frontend_setup.cpp (1.7),
modules/SetupUI/scim_imengine_setup.cpp (1.10),
modules/SetupUI/scim_panel_gtk_setup.cpp (1.16),
src/scim_utility.cpp (1.49), utils/scimkeyselection.cpp (1.8),
utils/scimstringview.c (1.5), utils/scimtrayicon.c (1.2):
Fixed some grammar errors. Added some new languages into
scim_utility.cpp.
2006-02-06 06:59 LiuCougar <liuspider@users.sourceforge.net>
* configure.ac (1.149):
added option --without-doxygen to disable API doc generation
(http://bugs.gentoo.org/show_bug.cgi?id=121295)
2006-01-18 05:44 James Su <suzhe@tsinghua.org.cn>
* modules/IMEngine/: scim_rawcode_imengine.cpp (scim_1_4.6),
scim_rawcode_imengine.cpp (1.13):
Adjust max unicode length smartly according to the first inputted
char, to enhance usability.
2006-01-13 01:27 James Su <suzhe@tsinghua.org.cn>
* extras/panel/scim_panel_gtk.cpp (scim_1_4.5):
Move the page up/down buttons of horizontal lookup table back to
right side.
2006-01-12 09:21 tag scim_1_4_4
2006-01-12 09:21 James Su <suzhe@tsinghua.org.cn>
* ChangeLog, scim.spec.in, po/scim.pot (scim_1_4.[2,1,1]):
Ready to release 1.4.4
2006-01-12 07:22 James Su <suzhe@tsinghua.org.cn>
* extras/panel/: scim_panel_gtk.cpp (scim_1_4.4),
scim_panel_gtk.cpp (1.122):
Move horizontal page up/down buttons to the left of candidate list.
2006-01-12 06:59 James Su <suzhe@tsinghua.org.cn>
* modules/IMEngine/: scim_rawcode_imengine.cpp,
scim_rawcode_imengine.h (scim_1_4.[5,3]), scim_rawcode_imengine.cpp
(1.12), scim_rawcode_imengine.h (1.8):
Fix lookup table page up/down issue.
2006-01-12 06:12 James Su <suzhe@tsinghua.org.cn>
* modules/IMEngine/: scim_rawcode_imengine.cpp (scim_1_4.4),
scim_rawcode_imengine.cpp (1.11):
Don't put the default locales string in po file.
2006-01-12 05:53 James Su <suzhe@tsinghua.org.cn>
* modules/IMEngine/: scim_rawcode_imengine.cpp (scim_1_4.3),
scim_rawcode_imengine.cpp (1.10):
More fix.
2006-01-12 05:38 James Su <suzhe@tsinghua.org.cn>
* modules/IMEngine/: scim_rawcode_imengine.cpp,
scim_rawcode_imengine.h (scim_1_4.[2,2]), scim_rawcode_imengine.cpp
(1.9), scim_rawcode_imengine.h (1.7):
Make rawcode work correctly.
2006-01-11 09:54 James Su <suzhe@tsinghua.org.cn>
* ChangeLog, configure.ac, configs/config (scim_1_4.[1,1,1]):
Ready to release 1.4.4
2006-01-11 08:43 James Su <suzhe@tsinghua.org.cn>
* modules/IMEngine/: scim_rawcode_imengine.cpp,
scim_rawcode_imengine.h (scim_1_4.[1,1]), scim_rawcode_imengine.cpp
(1.8), scim_rawcode_imengine.h (1.6):
Support switching among multiple encodings on the fly.
2006-01-11 03:11 James Su <suzhe@tsinghua.org.cn>
* extras/panel/: scim_panel_gtk.cpp (scim_1_4.3),
scim_panel_gtk.cpp (1.121):
Move page up/down buttons onto the top for vertical lookup table.
2006-01-09 14:32 James Su <suzhe@tsinghua.org.cn>
* src/scim_panel_agent.cpp (scim_1_4.1):
Call transaction_start and transaction_end around all signals to
fix some lock issues.
2006-01-09 14:16 James Su <suzhe@tsinghua.org.cn>
* src/scim_panel_agent.cpp (1.9):
Call transaction_start and transaction_end around all signals to
fix some lock issues.
2006-01-09 13:37 James Su <suzhe@tsinghua.org.cn>
* modules/Filter/scim_sctc_filter.cpp (scim_1_4.1):
Use static encoding list instead of probing it dynamically.
2006-01-07 08:13 James Su <suzhe@tsinghua.org.cn>
* modules/Filter/scim_sctc_filter.cpp (1.8):
Use static encoding list instead of probing it dynamically.
2006-01-01 14:07 tag scim_before_modulized_client_components
2006-01-01 14:07 James Su <suzhe@tsinghua.org.cn>
* src/: scim_imengine.cpp (1.16), scim_imengine.h (1.20):
Pass IMEngineFactoryBase pointer instead, so that any
IMEngineFactory can create DummyIMEngineInstance.
2005-12-31 08:57 James Su <suzhe@tsinghua.org.cn>
* extras/panel/: scim_panel_gtk.cpp (scim_1_4.2),
scim_panel_gtk.cpp (1.120):
Fixed a typo.
2005-12-30 08:50 James Su <suzhe@tsinghua.org.cn>
* extras/: gtk2_immodule/gtkimcontextscim.cpp,
panel/scim_panel_gtk.cpp (scim_1_4.[1,1]):
Two potential null pointer bugs were fixed.
2005-12-30 08:45 James Su <suzhe@tsinghua.org.cn>
* extras/: gtk2_immodule/gtkimcontextscim.cpp (1.171),
panel/scim_panel_gtk.cpp (1.119):
Two potential null pointer bugs were fixed.
2005-12-28 15:48 tag scim_1_4_3
2005-12-28 15:48 James Su <suzhe@tsinghua.org.cn>
* ChangeLog (1.67):
Ready to release 1.4.3
2005-12-28 14:29 James Su <suzhe@tsinghua.org.cn>
* THANKS (1.8):
Update THANKS file.
2005-12-18 16:05 James Su <suzhe@tsinghua.org.cn>
* ChangeLog (1.66):
Ready to release 1.4.3
2005-12-18 10:20 James Su <suzhe@tsinghua.org.cn>
* po/: de.po (1.40), ko.po (1.42), zh_TW.po (1.158):
Updated po files.
2005-12-16 13:59 James Su <suzhe@tsinghua.org.cn>
* po/de.po (1.39):
de.po was updated.
2005-12-16 12:23 James Su <suzhe@tsinghua.org.cn>
* po/: cs.po (1.19), de.po (1.38), fr.po (1.32), it.po (1.22),
ja.po (1.52), ko.po (1.41), pa.po (1.6), scim.pot (1.111), zh_CN.po
(1.157):
Update po files.
2005-12-16 12:13 James Su <suzhe@tsinghua.org.cn>
* po/zh_TW.po (1.157):
Update zh_TW.po
2005-12-16 11:12 James Su <suzhe@tsinghua.org.cn>
* modules/Config/scim_socket_config.cpp (1.23),
modules/Filter/Makefile.am (1.3), po/scim.pot (1.110),
src/scim_backend.cpp (1.38), src/scim_filter_manager.cpp (1.4):
A bug which cause scim-launcher won't exit was fixed.
2005-12-16 05:40 James Su <suzhe@tsinghua.org.cn>
* extras/panel/scim_panel_gtk.cpp (1.118):
A bug in updating properties was fixed.
2005-12-13 07:59 James Su <suzhe@tsinghua.org.cn>
* po/: it.po (1.21), pa.po (1.5):
Two more po files were updated.
2005-12-11 22:23 James Su <suzhe@tsinghua.org.cn>
* po/cs.po (1.18):
cs.po was updated.
2005-12-11 15:02 James Su <suzhe@tsinghua.org.cn>
* po/: fr.po (1.31), zh_TW.po (1.156):
fr.po and zh_TW.po were updated.
2005-12-11 03:16 James Su <suzhe@tsinghua.org.cn>
* po/ja.po (1.51):
ja.po was updated.
2005-12-10 14:04 James Su <suzhe@tsinghua.org.cn>
* extras/panel/scim_panel_gtk.cpp (1.117),
modules/SetupUI/scim_panel_gtk_setup.cpp (1.15), po/cs.po (1.17),
po/de.po (1.37), po/fr.po (1.30), po/it.po (1.20), po/ja.po (1.50),
po/ko.po (1.40), po/pa.po (1.4), po/scim.pot (1.109), po/zh_CN.po
(1.156), po/zh_TW.po (1.155):
Merge Hiroyuki Ikezoe's patch to add a toolbar never shown option.
2005-12-08 08:37 James Su <suzhe@tsinghua.org.cn>
* configure.ac (1.148), po/scim.pot (1.108):
Bump to 1.4.3
2005-12-06 10:14 James Su <suzhe@tsinghua.org.cn>
* Makefile.am (1.22):
Don't remove intltool-extract intltool-merge intltool-update when
making clean.
2005-12-01 08:27 James Su <suzhe@tsinghua.org.cn>
* src/scim_socket.cpp (1.44):
Fix scim_get_default_panel_socket_address to support inet socket
address.
2005-11-24 06:21 James Su <suzhe@tsinghua.org.cn>
* configure.ac (1.147):
Bump required gtk2 version to 2.4.0
2005-11-23 13:21 James Su <suzhe@tsinghua.org.cn>
* po/cs.po (1.16), po/de.po (1.36), po/fr.po (1.29), po/it.po
(1.19), po/ja.po (1.49), po/ko.po (1.39), po/pa.po (1.3),
po/scim.pot (1.107), po/zh_CN.po (1.155), po/zh_TW.po (1.154),
utils/scimkeyselection.cpp (1.7):
Don't accept empty Key Code in key selection dialog.
2005-10-30 04:19 James Su <suzhe@tsinghua.org.cn>
* ChangeLog (1.65), Makefile.am (1.21):
Add --gmt option into cvs2cl.pl command line.
2005-10-25 03:27 James Su <suzhe@tsinghua.org.cn>
* configure.ac (1.146):
Don't use LIBTOOL_EXPORT_OPTIONS, it will cause problem.
2005-10-06 18:02 LiuCougar <liuspider@users.sourceforge.net>
* src/: scim_backend.h (1.26), scim_event.h (1.26),
scim_filter_module.h (1.7), scim_frontend.h (1.42), scim_hotkey.h
(1.5):
corrected some API docs
2005-09-29 10:51 James Su <suzhe@tsinghua.org.cn>
* src/scim_global_config.cpp (1.7):
Include cstdio to fix "implicit declaration of function snprintf"
issue.
2005-09-25 12:01 James Su <suzhe@tsinghua.org.cn>
* ChangeLog (1.64), Makefile.am (1.20), cvs2cl.pl (1.1), developers
(1.1), mkchlog (1.6):
Use cvs2cl.pl (http://www.red-bean.com/cvs2cl/)instead of old
mkchlog script.
2005-09-13 14:16 James Su <suzhe@tsinghua.org.cn>
* extras/gtk2_immodule/imscim.cpp (1.11):
Prevent gtk from being choose SCIM immodule by default.
2005-08-25 14:29 James Su <suzhe@tsinghua.org.cn>
* modules/FrontEnd/IMdkit/: Makefile.am (1.5), Xi18nTr.h (1.2):
Remove Xi18nTr.h as well.
2005-08-25 13:13 LiuCougar <liuspider@users.sourceforge.net>
* modules/FrontEnd/IMdkit/: Makefile.am (1.4), i18nTr.c (1.2):
remove useless file
2005-08-18 10:12 Mike FABIAN <mfabian@users.sourceforge.net>
* po/ja.po (1.48):
fix typo.
2005-08-16 07:48 tag scim_1_4_2
2005-08-16 07:48 James Su <suzhe@tsinghua.org.cn>
* ChangeLog (1.63):
Updated ChangeLog.
2005-08-16 07:26 James Su <suzhe@tsinghua.org.cn>
* configure.ac (1.145), extras/gtk2_immodule/gtkimcontextscim.cpp
(1.170), modules/FrontEnd/scim_x11_frontend.cpp (1.179),
src/scim_compose_key.cpp (1.7), src/scim_compose_key.h (1.5):
Only use ComposeKeyFactory as fallback in FrontEnds when ComposeKey
input method is enabled.
2005-08-16 02:12 James Su <suzhe@tsinghua.org.cn>
* po/: cs.po (1.15), de.po (1.35), fr.po (1.28), it.po (1.18),
ja.po (1.47), ko.po (1.38), pa.po (1.2), scim.pot (1.106), zh_CN.po
(1.154), zh_TW.po (1.153):
Updated po files.
2005-08-15 14:27 James Su <suzhe@tsinghua.org.cn>
* modules/IMEngine/scim_rawcode_imengine.cpp (1.7):
* Enhanced RawCode IMEngine to support UCS-4.
2005-08-15 12:45 James Su <suzhe@tsinghua.org.cn>
* extras/gtk2_immodule/gtkimcontextscim.cpp (1.169),
modules/FrontEnd/scim_x11_frontend.cpp (1.178), src/scim_iconv.cpp
(1.18), src/scim_iconv.h (1.18), src/scim_imengine.h (1.19),
src/scim_panel_agent.cpp (1.8):
* Added IConvert::get_encoding () method. * Fixed a bug of focused
ic handling in gtkimmodule, x11 FrontEnd and PanelAgent.
2005-08-15 06:33 James Su <suzhe@tsinghua.org.cn>
* modules/SetupUI/scim_imengine_setup.cpp (1.9):
Always load all IMEngine modules, otherwise the disabled modules
won't be displayed.
2005-08-10 06:26 tag scim_1_4_1
2005-08-10 06:26 James Su <suzhe@tsinghua.org.cn>
* ChangeLog (1.62):
Updated ChangeLog.
2005-08-10 06:20 James Su <suzhe@tsinghua.org.cn>
* configure.ac (1.144), po/scim.pot (1.105):
Bump to 1.4.1
2005-08-09 13:26 LiuCougar <liuspider@users.sourceforge.net>
* AUTHORS (1.8), configure.ac (1.143), po/pa.po (1.1):
added pa.po, thanks to Amanpreet Singh Alam
2005-08-05 16:12 James Su <suzhe@tsinghua.org.cn>
* src/scim_attribute.h (1.7):
Added operator< for Attribute.
2005-08-05 01:54 James Su <suzhe@tsinghua.org.cn>
* src/: scim_debug.cpp (1.10), scim_debug.h (1.18):
Fix potential crash bug when libscim and external modules use
different debug compile option.
2005-08-02 08:48 James Su <suzhe@tsinghua.org.cn>
* future-plan.txt (1.1):
Added future-plan.txt
2005-07-30 13:09 James Su <suzhe@tsinghua.org.cn>
* configure.ac (1.142), po/scim.pot (1.104):
Fixed a typo in configure script.
2005-07-14 09:13 James Su <suzhe@tsinghua.org.cn>
* src/: scim_event.h (1.25), scim_keyboard_layout_data.h (1.3):
Three new Keyboard Layouts (Icelandic, Lithuanian, Ukrainian) were
added.
2005-07-13 08:54 tag scim_1_4_0
2005-07-13 08:54 James Su <suzhe@tsinghua.org.cn>
* TODO (1.14), src/scim_event.cpp (1.29):
Return correct ascii code for some control keys.
2005-07-12 15:06 James Su <suzhe@tsinghua.org.cn>
* ChangeLog (1.61), scim.pc.in (1.17):
Remove scimtabledir.
2005-07-12 14:30 James Su <suzhe@tsinghua.org.cn>
* docs/Makefile.am (1.6), docs/scim.cfg.in (1.13),
po/Makefile.in.in (1.8), po/scim.pot (1.103):
Fixed some path issue in build system
2005-07-12 03:10 James Su <suzhe@tsinghua.org.cn>
* docs/scim.cfg.in (1.12):
Added Uses_SCIM_FILTER
2005-07-10 14:39 James Su <suzhe@tsinghua.org.cn>
* ChangeLog (1.60):
Updated ChangeLog
2005-07-10 14:25 James Su <suzhe@tsinghua.org.cn>
* configure.ac (1.141):
Bump version to 1.4.0
2005-07-10 13:45 James Su <suzhe@tsinghua.org.cn>
* TODO (1.13), extras/gtk2_immodule/Makefile.am (1.27),
extras/panel/Makefile.am (1.17), extras/setup/Makefile.am (1.12),
modules/Config/Makefile.am (1.18), modules/Filter/Makefile.am
(1.2), modules/FrontEnd/Makefile.am (1.33),
modules/IMEngine/Makefile.am (1.10), modules/SetupUI/Makefile.am
(1.18), src/Makefile.am (1.55), tests/Makefile.am (1.15),
utils/Makefile.am (1.11):
Fixed build issue in separated directory.
2005-07-10 07:34 James Su <suzhe@tsinghua.org.cn>
* configure.ac (1.140), extras/gtk2_immodule/Makefile.am (1.26),
modules/Config/Makefile.am (1.17), modules/IMEngine/Makefile.am
(1.9), src/Makefile.am (1.54):
disable ld version script by default.
2005-07-08 14:33 James Su <suzhe@tsinghua.org.cn>
* po/: cs.po (1.14), de.po (1.34), fr.po (1.27), it.po (1.17),
ja.po (1.46), ko.po (1.37), scim.pot (1.102), zh_CN.po (1.153),
zh_TW.po (1.152):
Updated ko.po
2005-07-08 05:06 James Su <suzhe@tsinghua.org.cn>
* src/: scim_debug.cpp (1.9), scim_debug.h (1.17):
Fixed a compilation warning when using gcc4.
2005-07-07 11:09 James Su <suzhe@tsinghua.org.cn>
* po/cs.po (1.13):
Updated cs.po
2005-07-06 16:26 James Su <suzhe@tsinghua.org.cn>
* extras/gtk2_immodule/im-scim.version-script (1.2),
src/libscim.version-script (1.2):
Hide more symbols.
2005-07-06 14:28 James Su <suzhe@tsinghua.org.cn>
* po/zh_TW.po (1.151):
Updated zh_TW.po
2005-07-06 13:11 James Su <suzhe@tsinghua.org.cn>
* po/ja.po (1.45):
Updated ja.po
2005-07-06 09:38 James Su <suzhe@tsinghua.org.cn>
* po/fr.po (1.26):
Updated fr.po
2005-07-06 04:47 tag scim_1_3_3
2005-07-06 04:47 James Su <suzhe@tsinghua.org.cn>
* configure.ac (1.139):
Update version to 1.3.3
2005-07-06 04:25 James Su <suzhe@tsinghua.org.cn>
* ChangeLog (1.59), po/cs.po (1.12), po/de.po (1.33), po/fr.po
(1.25), po/it.po (1.16), po/ja.po (1.44), po/ko.po (1.36),
po/scim.pot (1.101), po/zh_CN.po (1.152), po/zh_TW.po (1.150):
Ready to release 1.3.3
2005-07-06 03:57 James Su <suzhe@tsinghua.org.cn>
* configure.ac (1.138), modules/Config/scim_simple_config.cpp
(1.35), modules/Config/scim_simple_config.h (1.22),
modules/Config/scim_socket_config.cpp (1.22),
modules/Config/scim_socket_config.h (1.11),
modules/IMEngine/scim_socket_imengine.cpp (1.21),
modules/IMEngine/scim_socket_imengine.h (1.13):
Put some module classes into scim namespace to prevent being
conflict with external classes. Bump version to 1.3.3
2005-07-05 16:13 James Su <suzhe@tsinghua.org.cn>
* configure.ac (1.137), extras/gtk2_immodule/Makefile.am (1.25),
extras/gtk2_immodule/im-scim.version-script (1.1),
modules/Config/Makefile.am (1.16),
modules/Config/config.version-script (1.1),
modules/IMEngine/Makefile.am (1.8),
modules/IMEngine/imengine.version-script (1.1), src/Makefile.am
(1.53), src/libscim.version-script (1.1), src/scim_chartraits.cpp
(1.11):
Use ld --version-script command to limit the exported symbols of
libscim-1.0.so, im-scim.so, and all Config/IMEngine modules. It
could workaround the incompatibility issue of libstdc++.so.5 and
libstdc++.so.6 in some gtk apps. This hack is known to work with
realplay. But acroread still doesn't work.
2005-07-03 08:36 James Su <suzhe@tsinghua.org.cn>
* extras/gtk2_immodule/gtkimcontextscim.cpp (1.168),
modules/Config/scim_simple_config.cpp (1.34),
modules/FrontEnd/scim_socket_frontend.cpp (1.37),
src/scim_config_agent.cpp (1.10):