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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
|
2009-02-17 Inaki Larranaga Murgoitio <dooteo@euskalgnu.org>
* help/eu/figures/: Added image in Basque language. Images are:
charpick-preferences.png
==================== 2.25.91 ======================
2009-02-16 Inaki Larranaga Murgoitio <dooteo@euskalgnu.org>
* help/eu/eu.po: Added Basque translation.
* help/Makefile.am: Added 'eu' to DOC_LINGUAS.
==================== 2.25.90 ======================
2009-01-26 Callum McKenzie <callum@spooky-possum.org>
* charpick.c: Deprecated symbol removal. Patch from Maxim
Ermilov, see bug 562520.
==================== 2.25.3 ======================
==================== 2.25.2 ======================
2008-12-17 William Jon McCann <jmccann@redhat.com>
* Makefile.am: Add missing libgnomeui CFLAGS
Patch from: lucasr.at.mundo@gmail.com
(Bug #564192)
2008-11-14 Callum McKenzie <callum@spooky-possum.org>
* properties.c: Patch from Maxim Ermilov to rationalise
GTK includes. See bug 560678.
2008-10-24 Mario Blättermann <mariobl@svn.gnome.org>
* help/de: Added German translation.
* help/de/figures: Added screenshot.
* help/Makefile.am: Added de to DOC_LINGUAS.
==================== 2.24.0.1 ====================
2008-07-06 Changwoo Ryu <cwryu@debian.org>
* help/ko/ko.po: Updated Korean translation.
2008-05-13 Callum McKenzie <callum@spooky-possum.org>
* Makefile.am (EXTRA_DIST): Remove charpick.png from EXTRA_DIST
now that its been removed. I didn't review that last patch very
well did I.
2008-04-29 Jaap A. Haitsma <jaap@haitsma.org>
reviewed by: Callum McKenzie
* GNOME_CharpickerApplet.server.in.in:
* Makefile.am:
* charpick.c: (about), (charpicker_applet_fill):
Use standard tango icon for charpick. Fixes bug #519765
2008-04-05 Ilkka Tuohela <hile@iki.fi>
* help/fi: Added Finnish translation by Jukka Heikkilä.
2008-03-01 Leonardo Ferreira Fontenelle <leonardof@svn.gnome.org>
* help/pt_BR/pt_BR.po: Updated Brazilian Portuguese translation.
2008-02-27 Gil Forcada <gforcada@gnome.org>
* help/ca/ca.po: Updated Catalan translation.
2008-02-26 Callum McKenzie <callum@spooky-possum.org>
* GNOME_CharpickerApplet.xml: Remove garbage at the end of the
second-to-last line. Spotted by Krzysztof Kotlenga (bug #518625).
2008-02-11 Daniel Nylander <po@danielnylander.se>
* help/sv/sv.po: Updated Swedish translation.
2008-02-10 Kjartan Maraas <kmaraas@gnome.org>
* charpick.schemas.in: add missing full stops in the long description.
2008-02-10 Callum McKenzie <callum@spooky-possum.org>
* charpick.c (charpicker_applet_fill): Add support for transparent
panels. Based on a patch by Florian Mutter based on a bug filed by
Luca Cavalli (see bug #413130).
2008-01-29 Claude Paroz <claude@2xlibre.net>
* help/fr/fr.po: Remove fuzzy from French translation.
2008-01-10 Gil Forcada <gforcada@svn.gnome.org>
* help/ca/ca.po: Added Catalan translation.
* help/ca/figures/*.png: Added Catalan screenshot thanks to Joan Duran.
* help/Makefile.am: Added ca to DOC_LINGUAS.
2008-01-08 Kjartan Maraas <kmaraas@gnome.org>
* help/C/char-palette.xml: Fix reference to button.
Patch from Bob Mauchin. Closes bug #502352 (GHOP)
2007-12-02 Changwoo Ryu <cwryu@debian.org>
* help/ko/*:
* help/Makefile.am: Korean manual migrated to gnome-doc-utils from
the old Sun manual.
2007-07-17 Jaap Haitsma <jaap@haitsma.org>
* GNOME_CharpickerApplet.xml: use gtk-about i.s.o. gnome-stock-about
Fixes bug #456955
* charpick.c: (build_table), (about), (charpicker_applet_fill):
Use g_set_application name such that the application name
gets shown correctly in the about dialog. Convert usage of GtkTooltips
to new tooltips API of GTK 2.12 Fixes bug #457145
2007-03-18 Nickolay V. Shmyrev <nshmyrev@yandex.ru>
* help/ru/ru.po: Added Russian translation by
Sergey Mironov <sergo@bk.ru>
* help/Makefile.am: Added ru to DOC_LINGUAS.
2007-02-17 David Lodge <dave@cirt.net>
* help/en_GB/en_GB.po: Added (British) English translation.
* help/Makefile.am: Added en_GB to DOC_LINGUAS
2006-11-08 Daniel Nylander <po@danielnylander.se>
* help/sv/sv.po: Updated Swedish translation.
2006-10-07 Daniel Nylander <po@danielnylander.se>
* help/sv/sv.po: Updated Swedish translation.
2006-09-03 Daniel Nylander <po@danielnylander.se>
* help/sv/sv.po: Updated Swedish translation.
2006-09-02 Daniel Nylander <po@danielnylander.se>
* help/sv/sv.po: Updated Swedish translation.
* help/sv/figures/*: Updated screenshots.
2006-08-31 Daniel Nylander <po@danielnylander.se>
* help/sv/sv.po: Updated Swedish translation.
2006-08-20 Daniel Nylander <po@danielnylander.se>
* help/sv/sv.po: Updated Swedish translation.
* help/sv/figures/*: Removed old images and added new.
2006-07-23 Christophe Bliard <christophe.bliard@trux.info>
* help/fr/fr.po:
* help/fr/figures/charpick-preferences.png: Updated French
translation.
2006-07-23 Daniel Nylander <po@danielnylander.se>
* help/sv/sv.po: Updated Swedish translation.
* help/sv/legal.xml: Removed obsolete XML file.
2006-06-29 Daniel Nylander <po@danielnylander.se>
* help/sv/sv.po: Added Swedish translation.
2006-03-04 Benoît Dejean <benoit@placenet.org>
* charpick.c: (build_table): Fixed potential overflow.
Fixed C99 code.
Closes #333242.
2006-02-27 Luca Ferretti <elle.uca@libero.it>
* help/it/it.po: Updated Italian translation
2006-02-11 Davyd Madeley <davyd@madeley.id.au>
* charpick.c: small fix in build_table() to correct a division by zero
2006-01-21 Vincent Untz <vuntz@gnome.org>
* help/fr/fr.po: small update
2006-01-06 Vincent Untz <vuntz@gnome.org>
* help/fr/fr.po: update french translation, by Christophe Bliard
<christophe.bliard@trux.info>
2005-12-03 Vincent Untz <vuntz@gnome.org>
* docs/fr/*: add french translation, by Christophe Bliard
<christophe.bliard@trux.info>
* docs/*: give some .cvsignore love
2005-09-28 Ryan Lortie <desrt@desrt.ca>
* help/Makefile.am: add DOC_FIGURES list to get .png's into the
tarball. Closes bug #317476.
2005-09-20 Alessio Frusciante <algol@firenze.linux.it>
* help/it/it.po:
* help/Makefile.am: Added Italian translation by
Luca Ferretti <elle.uca@infinito.it>.
2005-09-10 Evandro Fernandes Giovanini <evandrofg@ig.com.br>
* help/Makefile.am
* help/pt_BR/*: Added Brazilian Portuguese translation from
Pedro de Medeiros <pedro.medeiros@gmail.com>.
2005-08-08 Davyd Madeley <davyd@madeley.id.au>
* charpick.c:
* properties.c: Only show palette selector if there are palettes to
select. Closes #170659. Patch from Felix Riemann <felix@hsgheli.de>.
2005-07-31 Vincent van Adrighem <adrighem@gnome.org>
* help/ChangeLog: removed redundant changelog.
* help/nl/*: Dutch translation updated by Myckel Habets.
2005-07-21 Shaun McCance <shaunm@gnome.org>
* help/C/char-palette.xml:
- Switched to DocBook 4.3, sanified email addresses
2005-07-20 Davyd Madeley <davyd@madeley.id.au>
* help/*: Remove lots of unwanted files. XML files still need
converting to po files.
2005-07-20 Danilo Šegan <danilo@gnome.org>
* help/Makefile.am: Added.
* help/char-palette.omf.in: Added.
* help/C/Makefile.am: Removed.
* help/C/char-palette.xml: Add <abstact role="description">.
2005-07-13 Benoît Dejean <TazForEver@dlfp.org>
* charpick.c: (selection_clear_cb), (toggle_button_toggled_cb),
(key_press_event), (get_menu_pos), (build_table), (about),
(applet_destroy), (get_chartable):
* properties.c: (register_stock_for_edit),
(add_edit_dialog_create):
Big cleanup :
- replaced custom get_utf_string() by g_ucs4_to_utf8(). *_code[] have
to be 0-terminated.
- added many const.
- #if 0 dead code : set_atk_relation()
- removed unused variables.
- added 1 FIXME.
2005-04-04 Davyd Madeley <davyd@madeley.id.au>
* charpick.h: Use gtk.h instead, fixes compile issue. Patch from Ali
Akcaagac <aliakc@web.de>. Closes #171895.
2005-03-20 Kjartan Maraas <kmaraas@gnome.org>
* charpick.h:
* properties.c: Clean up some.
2005-03-07 Shaun McCance <shaunm@gnome.org>
* charpick/help/C/char-palette.xml:
- Fixed duplicate ID
2005-03-07 Davyd Madeley <davyd@madeley.id.au>
* help/C/figures/charpick-preferences.png:
* help/C/char-palette.xml: Update documentation for GNOME 2.10.
2005-02-12 Davyd Madeley <davyd@madeley.id.au>
* charpick.c: Remove authors name from requiring translation.
2005-02-04 Davyd Madeley <davyd@madeley.id.au>
* Makefile.am: Icons are installed from iconsdir, which might not come
of datadir.
2005-01-13 Davyd Madeley <davyd@madeley.id.au>
* charpick.c: Fix 163911. Add ¡ for consistancy and use in Spanish.
2004-10-30 Davyd Madeley <davyd@madeley.id.au>
* Makefile.am:
* charpick.c: Use gucharmap to get character descriptions for Unicode
characters. Set the tooltip to give a description of the character.
Closes bug #129756.
2004-09-28 Vincent Noel <vnoel@cox.net>
* charpick.c (force_no_focus_padding): force the button
not to have any focus padding and let the focus
indication be drawn on the label itself when space
is tight. Taken from a patch to the clock applet in bug 147999.
This is an Evil Hack and should be replaced when the focus
padding can be accessed through gtk+.
2004-09-27 Mark McLoughlin <mark@skynet.ie>
* charpick.png: new icon from Jakub Steiner.
2004-09-06 Shaun McCance <shaunm@gnome.org>
* help/C/char-palette-C.omf:
* help/C/char-palette.xml:
- Updates for 2.8 from Angela Boyle
2004-08-15 Kjartan Maraas <kmaraas@gnome.org>
* Makefile.am: Remove references to screen-exec
* charpick.c: Fix include.
* properties.c: (phelp_cb): Use gnome_help_*.
2004-08-15 Kjartan Maraas <kmaraas@gnome.org>
* charpick.c: (build_table), (about), (help_cb),
(charpicker_applet_fill): s/gtk_signal_connect/g_signal_connect
* charpick.h: ANSI parameter lists.
2004-07-29 Kjartan Maraas <kmaraas@gnome.org>
* charpick.c: (applet_destroy): Merge fix for bug #148498
from stable.
2004-07-22 Glynn Foster <glynn.foster@sun.com>
* help/ja/char-palette-ja.omf,
help/ja/char-palette.xml,
help/ja/figures/charpalette_applet.png,
help/ja/figures/charpalette_chargroup.png,
help/ja/legal.xml, Update with docs from the Sun
team. How I managed to commit mailcheck ones here I'll
never know ;)
* help/ja/figures/charpick_applet.png,
help/ja/figures/charpick_characters.png,
help/ja/figures/charpick_chargroup.png,
help/ja/figures/mailcheck_applet.png: Remove older
figures.
2004-07-21 Mark McLoughlin <mark@skynet.ie>
* help/ja/Makefile.am,
help/ja/mailcheck-ja.omf,
help/ja/mailcheck.xml: remove mailcheck docs and
install the char-palette ones again.
2004-07-08 Vincent Noel <v.r.noel@larc.nasa.gov>
* charpick.c (applet_size_allocate): use the "size-allocate"
signal to get the panel size.
(build_table): Fix how the row number is computed to get the
characters spread out on multiple rows.
2004-06-10 Dennis Smit <ds@nerds-incorporated.org>
* charpick.c (build_table): Set the atk description
for each of the toggle buttons Fixes #128292
Patch by: Arvind Samptur <arvind.samptur@wipro.com>
2004-06-10 Dennis Smit <ds@nerds-incorporated.org>
* charpick.h:
* charpick.c: (charpicker_applet_fill)
The stock icon got registered.
* properties.c: (register_stock_for_edit)
The above function is added to register the stock icon.
"Properties" button is renamed to "Edit" button.
The mnemonic "Pal_ettes" is changed to "_Palettes".
Patch by: Shakti Sen <shakti.sen@wipro.com>
Fixes the bug #128088
2004-06-09 Dennis Smit <ds@nerds-incorporated.org>
* properties.c: HIG fixes for the treeview.
Patch by: Ross Burton <r.burton@180sw.com>
Fixes bug: #144027.
2004-03-17 Glynn Foster <glynn.foster@sun.com>
* help/ja/*: Add ja docs since the original author
didn't get back to me.
2004-03-16 Glynn Foster <glynn.foster@sun.com>
* help/Makefile.am: Add l10n'd docs to the build.
2004-03-15 Glynn Foster <glynn.foster@sun.com>
* help/*: Update docs for de, es, fr, it, ko, sv,
zh_CN, zh_HK and zh_TW.
2004-03-15 Glynn Foster <glynn.foster@sun.com>
* docs/*: Kill off the old sgml based docs.
2004-02-23 Dennis Smit <ds@nerds-incorporated.org>
* charpick.c (about):
Set the screen right when the user requests the about
dialog and it's already there but not on the right
screen.
2004-02-11 Breda McColgan <breda.mccolgan@sun.com>
* help/C/char-palette.xml: Updated for GNOME 2.6.
* help/C/char-palette-C.omf: Updated for GNOME 2.6.
* help/C/l10n.txt: Updated for GNOME 2.6.
2004-02-08 Jason Leach <leach@wam.umd.edu>
* Makefile.am (CLEANFILES): Add .server and .server.in here.
(#132071, Padraig O'Briain)
2004-02-06 Dennis Smit <ds@nerds-incorporated.org>
* charpick.c (chooser_button_clicked):
set the menu to the right screen.
This fixes bug: #133587
2004-02-01 Dennis Smit <ds@nerds-incorporated.org>
* charpick.h: Added an add_edit_dialog and add_edit_entry
entry to _charpick_data.
* properties.c: Renamed run_edit_dialog to add_edit_dialog_create
and changed the function to make use of the privates.
(add_palette): Changed to use the event driven dialogs.
(add_palette_cb): Added function.
(edit_palette): Changed to use the event driven dialogs.
(edit_palette_cb): Added function.
* charpick.c (charpicker_applet_fill): initialize
the add_edit_dialog member to NULL.
Fixes: #133087 and #131889.
2004-01-31 Michael Terry <mterry@fastmail.fm>
* charpick.c: Remove "Add a palette..." popup menu item. Fixes bug
#129757 and #131887
2004-01-31 Archana Shah <archana.shah@wipro.com>
* charpick.h: Added a field for about dialog in structure
charpick_data.
* charpick.c: (charpick_applet_fill): Initialized about_dialog
with NULL.
(about): Changed to use about_dialog member field instead of
static variable.
(applet_destroy): Destroy about_dialog when the applet is removed.
Fixes bug #132291
2004-01-18 Jason Leach <leach@wam.umd.edu>
* Makefile.am (install-data-local): builddir != srcdir fix.
2003-12-22 Muktha <muktha.narayan@wipro.com>
* charpick.c: Fix critical warnings with accessibility on.
Fixes bug #129059.
2003-11-09 Kevin Vandersloot
* charpick.c, properties.c: Fix crash when removing all the palettes. Also fix
possible crash on startup. Fixes bug #124349. Most of the patch from
Shakti Sen.
2003-10-26 Kjartan Maraas <kmaraas@gnome.org>
* properties.c: (run_edit_dialog): Fix a typo.
Found by Ole Laursen. Closes bug #119624.
2003-10-26 Kjartan Maraas <kmaraas@gnome.org>
* charpick.c: Remove unnecessary include. Merge
from stable.
Mon Sep 15 15:20:21 2003 George Lebl <jirka@5z.com>
* charpick.c: when started in lockdown mode, hide the preferences
item
2003-09-03 Kevin Vandersloot
* charpick.c: fix build on Solaris. Patch from Hidetoshi Tajima. Fixes
bug #121309
2003-08-24 Irene Ryan <irene.ryan@sun.com>
* help/C/char-palette.xml, char-palette-C.omf: updates to Help for
GNOME 2.4 release
* help/C/l10n.txt: updated info for L10N teams
* help/C/figures/charpalette_applet.png: new screenshot
2003-07-23 Kevin Vandersloot
* schemas.in: Clean up strings here
2003-07-21 Dennis Cranston <dennis_cranston at yahoo com>
* properties.c: HIGify widget padding between the vbox and
action area of the dialogs. Thanks to <chris@gnome-de.org>
Christian - Manny Calavera - Neumair.
Thu Jul 03 17:08:30 2003 George Lebl <jirka@5z.com>
* charpick.[ch], properties.c: key-writability fixes. If chartable
is not writable don't allow editting it/adding to it. If the
current_list is not writable still allow switching between pallets,
just don't save the value for next loadup (that seems to make more
sense then not allowing switching at all). Also fix crash when
you change the current pallete and then log out. The code is
a nightmare of pointer shuffling and memory leaks.
* charpick.schemas.in: fix owner of chartable, fix typo
2003-06-16 Kevin Vandersloot
* properties.c: add some accesibility stuff. Also set the sensitivity of the edit/remove buttons
according to the selection
2003-06-05 Kevin Vandersloot
* charpick.c: make the relief none on the add palettes button so it doesn't stick
out. Add an "add paellte" menu item and popup the dialog if pressed to the menu.
* charpick.h, properties: make the edit_palette function non static.
2003-06-01 Kevin Vandersloot
* charpick.c: pack the buttons tighter on larger panels. Fixes bug #95438. Also
make the applet expand for Fitt's law.
2003-05-30 Ray Strode <halfline@hawaii.rr.com>
* charpick.c: (charpicker_applet_fill): Check panel
orientation before calling build_table (Bug #113785).
2003-05-07 Dennis Cranston <dennis_cranston at yahoo com>
* properties.c: HIGify the action area of the various preference
dialogs.
2003-04-25 Dennis Cranston <dennis_cranston at yahoo com>
* properties.c: More HIGifcation of the preferences, properties,
and add dialogs.
2003-04-06 Kevin Vandersloot <kfv101@psu.edu>
* help/C/Makefile.am: get the figures correct
2003-04-03 Kevin Vandersloot <kfv101@psu.edu>
* charpick.c: Connect to the clicked signal to fix the stuck button problem. Fix
the problem with two tooltips showing up on the palettes button. Comment out
the unused static gchar* variables.
2003-03-25 Kevin Vandersloot <kfv101@psu.edu>
* charpick.c, properties.c: Unicodeify the applet. Fixes bugs #93682,
#104324, #32769
* properties.c, charpick.c: remove frame to save space. Bind to focus event for
prefs dialog to prevent unnecessary updates
2003-03-07 Mark McLoughlin <mark@skynet.ie>
* charpick.c: (help_cb):
* properties.c: (phelp_cb): update for screen-exec changes.
2003-03-02 Takeshi AIHANA <aihana@gnome.gr.jp>
* help/ja/*.xml, help/ja/*.omf, help/ja/figures/*.png, help/ja/Makefile.am:
added new documents for GNOME 2.2 tranlated by
KAMAGASAKO Masatoshi <emerald@gnome.gr.jp>.
2003-01-21 Arvind Samptur <arvind.samptur@wipro.com>
* charpick.c (applet_destroy): destroy
the preferences dialog as well.
2002-12-14 Fernando Herrera <fherrera@onirica.com>
* GNOME_CharpickerApplet.server.in.in: added bugzilla attributtes
2002-10-09 Pat Costello <patrick.costello@sun.com>
* help/C/char-palette.xml
* Added text press A key.
* Replaced "spacebar" with D key.
* Removed 4 refs to GNOME in GNOME Character Map.
* Changed final step in procedure to Click Close.
2002-09-19 Mark McLoughlin <mark@skynet.ie>
* charpick.c: (about), (help_cb):
* properties.c: (phelp_cb), (show_preferences_dialog):
kill the HAVE_GTK_MULTIHEAD conditionals - we require
gtk HEAD now.
2002-08-14 Mark McLoughlin <mark@skynet.ie>
* Makefile.am: link against libscreen-exec.la.
* charpick.c: (help_cb):
* properties.c: (phelp_cb): use the mulitscreen
gnome_help variants.
2002-07-18 Mark McLoughlin <mark@skynet.ie>
* Makefile.am: install applet into libexec.
* GNOME_CharpickerApplet.server.in: move .server.in to
.server.in.in to allow for libexec dir substitution.
2002-07-11 Mark McLoughlin <mark@skynet.ie>
* charpick.c: (about): realise dialogs on
the same screen as the applet.
* properties.c: (show_preferences_dialog): ditto.
2002-07-10 Mark McLoughlin <mark@skynet.ie>
* charpick.c: use unsafe verb callbacks to
reduce the number of casts.
(about): use gtk_window_present.
* properties.c: (show_preferences_dialog):
ditto.
2002-06-03 Arvind Samptur <arvind.samptur@wipro.com>
* charpick.c: changed gtk_main_do_event
to gtk_propagate_event in button_press_hack
for avoiding crash due to gtk event queue corruption. Fixes
#83186.
2002-05-31 Kevin Vandersloot <kfv101@psu.edu>
* Makefile.am: Fix GNOMELOCALEDIR to point to correct
location. Fixes #83621.
2002-05-26 John Fleck <jfleck@inkstain.net>
* help/C/char-palette.xml
s/Properties/Preferences/ to match UI change
2002-05-23 Mark McLoughlin <mark@skynet.ie>
* charpick.c: (button_press_hack), (build_table): use
gtk_main_do_event to do button press hack instead of
invoking the PanelApplet handler directly.
2002-05-20 Kevin Vandersloot <kfv101@psu.edu>
* charpick.c: set window icon
* properties.c: kill warning
2002-05-13 Satyajit Kanungo <satyajit.kanungo@wipro.com>
*. properties.c Added a "help" button to the preference dialog box.
2002-05-10 Deepa Natarajan <deepa.natarajan@wipro.com>
* .xml: added mnemonics for the popup menu
2002-04-28 Satyajit Kanungo <satyajit.kanungo>
* charpick.c , properties.c used new help api
gnome_help_display() to enable help.
2002-04-27 Dennis Cranston <dennis_cranston@yahoo.com>
* charpick.c: "About..." dialog fixes -- chage the name to
"Character Palette" to match the "Add to panel" menu. Also,
use charpick.png for the logo and window icon.
2002-04-20 Abel Cheung <maddog@linux.org.hk>
* charpick.c: Fixed my own typo.
2002-04-20 Abel Cheung <maddog@linux.org.hk>
* help/.cvsignore, help/C/.cvsignore: New files.
* charpick.c: Added translator_credit and documenters placeholders.
2002-04-16 Kevin Vandersloot <kfv101@psu.edu>
* charpick.c: get rid of event box completely. Fixes
ugly toggle button behavior and gets keynav working.
Finishes bug #75729
2002-03-31 Deepa Natarajan <deepa.natarajan@wipro.com>
* charpick.c: set "d" for the default character list,
so that we dont override the default bahavior of spacebar
* properties.c: return to the default list with <d>
2002-04-01 Kevin Vandersloot <kfv101@psu.edu>
* .xml: add ellipses to preferences option
2002-04-01 Deepa Natarajan <deepa.natarajan@wipro.com>
* GNOME_CharpickerApplet.xml: changed Properties->Preferences
* charpick.c: change verb Properties->Preferences
2002-03-26 Deepa Natarajan <deepa.natarajan@wipro.com>
* properties.c: set close button as the default and
set mnemonic for the label
2002-03-24 Kevin Vandersloot <kfv101@psu.edu>
* charpick.c: don't always return TRUE for keypresses. That's
really bad for keyboard users - bug #75729
2002-03-18 Aruna P R <aruna.pou@wipro.com>
* properties.c: removed the GnomePropertyBox and some depreceated calls
2002-03-17 Trevor Curtis <tcurtis@somaradio.ca>
* docs/C/charpick.xml: initial version of xml'ified doc
* docs/C/legal.xml: License info
2002-03-08 Deepa Natarajan <deepa.natarajan@wipro.com>
* charpick.c: added tooltip and accessible name for the applet
* charpick.h: declared the function set_atk_name_description
* properties.c: set atk relation between label and entry box
2002-03-03 Bastien Nocera <hadess@hadess.net>
* Makefile.am: don't do gconf fu if DESTDIR is set
2002-03-02 John Fleck <jfleck@inkstain.net>
* charpick/Makefile.am
added
* help/Makefile.am
* help/C/Makefile.am
* help/C/char-palette-C.omf
* help/C/char-palette.xml
* help/C/legal.xml
* help/C/figures/charpick_applet.png
* help/C/figures/charpick_characters.png
* figures/charpick_chargroup.png
adding docs from the helpful team at Sun
2002-02-27 Kevin Vandersloot <kfv101@psu.edu>
* properties.c: remove strange behavior about erasing all
the characters in the prefs dialog. I wasn't thinking
correctly. Also strip any whitespace
2002-02-25 Kevin Vandersloot <kfv101@psu.edu>
* charpick.c: hook up to the applet destroy signal and
free any allocated data
2002-02-22 Mark McLoughlin <mark@skynet.ie>
* charpick_applet.desktop.in:
* charpick_applet.gnorba: remove these files
2002-02-19 Kevin Vandersloot <kfv101@psu.edu>
* charpick.c: put character in CLIPBOARD as well as
PRIMARY so users can paste the character. Fixes
bug #51255
2002-02-17 Kevin Vandersloot <kfv101@psu.edu>
* charpick.c: convert string returned from gconf from utf8
2002-02-17 Kevin Vandersloot <kfv101@psu.edu>
* charpick.c, properties.c: fix conversion to utf8. Thanks Owen :)
* charpick.c: bind to key_press for the applet as that seems to work
better
2002-02-17 Kevin Vandersloot <kfv101@psu.edu>
* charpick.c: don't use the cdplayer ui file ;)
2002-02-16 Cody Russell <bratsche@gnome.org>
* charpick.c: Moved inline BonoboUI XML data to external file
to be loaded.
* GNOME_CharpickerApplet.xml: File to which the above noted
BonoboUI XML data was moved.
2002-02-11 Kjartan Maraas <kmaraas@gnome.org>
* GNOME_MultiLoadApplet_Factory.server.in: Mark strings for l10n.
* *.[ch]: Fix #include <config.h>
2002-02-11 Mark McLoughlin <mark@skynet.ie>
* GNOME_CharpickerApplet.server.in: move to Vertigo namespace.
* charpick.c: update for factory macro change.
2002-02-02 Kevin Vandersloot <kfv101@psu.edu>
* charpick.c: greatly simplify to creation of toggle
buttons.
* properties.c: more simplification. Get prefs saving working.
* charpick.schemas: remove all the sizing related prefs
since they won't be options anymore
2002-01-24 Kevin Vandersloot <kfv101@psu.edu>
* properties.c: make dialog conform to UI standards. Not
really hooked up yet though
2002-01-19 Seth Nickell <snickell@stanford.edu>
* GNOME_CharpickerApplet.server.in:
Rename "Character Palette"
2002-01-17 Kevin Vandersloot <kfv101@psu.edu>
* Makefile.am: remove the CFLAGS line since that can cause errors
on some peoples setups (pointed out by Mikael Hallendal). Also
install the schemas file
* properties.c: use gconf for preferences
2002-01-16 Kevin Vandersloot <kfv101@psu.edu>
* charpick.c: convert strings to utf8 so they get displayed
properly. Also fix the crash on selection clear
2002-01-15 Kevin Vandersloot <kfv101@psu.edu>
* charpick.c: make this applet work by removing global
variables.
* properties.c: comment out untill ported to GNOME 2.0
2002-01-10 Kevin Vandersloot <kfv101@psu.edu>
* configure.in: clean up
* charpick.c: small fixes to make it compile
2001-12-17 Mark McLoughlin <mark@skynet.ie>
* charpick.c: (charpicker_applet_new), (charpicker_applet_factory):
update for panel-applet api changes.
2001-12-09 Kevin Vandersloot <kfv101@psu.edu>
* Initial port to GNOME 2.0. Add the .server file, port to
new api, remove .gnorba and .desktop files from Makefile.am.
Need to convert chars to utf8 as pango complains and
properties don't work. Runs but doesn't do much.
2001-09-12 Kjartan Maraas <kmaraas@gnome.org>
* charpick_applet.desktop.in: Uppercase the first letter in Comment.
Mon May 08 19:15:32 2000 George Lebl <jirka@5z.com>
* charpick.c, properties.c: fix warnings
2000-04-25 Fatih Demir <kabalak@gmx.net>
* charpick_applet.desktop : Added [tr] section .
2000-04-15 Eric Baudais <baudais@osktate.edu>
* docs/C/charpick-applet.sgml: Added a bit about trademarks.
2000-04-13 Alexandre Owen Muniz <munizao@xprt.net>
* properties.c: Some code was not properly moved to property_show()
from size_frame_create() leading to incorrect behavior when opening
properties when it was already open.
2000-04-13 Alexandre Owen Muniz <munizao@xprt.net>
* charpick.c, properties.c: changed the default default list, and
added a label to the default list property tab to explain it. This
is done in light of bug 8260.
2000-04-11 Dan Mueth <d-mueth@uchicago.edu>
* docs/C/charpick-applet.sgml: Fixed FSF's address.
2000-04-08 Dan Mueth <d-mueth@uchicago.edu>
* docs/C/charpick-applet.sgml: Moved into new template.
* docs/C/charpick.sgml: Moved into new template.
* docs/C/charpick.sgml: Fixed description of Default characters
2000-04-06 Dan Mueth <d-mueth@uchicago.edu>
* properties.c: Added phelp_cb to call up help docs.
* charpick.c: Added help_cb to call up help docs.
* docs/*: Added directories, Makefiles, sgml files, and
screenshots.
2000-04-02 Alexandre Owen Muniz <munizao@xprt.net>
* charpick.c: changed my email address.
2000-02-23 Peter Hawkins <peterhawkins@ozemail.com.au>
* charpick.c: Made about box non-modal.
2000-02-04 Alexandre Owen Muniz <munizao@cyberhighway.net>
* charpick.c, properties.c: added the ability to change the default
list in properties, and to return to the default list with <space>.
* charpick.h: celebrated by incrementing the version number.
Sat Jan 29 14:56:09 2000 George Lebl <jirka@5z.com>
* charpick.c,properties.c: fixup some property saving/loading problems
Fri Jan 28 18:43:53 2000 George Lebl <jirka@5z.com>
* charpick.[ch],properties.c: fix a segfault
Fri Jan 28 18:36:35 2000 George Lebl <jirka@5z.com>
* charpick.[ch],properties.c: make a default mode that follows the
size and orientation of the panel and takes only the minimum number
of cells to be displayed.
Sat Jan 29 00:22:12 2000 Tom Gilbert <gilbertt@tomgilbert.freeserve.co.uk>
* On an anti-warning hunt using CFLAGS="-O6 -g -W -Wall
-Wmissing-prototypes -Wmissing-declarations". Don't mind me.
Fri Aug 20 18:02:51 1999 George Lebl <jirka@5z.com>
* charpick.[ch],properties.c: fixed segfaults when more then 9
buttons, and fixed some warnings
1999-08-20 Alexandre Owen Muniz <munizao@cyberhighway.net>
* charpick.h: defined CHARPICK_VERSION, incrementing the version number
to 0.04 for the occasion.
* charpick.c: removed some unused variables, changed the instances of
VERSION, (which references gnome-applets module version,) to
CHARPICK_VERSION. added a frame to the applet, which corrects the
buglet where it was impossible to see the applet borders on a blank
background panel.
1999-08-17 Alexandre Owen Muniz <munizao@cyberhighway.net>
* Makefile.am, charpick.png, charpick_applet.desktop: Added icon.
1999-08-12 Alexandre Owen Muniz <munizao@cyberhighway.net>
* charpick.c: added lists for all remaining ISO-8859-1 characters
that were not previously available.
1999-07-11 Jacob Berkman <jberkman@andrew.cmu.edu>
* charpick.c (main): ANSI C patch provided by Drazen Kacar <dave@srce.hr>
in GNOME bug report #861
(about): use VERSION in about box
1999-05-07 Alexandre Owen Muniz <munizao@cyberhighway.net>
* charpick.c: fixed the bug where buttons created after changing the
properties did not pass button 2 and 3 clicks to the panel. Also fixed
a bug where spurious data could be saved for the properties, and added
sanity checking to property_load().
1999-04-30 Alexandre Owen Muniz <munizao@cyberhighway.net>
* Makefile.am (charpick_applet_SOURCES): added charpick.h, properties.c
* charpick.c: changed order of acute and grave accents to match
French alphabetical order. Added character lists for capital characters
and some non-alphabet-related characters. Changed default size and
arrangement of buttons so that capital characters fit, and the applet
does not violate the 48 pixel limit so egregiously. Split
build_table() out of main() so that the table can be rebuilt after
properties are changed. Fixed a number of spots in build_table() where
"rows" and "cols: had been interchanged, which worked when rows==cols,
but not now. Incremented version in about box to 0.03.
* properties.c: adapted this file from modemlights/properties.c.
It adds a properties dialog that allows one to change the size and
arrangement of buttons, and session management to store and load that
info. (some of this is in charpick.c as well.) The big remaining bug
is that the context menu does not appear when right-clicking a button
after rebuilding the table when changing the properties.
* charpick.h: Split header like stuff off of charpick.c.
1998-12-16 Federico Mena Quintero <federico@nuclecu.unam.mx>
* Makefile.am (gnorba_DATA): Remove a spurious .gnorba file.
1998-12-15 Federico Mena Quintero <federico@nuclecu.unam.mx>
* Makefile.am (EXTRA_DIST): Added charpick_applet.gnorba.
Sun Oct 18 19:11:03 1998 Owen Taylor <otaylor@gtk.org>
* charpick.c: Match GTK+ selection handling changes.
1998-09-24 Nuno Ferreira <nmrf@rnl.ist.utl.pt>
* .cvsignore: Added this file.
1998-08-24 Alexandre Muniz <munizao@cyberhighway.net>
* charpick.c: New applet for picking accented characters.
|