-
Notifications
You must be signed in to change notification settings - Fork 4
/
ChangeLog.pre-2-23
2596 lines (1739 loc) · 74.5 KB
/
ChangeLog.pre-2-23
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
2008-01-29 Christian Persch <[email protected]>
* gucharmap.pc.in:
* gucharmap/gucharmap-chapters.c: (gucharmap_chapters_constructor):
Merge from 2-22 branch.
2007-12-26 Christian Persch <[email protected]>
* gucharmap.desktop.in.in:
* configure.ac:
* Makefile.am: Add gucharmap version to the desktop file.
2007-12-25 Christian Persch <[email protected]>
* gucharmap/gucharmap-table.c:
(gucharmap_table_set_codepoint_list): Check for NULL before unref'ing.
2007-12-17 Christian Persch <[email protected]>
=== Release 2.21.4 ===
2007-12-13 Behdad Esfahbod <[email protected]>
* MAINTAINERS: Remove Noah, add chpe.
2007-12-12 Christian Persch <[email protected]>
* *: Update FSF address. Bug #407323.
2007-12-10 Christian Persch <[email protected]>
* gucharmap/gucharmap-table.[ch]:
R gucharmap/cartable_accessible.[ch]:
R gucharmap/charcell_accessible.[ch]
A gucharmap/gucharmap-chartable.[ch]:
A gucharmap/gucharmap-chartable-accessible.[ch]:
A gucharmap/gucharmap-chartable-cell-accessible.[ch]: Refactored.
Split the real chartable out of gucharmap-table.
Fix bugs #396243, #501915 and many others.
2007-12-06 Christian Persch <[email protected]>
* gucharmap/gucharmap-table.c: (create_glyph_pixmap),
(place_zoom_window), (update_zoom_window), (make_zoom_window),
(destroy_zoom_window), (button_press_event), (drag_begin),
(gucharmap_table_init), (gucharmap_table_zoom_enable):
* gucharmap/gucharmap-table.h: Simplify character popup code. Should
fix popup sizing bug #501915.
2007-12-05 Christian Persch <[email protected]>
* gucharmap/gucharmap-charmap.h:
* gucharmap/gucharmap-table.h:
* gucharmap/gucharmap-unicode-info.h: Remove unimplemented functions.
Bug #331103.
2007-12-05 Christian Persch <[email protected]>
* gucharmap/gucharmap-settings.c: (window_state_timeout_cb),
(window_state_event_cb), (gucharmap_settings_add_window): Fix the
build with --disable-gconf. Bug #501710.
2007-12-04 Christian Persch <[email protected]>
* configure.ac:
* gucharmap/Makefile.am:
* gucharmap/gucharmap-window.c: (help_contents):
* gucharmap/main.c: (main): Remove gnome option. Bug #469131,
patch by Jani Monoses.
2007-12-04 Christian Persch <[email protected]>
* gucharmap.schemas.in:
* gucharmap/Makefile.am:
* gucharmap/gucharmap-block-chapters-model.c:
(gucharmap_block_chapters_model_init), (get_codepoint_list),
(get_book_codepoint_list), (character_to_iter),
(gucharmap_block_chapters_model_class_init),
(gucharmap_block_chapters_model_new):
* gucharmap/gucharmap-block-chapters-model.h:
* gucharmap/gucharmap-block-chapters.c:
(gucharmap_block_chapters_init),
(gucharmap_block_chapters_class_init),
(gucharmap_block_chapters_new):
* gucharmap/gucharmap-block-chapters.h:
* gucharmap/gucharmap-chapters-model.c:
(default_get_codepoint_list), (gucharmap_chapters_model_init),
(gucharmap_chapters_model_finalize),
(gucharmap_chapters_model_class_init),
(gucharmap_chapters_model_get_codepoint_list),
(gucharmap_chapters_model_get_book_codepoint_list),
(gucharmap_chapters_model_character_to_iter),
(gucharmap_chapters_model_get_title),
(gucharmap_chapters_model_id_to_iter):
* gucharmap/gucharmap-chapters-model.h:
* gucharmap/gucharmap-chapters-view.c: (select_iter),
(gucharmap_chapters_view_init),
(gucharmap_chapters_view_class_init),
(gucharmap_chapters_view_new), (gucharmap_chapters_view_set_model),
(gucharmap_chapters_view_next), (gucharmap_chapters_view_previous),
(gucharmap_chapters_view_get_selected),
(gucharmap_chapters_view_set_selected),
(gucharmap_chapters_view_select_character),
(gucharmap_chapters_view_get_codepoint_list),
(gucharmap_chapters_view_get_book_codepoint_list):
* gucharmap/gucharmap-chapters-view.h:
* gucharmap/gucharmap-chapters.c: (selection_changed),
(default_get_codepoint_list), (default_get_book_codepoint_list),
(default_go_to_character), (gucharmap_chapters_init),
(gucharmap_chapters_constructor),
(gucharmap_chapters_set_property), (gucharmap_chapters_class_init),
(gucharmap_chapters_new_with_model),
(gucharmap_chapters_set_model), (gucharmap_chapters_get_model),
(gucharmap_chapters_next), (gucharmap_chapters_previous),
(gucharmap_chapter_get_string), (gucharmap_chapter_set_string):
* gucharmap/gucharmap-chapters.h:
* gucharmap/gucharmap-charmap.c: (make_chartable_pane),
(gucharmap_charmap_new), (gucharmap_charmap_set_chapters):
* gucharmap/gucharmap-script-chapters-model.c:
(gucharmap_script_chapters_model_init), (get_codepoint_list),
(append_script), (get_book_codepoint_list), (character_to_iter),
(gucharmap_script_chapters_model_class_init),
(gucharmap_script_chapters_model_new):
* gucharmap/gucharmap-script-chapters-model.h:
* gucharmap/gucharmap-script-chapters.c:
(gucharmap_script_chapters_init),
(gucharmap_script_chapters_class_init),
(gucharmap_script_chapters_new):
* gucharmap/gucharmap-script-chapters.h:
* gucharmap/gucharmap-settings.c: (get_first_non_underscore_char),
(get_default_last_char), (gucharmap_settings_get_chapters_mode),
(gucharmap_settings_set_chapters_mode),
(gucharmap_settings_get_last_char):
* gucharmap/gucharmap-settings.h:
* gucharmap/gucharmap-table.c: (gucharmap_table_finalize),
(gucharmap_table_class_init),
(gucharmap_table_get_active_character),
(gucharmap_table_set_codepoint_list):
* gucharmap/gucharmap-window.c: (view_by): Refactoring: move common
code from gucharmap-{script,block}-chapters to
gucharmap-chapters-model/gucharmap-chapters-view. Persist the last
seen character, and keep it when switching between views.
2007-12-04 Christian Persch <[email protected]>
=== Release 2.21.3 ===
* configure.ac:
* po/POTFILES.in:
2007-12-03 Christian Persch <[email protected]>
* gucharmap.schemas.in:
* gucharmap/gucharmap-settings.c: (gucharmap_settings_initialize),
(gucharmap_settings_shutdown), (gucharmap_settings_initialized),
(gucharmap_settings_get_chapter), (gucharmap_settings_set_chapter),
(gucharmap_settings_get_chapters_mode),
(gucharmap_settings_set_chapters_mode),
(gucharmap_settings_get_font), (gucharmap_settings_set_font),
(gucharmap_settings_get_last_char),
(gucharmap_settings_set_last_char),
(gucharmap_settings_get_snap_pow2),
(gucharmap_settings_set_snap_pow2), (window_state_timeout_cb),
(free_window_state), (window_configure_event_cb),
(window_state_event_cb), (gucharmap_settings_add_window):
* gucharmap/gucharmap-settings.h:
* gucharmap/gucharmap-window.c: (gucharmap_window_init):
* gucharmap/main.c: (main): Cleanup settings code, and make window
state persistence not hammer gconf while resizing. Bug #501383.
2007-12-03 Christian Persch <[email protected]>
* gucharmap/gucharmap-mini-fontsel.c: (fill_font_families_combo),
(update_font_familiy_combo), (family_changed),
(gucharmap_mini_font_selection_init),
(gucharmap_mini_font_selection_get_type),
(gucharmap_mini_font_selection_set_font_name):
* gucharmap/gucharmap-mini-fontsel.h: Port to GtkComboBox. Bug
#454250.
2007-12-03 Christian Persch <[email protected]>
* gucharmap/gucharmap-window.c: (make_menu): Add mnemonic. Bug
#466678, patch by Patrick Wade.
2007-12-03 Christian Persch <[email protected]>
* configure.ac: Bump gtk+ dependency to 2.12.0.
* gucharmap/gucharmap-window.c: (make_text_to_copy): Port to new
tooltips API. Bug #459279.
2007-12-03 Christian Persch <[email protected]>
* configure.ac: Bump version after branching.
* Makefile.am:
* gucharmap.pc.in:
* gucharmap/Makefile.am:
* gucharmap/gucharmap-block-chapters.c: (selection_changed),
(gucharmap_block_chapters_settings_init),
(gucharmap_block_chapters_init):
* gucharmap/gucharmap-chapters.c: (gucharmap_chapter_get_string),
(gucharmap_chapter_set_string):
* gucharmap/gucharmap-chapters.h:
* gucharmap/gucharmap-charmap.c: (gucharmap_active_char_save),
(active_char_set), (gucharmap_charmap_new):
* gucharmap/gucharmap-script-chapters.c: (selection_changed),
(gucharmap_script_chapters_settings_init),
(gucharmap_script_chapters_init):
* gucharmap/gucharmap-table.c: (draw_chartable_from_scratch):
* gucharmap/gucharmap-window.c: (snap_cols_pow2), (make_menu),
(fontsel_changed), (gucharmap_window_state_changed),
(gucharmap_window_size_changed), (gucharmap_window_init):
* gucharmap/main.c: (main): Remember the settings. Bug #140414,
patch by Jason Allen and Jared Moore.
2007-10-24 Changwoo Ryu <[email protected]>
* configure.ac: Korean manual translation migrated to
gnome-doc-utils; removed help/ko/Makefile from AC_CONFIG_FILES.
2007-09-17 Behdad Esfahbod <[email protected]>
Released 1.10.1.
* configure.ac: Bump version to 1.10.1 and libtool version to 6:2:0.
* NEWS: Updated.
2007-09-05 Behdad Esfahbod <[email protected]>
Bug 311912 – Should come up showing the unicode block for the default
language
Patch from Federico Mena Quintero
* gucharmap/gucharmap-script-chapters.c
(get_first_non_underscore_char), (select_default_script),
(tree_view_map_event_cb), (queue_select_default_script),
(gucharmap_script_chapters_init): Jump to default script for users
selected languge (LC_MESSAGES). We do this by getting translation for
"_File" and jumping to the block containing its first character.
We delay this until the tree view is mapped so that the tree will
scroll to the selected row in addition to just selecting it.
2007-09-05 Behdad Esfahbod <[email protected]>
Bug 466213 – No branch for gnome-2-18
Revert Bug 459279 – port to new tooltips API
* configure.ac: Require gtk 2.6.0 again.
* gucharmap/gucharmap-window.c (make_text_to_copy):
Revert port to new tooltips API, so we build with stable Gtk+.
2007-09-05 Behdad Esfahbod <[email protected]>
Bug 357471 – chartable::finalize()
Patch from paolo borelli
* gucharmap/gucharmap-table.c (gucharmap_table_finalize),
(gucharmap_table_class_init), (motion_notify_event),
(gucharmap_table_init):
* gucharmap/gucharmap-table.h:
Implement chartable::finalize() so that it frees some stuff and chains
up to the parent finalize(). Also avoid leaking the target_list each time
something is drag&dropped.
2007-08-07 Behdad Esfahbod <[email protected]>
* MAINTAINERS: Add Userid field.
2007-07-28 Jan Arne Petersen <[email protected]>
* configure.ac: Remove help/de/Makefile as de moved to
gnome-doc-utils.
2007-07-24 Christian Persch <[email protected]>
* configure.ac: Update gtk req to 2.11.6.
* gucharmap/gucharmap-window.c: (make_text_to_copy): Port to new
tooltips API. Bug #459279.
2007-06-21 Behdad Esfahbod <[email protected]>
Bug 396265 – don't export internal symbols
* configure.ac:
* gucharmap/Makefile.am:
* gucharmap/main.c (main):
Only export '^gucharmap_.*' symbols.
2007-04-30 Behdad Esfahbod <[email protected]>
Bug 434276 – G_UNICODE_BREAK_SURROGATE
Patch from huzheng
* gucharmap/gucharmap-charmap.c (set_details): Fix typo comparing
character General Category to G_UNICODE_BREAK_SURROGATE instead of
the break type.
2007-04-26 David Farning <[email protected]>
* pixmaps/Makefile.am (update-icon-cache): fix gtk-update-icon-cache for
for uninstall-hook.
2007-04-26 Christian Persch <[email protected]>
* gucharmap/gucharmap-search-dialog.c:(gucharmap_search_dialog_finalize):
Chain up to parent's finalise handler. Bug #433134.
2007-03-12 Vincent Untz <[email protected]>
* configure.in: post-release bump to 1.10.1.
==================== 1.10.0 ====================
2007-03-12 Vincent Untz <[email protected]>
* NEWS:
* gucharmap/Makefile.am: Bump libtool version to 6:1:0.
* configure.in: version 1.10.0
2007-02-14 Behdad Esfahbod <[email protected]>
Released 1.9.0.
* configure.ac: Bump version to 1.9.0
* gucharmap/Makefile.am: Bump libtool version to 6:0:0.
* NEWS: Updated.
2007-02-02 Christian Persch <[email protected]>
* Makefile.am:
* configure.ac: Don't use GNOME_DOC_INIT conditionally. Update gdu
dependency to 0.9.0. Bug #354101.
2007-01-19 Christian Persch <[email protected]>
* gucharmap/charcell_accessible.c:
(charcell_accessible_get_extents),
(charcell_accessible_grab_focus), (idle_do_action):
* gucharmap/chartable_accessible.c:
(chartable_accessible_ref_accessible_at_point), (find_object):
* gucharmap/gucharmap-chapters.c: (gucharmap_chapters_init):
* gucharmap/gucharmap-charmap.c:
* gucharmap/gucharmap-search-dialog.c: (entry_changed):
* gucharmap/gucharmap-table-private.h:
* gucharmap/gucharmap-table.c: (_gucharmap_table_cell_column),
(_gucharmap_table_column_width), (_gucharmap_table_x_offset),
(_gucharmap_table_row_height), (_gucharmap_table_y_offset),
(get_appropriate_upper_left_xy), (draw_borders), (get_cell_at_xy),
(draw_character), (draw_square_bg), (expose_square),
(draw_and_expose_cell), (copy_rows), (redraw_rows),
(get_root_coords_at_active_char),
(get_appropriate_active_char_corner_xy), (_gucharmap_table_redraw),
(key_press_event), (scroll_chartable), (button_press_event),
(motion_notify_event), (mouse_wheel_up), (mouse_wheel_down),
(drag_data_received), (gucharmap_table_set_active_character):
* gucharmap/gucharmap-window.c:
(_gucharmap_window_progress_cursor), (help_about): Bug #396265: fix
compile warnings and make internal symbols start with underscore.
2007-01-10 Behdad Esfahbod <[email protected]>
Bug 386554 – compilation from CVS HEAD failed due to cclosure marshal
updates?
* gucharmap/Makefile.am: Use different temp files for marshaler .c and
.h files.
2006-12-15 Kjartan Maraas <[email protected]>
* autogen.sh: Update to work with automake 1.10.
2006-09-04 Behdad Esfahbod <[email protected]>
Released 1.8.0.
* configure.ac: Bump version to 1.8.0
* gucharmap/Makefile.am: Bump libtool version to 5:1:0.
* NEWS: Updated.
2006-09-03 Behdad Esfahbod <[email protected]>
Bug 354101 – must not conditionally use GNOME_DOC_INIT
* configure.ac: Rever the last change...
2006-09-02 Behdad Esfahbod <[email protected]>
Bug 332880 – parameter --disable-gnome doesn't has effect
* configure.ac: Move GNOME_DOC_INIT inside conditional for
have_gnome.
2006-08-25 Funda Wang <[email protected]>
* gucharmap/gucharmap-window.c: Mark various string as
translatable.
2006-08-03 Jovan Naumovski <[email protected]>
* Added sl.po to po/ and 'sl' to LINGUAS
2006-07-30 Behdad Esfahbod <[email protected]>
* configure.ac: Remove help/sv/Makefile as sv moved to
gnome-doc-utils.
* help/sv/.cvsignore: Update.
2006-07-26 Behdad Esfahbod <[email protected]>
* gucharmap/gucharmap-marshal.list: Make a dummy change to force
recreation of marshallers since we changed their prefix in
Makefile.am.
2006-07-24 Behdad Esfahbod <[email protected]>
* MAINTAINERS: Add Behnam Esfahbod.
2006-07-24 Behdad Esfahbod <[email protected]>
Released 1.7.0.
* configure.ac:
Require intltool >= 0.35.0
Bump version to 1.7.0
* gucharmap/Makefile.am:
Remove -no-undefined. Breaks cygwin build. Send patch please.
Bump libtool version to 5:0:0
* NEWS:
Updated.
2006-07-24 Behdad Esfahbod <[email protected]>
Bug 341260 – String "Snap Columns to Power of Two" not marked for
translation
* gucharmap/gucharmap-window.c (make_menu): Add the message back for
translation.
2006-07-24 Behdad Esfahbod <[email protected]>
Part of Bug 331103 – please use '_' to indicate internal symbols
* gucharmap/Makefile.am:
* gucharmap/gucharmap-block-chapters.c
(gucharmap_block_chapters_class_init):
* gucharmap/gucharmap-chapters.c (gucharmap_chapters_class_init):
* gucharmap/gucharmap-charmap.c (gucharmap_charmap_class_init):
* gucharmap/gucharmap-intl.c (_gucharmap_intl_ensure_initialized):
* gucharmap/gucharmap-intl.h:
* gucharmap/gucharmap-mini-fontsel.c
(gucharmap_mini_font_selection_class_init):
* gucharmap/gucharmap-script-chapters.c
(gucharmap_script_chapters_class_init):
* gucharmap/gucharmap-script-codepoint-list.c
(gucharmap_script_codepoint_list_class_init):
* gucharmap/gucharmap-search-dialog.c
(gucharmap_search_dialog_class_init):
* gucharmap/gucharmap-table.c
(chartable_accessible_factory_class_init),
(gucharmap_table_class_init):
* gucharmap/gucharmap-unicode-info.c (gucharmap_get_unicode_name),
(gucharmap_get_unicode_category_name):
* gucharmap/gucharmap-window.c (gucharmap_window_class_init):
* gucharmap/main.c (main):
Set prefix for marshallers to
_gucharmap_marshal, to make the marshallers internal.
Change gucharmap_intl_ensure_initialized to
_gucharmap_intl_ensure_initialized.
2006-07-22 Behnam Esfahbod <[email protected]>
* gucharmap/download-unicode-files.sh: Add comments and getting optional
output directory.
2006-07-19 Behnam Esfahbod <[email protected]>
Bug 334505 – Search buttons Prev Next unsensitive when they shouldn't be
* gucharmap/gucharmap-search-dialog.c: Add toggled signals to
check buttons.
2006-07-19 Behnam Esfahbod <[email protected]>
Bug 336283 – Update to UCD 5.0
Update to Unicode 5.0 Character Database, released on July 18, 2006.
* gucharmap/unicode-blocks.h,
* gucharmap/unicode-categories.h,
* gucharmap/unicode-names.h,
* gucharmap/unicode-nameslist.h,
* gucharmap/unicode-scripts.h,
* gucharmap/unicode-unihan.h: Updated outputs of generator script.
* gucharmap/gucharmap/download-unicode-files.sh": Add download script
to make UCD updates easier.
2006-04-18 Behdad Esfahbod <[email protected]>
Bug 337943 – [Patch] Use po/LINGUAS
Updated patch from Przemysław Grzegorczyk.
* configure.in, po/LINGUAS: Use intltool 0.34.90 format.
2006-04-10 Behdad Esfahbod <[email protected]>
Bug 337943 – [Patch] Use po/LINGUAS
Patch from Przemysław Grzegorczyk.
* configure.in, po/LINGUAS: Move list of translations to po/LINGUAS.
2006-03-27 Behdad Esfahbod <[email protected]>
* gucharmap/gucharmap-window.c: Don't check _("translator-credits"),
the about dialog code does this automatically.
2006-03-26 Behdad Esfahbod <[email protected]>
* pixmaps/Makefile.am: Respect DESTDIR.
2006-03-25 Behdad Esfahbod <[email protected]>
Bug 335952 – refcount leak in main
Patch from Christian Persch.
* gucharmap/main.c (main): Unref the MateProgram instance when
we are done.
2006-03-19 Behdad Esfahbod <[email protected]>
Bug 334865 – tiny string leak
Patch from Paolo Borelli.
* gucharmap/gucharmap-script-chapters.c (get_codepoint_list):
Free script_untranslated.
2006-03-13 Behdad Esfahbod <[email protected]>
Released 1.6.0.
* configure.in:
* gucharmap/Makefile.am: Bump versions.
* NEWS: Updated.
2006-03-04 Chao-Hsiung Liao <[email protected]>
* configure.ac: Added "zh_HK" to ALL_LINGUAS.
2006-02-25 Behdad Esfahbod <[email protected]>
Released 1.5.3.
* configure.in:
* gucharmap/Makefile.am: Bump versions.
2006-02-20 Behdad Esfahbod <[email protected]>
* gucharmap/gucharmap-windoc.c, po/*.po: Change "based on Unicode
Character Databse" to "based on the Unicode Character Database".
2006-02-19 Behnam Esfahbod <[email protected]>
Bug 331722 – gucharmap crashes with search next/prev
* gucharmap/gucharmap-search-dialog.c
(gucharmap_search_dialog_start_search): Moving to
_gucharmap_search_dialog_fire_search and adding _entry_is_empty check
before calling that.
2006-02-19 Behnam Esfahbod <[email protected]>
* gucharmap/gucharmap-window.c: Reverting the description change,
because of string freeze.
2006-02-19 Behnam Esfahbod <[email protected]>
* gucharmap/gucharmap-search-dialog.c: Renaming "Cancel" button to
"Close". Disabling Next and Previous buttons when there's no
result.
2006-02-19 Behnam Esfahbod <[email protected]>
* gucharmap/gucharmap-window.c: Fixing a typo and two warnings.
2006-02-18 Behdad Esfahbod <[email protected]>
* pixmaps/Makefile.am: Pass -f to gtk-update-icon-cache, as it's
rather crazy.
2006-02-18 Behdad Esfahbod <[email protected]>
* pixmaps/Makefile.am: Pass -t and the target directory to
gtk-update-icon-cache.
2006-02-18 Behdad Esfahbod <[email protected]>
* gucharmap/main.c (main): Call g_set_application_name.
* gucharmap/gucharmap-window.c (help_about): Set logo-icon-name
in gtk_show_about_dialog.
* pixmaps/Makefile.am: Call gtk-update-icon-cache.
2006-02-17 Behdad Esfahbod <[email protected]>
Bug 331565 – cvs fails to build -- gucharmap/Makefile.am:27: blank
line following trailing backslash
* gucharmap/Makefile.am: Fixed.
2006-02-17 Behdad Esfahbod <[email protected]>
* gucharmap/gucharmap-window.c: Use gtk_window_set_icon_name to set
the icon. Makes it themable.
* gucharmap/main.c: Do gtk_window_set_default_icon_name.
2006-02-13 Behdad Esfahbod <[email protected]>
Released 1.5.2.
* configure.in:
* gucharmap/Makefile.am: Bump versions.
2006-02-13 Behdad Esfahbod <[email protected]>
Bug 326272 – Help/About dialog isn't HIG compliant
Patch from Behnam "ZWNJ" Esfahbod
* gucharmap/gucharmap-window.c (help_about): Use "GNOME Character Map"
instead of "gucharmap". Add license information.
* gucharmap/gen-guch-unicode-tables.pl:
* gucharmap/unicode-blocks.h:
* gucharmap/unicode-categories.h:
* gucharmap/unicode-names.h:
* gucharmap/unicode-nameslist.h:
* gucharmap/unicode-scripts.h:
* gucharmap/unicode-unihan.h: Guard headers from multiple inclusion.
2006-02-11 Behdad Esfahbod <[email protected]>
* gucharmap/Makefile.am, gucharmap/gucharmap-window.c (load_icon),
pixmaps/Makefile.am: Move icon to DATADIR/icons/hicolor/48x48/apps.
2006-02-11 Behdad Esfahbod <[email protected]>
Bug 328912 – misc fixes
Patch from Christian Persch
* autogen.sh, configure.ac, Makefile.am: Modernize the build system.
* gucharmap/*.c: gucharmap_intl_ensure_initialized () in every
library entry point. Use gi18n-lib.h instead of custom gettext.
* gucharmap/main.c: Use GOption instead of popt.
2006-01-27 Behdad Esfahbod <[email protected]>
Released 1.5.1.
* configure.in:
* gucharmap/Makefile.am: Bump versions.
* README: Updated required Gtk+ version.
2006-01-27 Behdad Esfahbod <[email protected]>
* gucharmap/gucharmap-window.c (make_menu): Set translation domain on
the action group. (bug #326328)
2006-01-27 Behdad Esfahbod <[email protected]>
Fixes bug #328775.
* COPYING.UNICODE: Added.
* README: Refer to the above file.
* Makefile.am (EXTRA_DIST): Add the new file.
2006-01-22 Behdad Esfahbod <[email protected]>
Migrate 'es' help files to gnome-doc-utils.
* help/es/gucharmap.xml: Removed.
* help/es/Makefile.am: Oops, removed again.
* configure.ac (AC_CONFIG_OUTPUT): Removed help/es/Makefile.
* help/Makefile.am (SUBDIRS): Removed es.
2006-01-22 Behdad Esfahbod <[email protected]>
* help/es/Makefile.am: Weird, Francisco Javier F. Serrador removed
the file while updating the es translations! Readded. (bug #328135,
Elijah Newren)
2006-01-21 Behdad Esfahbod <[email protected]>
* gucharmap.desktop.in: Categorize as GNOME;GTK;Utility;
instead of GNOME:Application:Utility;. (bug #319078)
2006-01-21 Behdad Esfahbod <[email protected]>
* gucharmap/gucharmap-charmap.c: Enhance "Various Useful
Representation". (bug #135848)
* TODO: Marks some items as done. (Behnam Esfahbod)
2006-01-21 Behdad Esfahbod <[email protected]>
* gucharmap/gucharmap-window.c: Fix infinite loop on Next Character
in empty chapters like Low Surrogates. (bug #323934, Behnam Esfahbod)
2006-01-21 Behdad Esfahbod <[email protected]>
* configure.ac, gucharmap/Makefile.am: Add PANGO_CFLAGS and PANGO_LIBS
explicitly. (bug #309281)
2006-01-21 Behdad Esfahbod <[email protected]>
* gucharmap/gucharmap-search-dialog.c: Add a "Search in character
details" option. (bug #301628, Behnam Esfahbod)
2006-01-21 Behdad Esfahbod <[email protected]>
* gucharmap/gucharmap-window.c, po/*.po: Replace "translator_credits"
with "translator-credits". (bug #300965)
2006-01-21 Behdad Esfahbod <[email protected]>
* gucharmap.desktop.in: Categorize as GNOME;Application;Utility;
instead of Utility;Accessibility;. (bug #319078 again)
2005-12-12 Behdad Esfahbod <[email protected]>
* configure.in: Bump version to 1.5.0.
* gucharmap/Makefile.am: Increase libtool version.
2005-12-11 Brent Smith <[email protected]>
* help/C/gucharmap.xml:
added more verbose description for yelp to display in table of
contents, and removed version number from the title.
2005-11-27 Behdad Esfahbod <[email protected]>
* gucharmap/gucharmap-search-dialog.c: Warnings clean up. (Part of
#301628, Behnam Esfahbod)
2005-11-27 Behdad Esfahbod <[email protected]>
Decrease the amount of non-shared data.
#169491, Benoît Dejean, Behnam Esfahbod.
* gucharmap/gen-guch-unicode-tables.pl: Generate index-tables instead
of pointer-tables, for Unihan table, and names table.
* gucharmap/gucharmap-unicode-info.c: Update to follow.
* gucharmap/unicode-names.h, gucharmap/unicode-unihan.h: Regenerated.
2005-11-28 Noah Levitt <[email protected]>
* gucharmap/gucharmap-window.c: Fix ctrl+{pgdn,pgup}, which had
been inadvertantly swapped.
2005-11-27 Behdad Esfahbod <[email protected]>
* gucharmap/gucharmap-charmap.c: Make autolinking more strict to not
convert 3.1415 to 3.U+1415! (#303596, Behnam Esfahbod)
2005-11-27 Behdad Esfahbod <[email protected]>
* gucharmap/gucharmap-search-dialog.c: Add "whole word" search and
also search in the annotations. (#128700, Behnam Esfahbod)
2005-11-25 Behdad Esfahbod <[email protected]>
* gucharmap/gucharmap-window.c: Remove selection before inserting new
characters. (#319973, Behnam Esfahbod)
2005-11-25 Behdad Esfahbod <[email protected]>
* gucharmap/gucharmap-table.c: Follow up on several fixes to scrollbar
and cell activation. (#312001, Behnam Esfahbod)
2005-11-25 Behdad Esfahbod <[email protected]>
Use GtkUIManager. (#51532, thetroublemaker)
* gucharmap/gucharmap-window.c: Ported menus to gtkuimanager
* gucharmap/gucharmap-window.c: Created functions help_contents and
chapters_set_labels.
* gucharmap/gucharmap-window.c: Ported function help_about from
MateAboutDialog to GtkAboutDialog, thus got the function out of the
#if HAVE_GNOME.
* configure.ac: The Gtk+ requirement is now >= 2.6.0
2005-11-25 Behdad Esfahbod <[email protected]>
* gucharmap.desktop: Categorize as Utility;Accessibility instead of
Graphics;Viewer. (#319078, Stanislav Brabec)
2005-11-25 Behdad Esfahbod <[email protected]>
* gucharmap/gucharmap-table.c: Several fixes to scrollbar and cell
activation. (#312001, Behnam Esfahbod)
2005-11-25 Behdad Esfahbod <[email protected]>
* gucharmap/gucharmap-table.c: Make scrollbar jump a page at a time
instead of three. (#163710, Behnam Esfahbod)
2005-11-25 Behdad Esfahbod <[email protected]>
* gucharmap/gucharmap-window.c: Fix Next/Prev function behavior over
one-to-last/second characters. (#304952, Luca Cavalli, Behnam Esfahbod)
2005-11-22 Behdad Esfahbod <[email protected]>
Update to Unicode 4.1 Character Database. (#313411, Behnam Esfahbod)
* gucharmap/gucharmap-script-codepoint-list.c,
* gucharmap/gen-guch-unicode-tables.pl: Updated to handle 4.1 data.
* gucharmap/unicode-blocks.h,
* gucharmap/unicode-categories.h,
* gucharmap/unicode-names.h,
* gucharmap/unicode-nameslist.h,
* gucharmap/unicode-scripts.h,
* gucharmap/unicode-unihan.h: Updated outputs of above scripts.
2005-11-11 Behdad Esfahbod <[email protected]>
* gucharmap/gucharmap-table.c (set_active_cell): Update page on
up-arrow if necessary. (#316210, patch from Ferran Puig)
2005-10-21 Behdad Esfahbod <[email protected]>
* gucharmap/gucharmap-charmap.c (set_details): Enable Cantonese
pronunciation (#319342, patch from Benoît Dejean)
2005-10-15 Behdad Esfahbod <[email protected]>
* gucharmap/gucharmap-table.c, gucharmap/gucharmap-window.c: Change
#ifdef G_PLATFORM_WIN32 to #ifdef G_OS_WIN32.
Fixes Cygwin builds. (#318889, patch from Cygwin Ports maintainer)
2005-09-16 Behdad Esfahbod <[email protected]>
* gucharmap/gucharmap-window.c (gucharmap_window_class_init): call
finalize from the parent GtkWindow class. (#316514, patch from
Alexander Nedotsukov)
2005-09-16 Behdad Esfahbod <[email protected]>
* gucharmap/gucharmap-window.c: s/;;/;/, gcc 2.95.x compatibility. (#316515)
2005-09-08 Behdad Esfahbod <[email protected]>
* gucharmap/*.[ch]: Various gcc warning shut-ups. Mostly adding void
to function definitions with no parameter.
2005-09-08 Behdad Esfahbod <[email protected]>
* configure.ac: Bumped version /up/ to 1.4.4-cvs.
* gucharmap/Makefile.am: Pass -no-undefined to libtool. (#315490)
* MAINTAINERS: Hooking up myself!
2005-09-07 Inaki Larranaga <[email protected]>
* configura.ac: Added "eu" (Basque) to ALL_LINGUAS.
2005-09-06 Behdad Esfahbod <[email protected]>
1.4.4 released.
* configure.ac:
* gucharmap/Makefile.am: Bump version numbers for release.
* README, NEWS: Adjusted.
2005-08-19 Tommi Vainikainen <[email protected]>
* .cvsignore, Makefile.am, autogen.sh, configure.ac,
help/ChangeLog: Migrated to gnome-doc-utils.
2005-08-15 Behdad Esfahbod <[email protected]>
* src/gen-guch-unicode-tables.pl: Escape backslash when forming
C strings. (#313409, Behnam Esfahbod)
2005-07-25 Tommi Vainikainen <[email protected]>
* autogen.sh (srcdir): Set $srcdir automatically based on `dirname
$0` if not set. Fixes bug #158322.
* gucharmap/Makefile.am (BUILT_SOURCES): Add
gucharmap-marshal.[ch] and fix build rules for those files so it
works when srcdir != builddir.
2005-07-22 Ignacio Casal Quinteiro <[email protected]>
* configure.ac: Added 'gl' to ALL_LINGUAS.
2005-04-23 Noah Levitt <[email protected]>
* autogen.sh: Update from gnome-common cvs.
2005-04-01 Adi Attar <[email protected]>
* configure.ac: Added "xh" to ALL_LINGUAS.
2005-03-31 Steve Murphy <[email protected]>
* configure.ac: Added "rw" (Kinyarwanda) to ALL_LINGUAS.
2005-03-06 Dan Damian <[email protected]>
* configure.ac: Added ro (Romanian) to ALL_LINGUAS.
2005-01-23 Sebastien Bacher <[email protected]>
* gucharmap/gucharmap-window.c: (help_about): Added "@" to the emails
(Closes: #157938).
2005-01-10 Noah Levitt <[email protected]>
* Makefile.am:
* configure.ac: Don't do any help stuff when gnome support is
disabled. (#141152, Jason Allen)
2005-01-01 Pawan Chitrakar <[email protected]>
* configure.ac: Added ne "Nepali" in ALL_LINGUAS
2004-11-16 Kjartan Maraas <[email protected]>
* Makefile.am: Distcheck fixes.
* configure.ac: Bump versions.
2004-09-19 Abel Cheung <[email protected]>
* configure.ac: Added "tr" to ALL_LINGUAS.
2004-09-03 Akagic Amila <[email protected]>
* configure.ac: Again added 'bs' to ALL_LINGUAS.
2004-09-02 Christian Rose <[email protected]>
* configure.ac: Removed "bs" from ALL_LINGUAS, as
this translation contains errors.
2004-08-29 Akagic Amila <[email protected]>
* configure.ac: Added 'bs'
2004-08-24 Kjartan Maraas <[email protected]>
* configure.ac: Add «nb» to ALL_LINGUAS.
2004-05-24 Alexander Shopov <[email protected]>
* configure.ac (ALL_LINGUAS) Added "bg"
Bulgarian language
2004-05-23 Noah Levitt
* gucharmap/gucharmap-block-chapters.c (go_to_character):
* gucharmap/gucharmap-script-chapters.c (go_to_character): Have
chapter list scroll to selection automatically when searching.
2004-04-09 Guntupalli Karunakar <[email protected]>
* configure.ac: Added "gu" (Gujarati) to ALL_LINGUAS.
2004-04-01 Noah Levitt
* gucharmap/gucharmap-search-dialog.c: Fix crash when closing search
dialog with escape.