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
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
|
2008-11-07 Mario Blättermann <mariobl@svn.gnome.org>
* docs/Makefile.am: Added de to DOC_LINGUAS
* docs/de/de.po: Added German translation
* docs/de/figures/*: Added screenshots
==================== 2.24.1 ======================
2008-09-26 Callum McKenzie <callum@spooky-possum.org>
* stickynotes.ui:
* stickynotes.glade: Set the page_size to 0 to work around recent
gtk sensitivity.
==================== 2.24.0.1 ====================
2008-08-20 Philipp Kerling <k.philipp@gmail.com>
* Makefile.am: Change mistyped "(DESTDIR)" to "$(DESTDIR)". Partially
fixes bug #547647.
2008-06-29 Gil Forcada <gforcada@gnome.org>
* docs/ca/ca.po: Minor fixes to Catalan translation.
2008-05-09 Jonh Wendell <jwendell@gnome.org>
* docs/Makefile.am,
* docs/pt_BR/: Brazilian Portuguese translation by Amadeu Barbosa.
2008-04-22 Ilkka Tuohela <hile@iki.fi>
* docs/Makefile.am: Added Finnish translation by Jukka Heikkilä.
* docs/fi: Added fi to DOC_LINGUAS
2008-03-16 Callum McKenzie <callum@spooky-possum.org>
* stickynotes/stickynotes.glade
* stickynotes/stickynotes.ui
* stickynotes/stickynotes_callbacks.c
* stickynotes/stickynotes.c
* stickynotes/stickynotes_applet_callbacks.c
* stickynotes/stickynotes_callbacks.h
* stickynotes/stickynotes_applet.c
* stickynotes/stickynotes.h
* stickynotes/Makefile.am
* stickynotes/stickynotes_applet.h: Convert from glade to
gtk-builder. Patch from Jaap Haitsma (bug #521082).
2008-03-12 Callum McKenzie <callum@spooky-possum.org>
* stickynotes_applet_callbacks.c (menu_about_cb): Use the correct
icon in the about dialog. Patch from Jaap Haitsma (Bug #521087).
2008-02-27 Nickolay V. Shmyrev <nshmyrev@yandex.ru>
* docs/Makefile.am:
* docs/ru/ru.po: Added Russian translation by
Yuri Myasoedov <omerta13@yandex.ru>
2008-02-07 Kjartan Maraas <kmaraas@gnome.org>
* stickynotes.schemas.in: Add two missing full stops.
* stickynotes_applet_callbacks.c: (desktop_window_event_filter):
Add missing return value.
2008-02-06 Callum McKenzie <callum@spooky-possum.org>
* stickynotes_applet.c (stickynotes_applet_update_icon): Patch
from Brian Cameron to avoid a crash on really small panels. Bug
#513536.
2008-01-17 Gil Forcada <gforcada@gnome.org>
* docs/ca/ca.po: Added Catalan translation.
2008-01-08 Kjartan Maraas <kmaraas@gnome.org>
* stickynotes.glade: Remove padding spaces and use
GtkAlignment to align text labels. Reported by Christian
Rose. Patch from Andrew Burton. Closes bug #167209.
2007-12-02 Changwoo Ryu <cwryu@debian.org>
* docs/Makefile.am: Added ko to DOC_LINGUAS.
* ko/ko.po: gnome-doc-utils migration.
* ko/*.xml: Removed old XMLs.
* ko/figures/*.png: Removed old images.
2007-11-26 Kosras Papadimas <pkst@gnome.org>
* docs/el/el.po: Added Greek translation by Dimitrios Typaldos <dtfedora@yahoo.com>.
* docs/Makefile.am: Added el to DOC_LINGUAS.
2007-07-17 Jaap Haitsma <jaap@haitsma.org>
* GNOME_StickyNotesApplet.xml: Use gtk-about i.s.o. gnome-stock-about
Fixes bug #456955
* stickynotes.c: (stickynote_set_locked):
* stickynotes_applet.c: (stickynotes_applet_init),
(stickynotes_applet_new), (stickynotes_applet_update_tooltips):
* stickynotes_applet.h:
* stickynotes_applet_callbacks.c: (applet_destroy_cb),
(menu_about_cb):
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-07-14 Callum McKenzie <callum@spooky-possum.org>
* pixmaps/Makefile.am (install-data-local): Use = instead of ==
for comparisons to make the scripts work on BSD. See bug #456701.
2007-02-17 David Lodge <dave@cirt.net>
* docs/en_GB/en_GB.po: Added (British) English translation.
* docs/Makefile.am: Added en_GB to DOC_LINGUAS
2007-02-10 AP Singh Alam <aalam@users.sf.net>
* docs/pa/pa.po: Punjabi Translation is added
* docs/Makefile.am: pa is added to DOC_LINGUAS
2007-01-30 Kjartan Maraas <kmaraas@gnome.org>
* stickynotes.c: Add missing include to silence warning.
2006-11-16 Tom Tromey <tromey@redhat.com>
Bug #340769:
* stickynotes.schemas.in: Removed autosave_time.
* stickynotes_applet_callbacks.h (applet_save_cb): Removed.
* stickynotes_applet_callbacks.c (applet_save_cb): Removed.
* stickynotes.c (timeout_happened): New function.
(buffer_changed): Likewise.
(stickynote_new_aux): Attach to 'changed' signal on text buffer.
* stickynotes_applet.c (stickynotes_applet_init): Initialize new
field. Don't install timeout.
* stickynotes_applet.h (StickyNotes): Added 'last_timeout_data'
field.
2006-11-15 Kjartan Maraas <kmaraas@gnome.org>
* docs/C/stickynotes_applet.xml: Fix build.
* stickynotes_applet.c: (stickynotes_applet_update_prefs):
Don't first check if font_str is null and then g_free() it
on the next line over and over.
2006-09-21 Matthias Clasen <mclasen@redhat.com>
Don't install a 10Hz timer to poke at the X event queue.
Instead use an event filter. (#355223)
* stickynotes/stickynotes_applet.c (stickynotes_applet_init):
Install the event filter instead of the timeout.
* stickynotes/stickynotes_applet_callbacks.c
(applet_check_click_on_desktop_cb): Removed
(desktop_window_event_filter): The event filter.
(install_check_click_on_desktop): Function to install the
event filter.
* stickynotes/stickynotes_applet_callbacks.h: Remove
applet_check_click_on_desktop_cb here too.
2006-09-09 Francisco Javier F. Serrador <serrador@openshine.com>
* docs/es/es.po: Updated Spanish translation.
2006-09-05 Davyd Madeley <davyd@madeley.id.au>
* Makefile.am:
- fix icon path
* stickynotes_applet.c:
- catch a possible infinite loop that happens when your schemas aren't
correctly installed.
2006-08-28 Christophe Bliard <christophe.bliard@trux.info>
* docs/fr/fr.po: Updated French translation
2006-08-26 Joachim Noreiko <jnoreiko@yahoo.com>
* docs/C/stickynotes_applet.xml:
removing modeline (messes up Nautilus's type detection)
updated section on hiding: fixes #166421
add mention of double-click to add a note: fixes #311151
correct 'right-click' for adding a note: fixes #324045
2006-07-25 Christophe Bliard <christophe.bliard@trux.info>
* docs/fr/fr.po: Small update of French translation
* docs/fr/figures/*.png: Update of figures
2006-07-23 Daniel Nylander <po@danielnylander.se>
* docs/sv/sv.po: Updated Swedish translation.
* docs/sv/legal.xml: Removed obsolete file.
2006-07-23 Davyd Madeley <davyd@madeley.id.au>
* stickynotes.c:
- initialize the color buttons in the preference dialog of a note to
the default colors. Patch from Kevin Bauder
<kevin.bauder@gmail.com>. Closes #327308.
* stickynotes_callbacks.c:
- fix a typo in setting up the font colour string. Patch from Kevin
Bauder. Closes #316456.
2006-07-02 Kjartan Maraas <kmaraas@gnome.org>
* stickynotes.c: (stickynotes_save):
* stickynotes_applet.c: (stickynotes_applet_update_menus):
Fix bad use of GList. Patch by Paolo Borelli. Closes
bug #335375.
2006-06-29 Daniel Nylander <po@danielnylander.se>
* docs/sv/sv.po: Added Swedish translation.
2006-02-06 Davyd Madeley <davyd@madeley.id.au>
* stickynotes.c: stickynote_set_font: replace g_free with
pango_font_description_free. Fixes an invalid free() - closes
#329783.
2006-01-31 Davyd Madeley <davyd@madeley.id.au>
* stickynotes.c: gcc 2.95 fixes - closes #328256
Patch from Jens Granseuer <jensgr@gmx.net>.
2006-01-30 Davyd Madeley <davyd@madeley.id.au>
* stickynotes_applet.c:
* stickynotes_applet.h:
* stickynotes_applet_callbacks.c: remove dead code that caused a
critical warning - closes #327835.
2006-01-28 Francisco Javier F. Serrador <serrador@cvs.gnome.org>
* docs/es/es.po: Updated spanish translation.
2006-01-21 Vincent Untz <vuntz@gnome.org>
* docs/fr/fr.po: small update
2006-01-15 Davyd Madeley <davyd@madeley.id.au>
* GNOME_StickyNotesApplet.xml:
* stickynotes_applet.c:
* stickynotes_applet_callbacks.c:
* stickynotes_applet_callbacks.h: add Hide Notes to the menu. Patch
from Jaap A. Haitsma <jaap@haitsma.org>. Closes #310246.
2006-01-07 Vincent Untz <vuntz@gnome.org>
* docs/Makefile.am:
* docs/fr/*: add french translation by Christophe Bliard
<christophe.bliard@trux.info>
* docs/*: .cvsignore love
2005-01-07 Davyd Madeley <davyd@madeley.id.au>
* stickynotes.c: allow stickynotes to remember their position and size
correctly. Fixes #316305. Patch from André Martins
<almar@mega.ist.utl.pt>.
2005-12-22 Davyd Madeley <davyd@madeley.id.au>
* stickynotes.c:
- fix for #323929, ensures default titles are UTF-8'ed. Based on a
patch from Ryuichi Arafune.
2005-11-15 Davyd Madeley <davyd@madeley.id.au>
* stickynotes_applet_callbacks.c: Patch for #310370 from
Jaap A. Haitsma <jaap@haitsma.org>.
* stickynotes.c:
* stickynotes_applet.c:
* stickynotes_applet_callbacks.[ch]: cleanups from Kjartan Maraas.
2005-09-28 Ryan Lortie <desrt@desrt.ca>
* docs/Makefile.am: add DOC_FIGURES list to get .png's into the
tarball. Closes bug #317476.
2005-09-01 Davyd Madeley <davyd@madeley.id.au>
* docs/C/stickynotes_applet.xml:
* docs/C/figures/stickynote-left-menu.png:
* docs/C/figures/stickynote-right-menu-lock.png:
* docs/C/figures/stickynote-right-menu-new.png:
* docs/C/figures/stickynote-right-menu.png:
* docs/C/figures/stickynotes_applet.png: documentation updated for
sticky notes
2005-08-20 Davyd Madeley <davyd@madeley.id.au>
* stickynotes.c: Fix gcc 4.0 warnings. Patch from Jaap A. Haitsma
<jaap@haitsma.org>.
2005-08-11 Sebastien Bacher <seb128@debian.org>
* stickynotes.c: (stickynote_new):
hide the property dialog instead of closing it (Closes: #310618).
2005-07-20 Davyd Madeley <davyd@madeley.id.au>
* docs/Makefile.am:
* docs/stickynotes_applet.omf.in:
* docs/C/stickynotes_applet.xml: gnome-doc-utilise
* docs/: remove unwanted gumpf
2005-07-13 Olav Vitters <olav@bkor.dhs.org>
* docs/C/stickynotes_applet.xml:
* docs/uk/stickynotes_applet.xml:
Correct duplicate XML id and change one instance of
stickynotes-using-left-fig to stickynotes-using-right-fig. Also
correct the description. Patch from Jan de Groot <jan@jgc.homeip.net>.
Reported by <thacker@math.cornell.edu>. Closes #171728.
2005-07-13 Davyd Madeley <davyd@madeley.id.au>
* GNOME_StickyNotesApplet.xml:
* stickynotes.c:
* stickynotes.schemas.in:
* stickynotes_applet.c:
* stickynotes_applet.h:
* stickynotes_applet_callbacks.c:
* stickynotes_applet_callbacks.h: stickynotes features from
Jaap A. Haitsma <jaap@haitsma.org>. Closes #308701.
2005-07-01 Davyd Madeley <davyd@madeley.id.au>
* stickynotes_applet.c: use GtkIconTheme instead of GnomeIconTheme.
Patch by Michael Terry <mike@mterry.name>. Closes #170198.
2005-03-20 Kjartan Maraas <kmaraas@gnome.org>
* stickynotes.c:
* stickynotes_applet.c:
* stickynotes_applet.h:
* stickynotes_applet_callbacks.c:
* util.c:
* util.h: Cleanups
2005-03-07 Davyd Madeley <davyd@madeley.id.au>
* docs/C/figures/*.png: many new images
* docs/C/stickynotes_applet.xml: Update documentation for GNOME 2.10.
2005-02-27 Ryan Lortie <desrt@desrt.ca>
* stickynotes_applet_callbacks.c: Don't leak style while handling
the change_background signal. Fix adapted from Vincent Untz's fixes
to various panel applets.
2005-02-24 Kjartan Maraas <kmaraas@gnome.org>
* stickynotes.c: (stickynotes_save): Don't mix code and decl.
2005-01-11 Davyd Madeley <davyd@madeley.id.au>
* stickynotes_callbacks.c: Don't free something we're not meant to.
Why hadn't this crashed?
2005-01-11 Davyd Madeley <davyd@madeley.id.au>
* stickynotes_applet.c: Use DATADIR in
panel_applet_setup_menu_from_file(). Useful if you're running out of
prefix. Other applets should have this fix.
2005-01-10 Davyd Madeley <davyd@madeley.id.au>
* stickynotes.c: Fix stickynotes in RTL environments.
2005-01-10 Davyd Madeley <davyd@madeley.id.au>
* utils.c: Fix tiny error calling wrong function. Why hasn't this
broken?
2005-01-09 Davyd Madeley <davyd@madeley.id.au>
* stickynotes_applet_callbacks.c: Use GtkAboutDialog.
2005-01-09 Davyd Madeley <davyd@madeley.id.au>
* stickynotes.[ch]: Waste less memory due to Glade. Patch from
Paolo Borelli <pborelli@katamail.com>.
* stickynotes.schemas.in: Oops, lint the XML before you commit.
2005-01-09 Davyd Madeley <davyd@madeley.id.au>
* stickynotes.[ch]:
* stickynotes_callbacks.c:
* stickynotes_applet.[ch]:
* stickynotes_applet_callbacks.c:
* stickynotes.glade:
* stickynotes.schemas.in: Add facility to set font colour for notes in
the same way you can set note color. Fixes part of #150493.
2005-01-05 Davyd Madeley <davyd@madeley.id.au>
* stickynotes.[ch]:
* stickynotes_callbacks.c:
* stickynotes_applet.c:
* stickynotes_applet_callbacks.c: Revamp of stickynotes, stage 3.
Stuff that has changed (overall):
- stickynotes will now stay on workspace they are meant to when you
add new notes, or toggle visibility of the notes.
- left clicking on the applet offers a small two option menu:
new/toggle visibility
- above menu items have been removed from right-click menu
- stickynotes float on top (this is important as they vanish from
the alt-tab bar with new metacity, apparently).
Things still to implement:
- Getting windows to return to their original workspace after you
turn off sticky mode
- Testing with new metacity
- Have stickynotes implement it's own window layout code so that
notes are well positioned regardless of other windows on the
screen
* util.c: Uncommented out xstuff_change_workspace() since the libwnck
workspace changing code can be unreliable if it hasn't updated the
window list yet.
* GNOME_StickyNotesApplet.xml: Remove extra separator, oops...
2005-01-05 Davyd Madeley <davyd@madeley.id.au>
* GNOME_StickyNotesApplet.xml:
* stickynotes.c:
* stickynotes_callbacks.c:
* stickynotes.glade:
* stickynotes.schemas.in:
* stickynotes_applet.[ch]:
* stickynotes_applet_callbacks.c: Revamp of stickynotes, stage 2.
Stickynotes can now deal with workspaces as well as many other
things. Currently usable but many niggles left to sort out.
* util.[ch]: Some Xstuff to do what we're doing with libwnck instead
here but ifdefed out, so that I don't lose them.
2005-01-04 Elijah Newren <newren@gmail.com>
* stickynotes.c (stickynote_load): create all new windows before
trying to move them to the appropriate workspace (do this because
wnck_screen_force_update is expensive, and it'll only work once
unless we were to manually process pending events). Fixes a bug
where wnck_window_get would return NULL for windows beyond the
first and thus prevent us from moving those windows to the right
workspace.
2005-01-04 Davyd Madeley <davyd@madeley.id.au>
* stickynotes.schemas.in: Changing default note colour to #ECF833. As
determined to be optimal by the Harrison-Stetson method. Closes bug
#156218.
2005-01-03 Davyd Madeley <davyd@madeley.id.au>
* stickynotes.c:
* stickynotes.glade:
* stickynotes.gladep:
* stickynotes_applet.c:
* stickynotes_applet_callbacks.c:
* stickynotes_applet_callbacks.h:
* stickynotes_callbacks.c:
* stickynotes_callbacks.h: Drag stickynotes out of the dark ages.
Remove old lignomeui widgets, replace with gtk_{color,font}_button.
Rearrange dialogs. Use application font for title, not note font.
2004-11-26 Paolo Borelli <pborelli@katamail.com>
* stickynotes.c: do not leak the date title.
2004-11-09 Davyd Madeley <davyd@madeley.id.au>
* stickynotes_applet.c:
* stickynotes_applet_callbacks.c:
* sticknoetes_applet_callbacks.h: Fix applet translucency.
2004-10-20 Davyd Madeley <davyd@madeley.id.au>
* stickynotes_applet.c: Ensure stickynotes remain on all workspaces
after hiding and showing the notes. Patch by Heikki Tauriainen
<heikki.tauriainen@hut.fi>. Closes #147496.
2004-10-24 Sergey V. Udaltsov <svu@gnome.org>
* stickynotes_applet_callbacks.c: Fixed the help invocation.
Closed #156220
2004-10-12 Vincent Noel <vnoel@cox.net>
* stickynotes.c: Clarify a few string.
2004-10-10 Davyd Madeley <davyd@madeley.id.au>:
* stickynotes.c: Make stickynotes remember show/hide status when you
login. Patch from Marcin Krzyzanowski <krzak@linux.net.pl>. Closes
#151832.
2004-09-13 Shaun McCance <shaunm@gnome.org>
* docs/C/stickynotes_applet-C.omf:
* docs/C/stickynotes_applet.xml:
* docs/C/figures/stickynotes_applet.png:
- Updates for 2.8, thanks to Angela Boyle and me
2004-09-11 Shaun McCance <shaunm@gnome.org>
* docs/C/stickynotes_applet-C.omf:
* docs/de/stickynotes_applet-de.omf:
* docs/es/stickynotes_applet-es.omf:
* docs/fr/stickynotes_applet-fr.omf:
* docs/it/stickynotes_applet-it.omf:
* docs/ja/stickynotes_applet-ja.omf:
* docs/ko/stickynotes_applet-ko.omf:
* docs/sv/stickynotes_applet-sv.omf:
* docs/zh_CN/stickynotes_applet-zh_CN.omf:
* docs/zh_HK/stickynotes_applet-zh_HK.omf:
* docs/zh_TW/stickynotes_applet-zh_TW.omf:
- Fix OMF files
2004-08-15 Kjartan Maraas <kmaraas@gnome.org>
* Makefile.am: Remove references to screen-exec.
* stickynotes_applet_callbacks.c: (menu_help_cb),
(preferences_response_cb): Use right help api.
2004-08-15 Kjartan Maraas <kmaraas@gnome.org>
* stickynotes.c: (stickynotes_save): ANSIfication.
* stickynotes.h: Same
* stickynotes_applet.c: (stickynotes_applet_init_icons),
(stickynotes_applet_init_prefs), (stickynotes_applet_update_prefs),
(stickynotes_applet_update_menus),
(stickynotes_applet_update_tooltips): Same.
* stickynotes_applet.h: Same.
* stickynotes_applet_callbacks.c: (applet_size_allocate_cb): Make
the size allocation callback be consistent wrt returning something
or not. Other similar functions don't return a value so I made this
one void too.
* stickynotes_applet_callbacks.h: Adjust for the above.
2004-08-09 Kjartan Maraas <kmaraas@gnome.org>
* stickynotes_applet.c: (stickynotes_applet_new),
(stickynotes_applet_update_icon):
* stickynotes_applet.h:
* stickynotes_applet_callbacks.c: (applet_change_orient_cb),
(applet_size_allocate_cb):
* stickynotes_applet_callbacks.h: Make applet follow panel sizes better
Closes bug #143934. Patch from Vincent Noel.
2004-06-07 Dennis Smit <ds@nerds-incorporated.org>
* stickynotes.glade: Changed a few labels to fix bug
#120693.
2004-05-16 Kaushal Kumar <kaushal.kumar@wipro.com>
* stickynotes.glade: Use appropriate mnemonic widget id to display
the font picker dialog. Fix bug #136961.
Remove unnecessary accelerators and sentence capitalize the menu
items of 'Click' behaviour. Fix bug #120695.
2004-05-16 Kevin Vandersloot <kfv101 psu edu>
* stickynotes_applet_callbacks.c: free notes on exit
* stickynotes.c: Make the title bar icons smaller and dont show/unshow on focus in/out. Fixes
bug #126931
2004-03-16 Glynn Foster <glynn.foster@sun.com>
* Makefile.am: Remove non-portable CFLAGS. Shouldn't override them
anyway.
2004-03-15 Glynn Foster <glynn.foster@sun.com>
* docs/*: Online localized help from Sun's translation team for
de, es, fr, it, ja, ko, sv, zh_CN, zh_TW and zh_HK.
2004-03-04 Chris Lahey <clahey@rigger.boston.ximian.com>
* stickynotes_applet.c (stickynotes_applet_init): Tell the session
manager to ignore our windows.
2004-03-02 Kaushal Kumar <kaushal.kumar@wipro.com>
* sticyknotes_applet.c (stickynotes_applet_update_prefs):
Fix a compilation error. (Bugzilla #135820)
2004-02-23 Dennis Smit <ds@nerds-incorporated.org>
* stickynotes_applet_callback.c (menu_destroy_all_cb):
Made event driven so it doesn't block different instances
and made multihead aware. Also have only one dialog
per instance.
(destroy_all_response_cb):
Added callback function for the menu_destroy_all_cb dialog.
* stickynotes_applet.h:
Added the dialog_destroy_all entry.
* sticyknotes_applet.c (stickynotes_applet_new):
Set the dialog_destroy_all NULL.
* stickynotes_applet_callbacks.c (applet_destroy_cb):
Destroy the dialog_destroy_all at instance destroy.
2004-02-19 Kevin Vandersloot
* stickynotes_applet.c, stickynotes.c: Put in some sanity checks for gconf settings.
Should at least prevent bug #124024
2004-02-18 Kevin Vandersloot
* stickynotes.c: don't set the position to 0,0 on note creation.
Fixes bug #125675
2004-02-11 Breda McColgan <breda.mccolgan@sun.com>
* docs/C/stickynotes_applet.xml: Updated for GNOME 2.6.
* docs/C/stickynotes_applet-C.omf: Updated for GNOME 2.6.
* docs/C/l10n.txt: Updated for GNOME 2.6.
2004-02-10 Dennis Smit <ds@nerds-incorporated.org>
* stickynotes_applet_callback.c (menu_about_cb):
Do the initial about dialog spawm on the right screen
fixes multihead issue.
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>
Changed multihead fixes to reflect CVS.
Mostly based on patch by:
Leena Gunda <leena.gunda@wipro.com>
* stickynotes.h, stickynote.c:
Set the screen for the stickynotes window and properties dialog.
* stickynotes_applet.c, stickynotes_applet_callbacks.c,
stickynotes_callbacks.c:
Pass the screen info. of the applet while creating a stickynote.
Fixes bug# 128258.
2003-02-01 Shakti <shakti.sen@wipro.com>
* stickynotes/stickynotes.glade:
Changed the modality of the properties window.
Set the numeric field to True.
Fixes the bug #126348
2004-02-01 Dennis Smit <ds@nerds-incorporated.org>
* stickynotes_applet.c:
* GNOME_StickyNotesApplet.server.in.in:
Added patch from SUN to make the stickynotes applet
use the icon theme for it's app icon.
Fixes #130642.
2004-01-30 Dennis Smit <ds@nerds-incorporated.org>
* stickynotes_applet.h: add about_dialog entry to the
StickyNotesApplet structure
* stickynotes_applet_callbacks.c (menu_about_cb): make use of
the about box within the applet structure to avoid sharing
between instances, also allow only one about dialog
per instance.
(applet_destroy_cb):
destroy about box when it's present.
* stickynotes_applet.c (stickynotes_applet_new):
set about_dialog to NULL.
Fixes #132465
2004-01-03 Fernando Her
* GNOME_StickyNotesApplet.server.in.in: add buzilla info. Fixes
bug #129214.
2003-12-11 Muktha <muktha.narayan@wipro.com>
* stickynotes_applet.c: Add accessible name. Fixes bug #128259.
2003-12-07 Shakti <shakti.sen@wipro.com>
Remove the applet from the list when it is deleted from panel.
* stickynotes/stickynotes_applet.c: stickynotes_applet_new ()
'destroy' signal is connected to the applet.
* stickynotes/stickynotes_applet_callbacks.c: applet_destroy_cb ()
Added the above function to remove the applet from the list when
it is deleted from the panel.
* stickynotes/stickynotes_applet_callbacks.h
Added declaration of applet_destroy_cb ().
Fixes the bug #124094
2003-11-25 Muktha <muktha.narayan@wipro.com>
* stickynotes.c: Escape text to allow '&' in the title.
Fixes bug #122050.
2003-11-06 Breda McColgan <Breda.McColgan@sun.com>
* help/C/stickynotes_applet.xml: Updated for GNOME 2.4.2
* help/C/stickynotes_applet-C.omf : Updated to reflect new manual version number and date
* help/C/l10n.txt: Updated Summary of Changes section
Mon Sep 15 15:39:20 2003 George Lebl <jirka@5z.com>
* stickynotes_applet.c: when started in lockdown mode, hide the
preferences item
2003-09-05 Christian Rose <menthos@menthos.com>
* stickynotes_applet_callbacks.c: Fix the two broken, recently
added messages so that they match the spelling of already existing
messages.
2008-09-04 Loban A Rahman <loban@earthling.net>
* stickynotes_applet.c, stickynotes_applet_callbacks.c, Makefile.am:
Used the egg_* functions so that help actually gets displayed. Also
made it so that the prefs dialog appears in the same desktop that
the applet itself is in. Applied Muktha's patch to fix bug #121433,
2008-08-26 Loban A Rahman <loban@earthling.net>
* stickynotes.glade, stickynotes.c: Added a help button to every
sticky note's properties dialog. Fixes bug #120691.
2003-08-17 Loban A Rahman <loban@earthling.net>
* stickynotes/docs/C/stickynotes_applet.xml: Fixed some faulty wording
in the "Advanced Settings" portion of Breda's documentation.
2003-08-07 Breda McColgan <breda.mccolgan@sun.com>
* stickynotes/docs/C/stickynotes_applet.xml: updated for GNOME 2.4
* stickynotes/docs/C/stickynotes_applet-C.omf: updated for GNOME 2.4
* stickynotes/docs/C/l10n.txt: created this new file for GNOME 2.4
* stickynotes/docs/C/figures/stickynotes_applet.png: updated for GNOME 2.4
* stickynotes/docs/C/figures/preferences_dialog.png: deleted this file
* stickynotes/docs/C/figures/note_menu.png: deleted this file
* stickynotes/docs/C/figures/applet_menu.png: deleted this file
2003-07-21 Dennis Cranston <dennis_cranston at yahoo com>
* stickynotes.glade: HIGify widget padding between the vbox and
action area of the dialogs. Thanks to <chris@gnome-de.org>
Christian - Manny Calavera - Neumair.
2003-07-15 Loban Rahman <loban@earthling.net>
* stickynotes_applet_callbacks.c: Updated about box description.
* stickynotes.c, stickynotes_applet.c, stickynotes_applet_callbacks.c:
Cleaned up and simplified George's patch for key-writability.
2003-07-04 Loban Rahman <loban@earthling.net>
* *.c: Fixed bug #115195. About box now longer crashes the applet when
showing it the second time. Also cleaned up other dialog and glade
code while at it.
2003-07-03 Loban Rahman <loban@earthling.net>
* stickynotes_applet_callbacks.c: The resize bar and window
decorations now appear and disapper on mouseover AND focus
correctly. Basically, they will always appear if it is in either
mouseover or focus. Fixes bug #115317.
* stickynotes.c, stickynotes_callbacks.c: The icons now change
size accordingly when themes like "Large Print" are chosen. They
don't yet change color when "Inverse" themes are chosen, that
still needs to be fixed by providing alternatives.
* stickynotes.c, stickynotes_callbacks.c: The properties dialog of
each note are now easier to use. Pressing enter auto closes the
dialog.
Wed Jul 02 15:43:01 2003 George Lebl <jirka@5z.com>
* stickynotes.c, stickynotes_applet.c,
stickynotes_applet_callbacks.c: Follow key-writability
for preference keys
2003-07-02 Loban Rahman <loban@earthling.net>
* stickynotes_applet.c, stickynotes_applet_callbacks.c: Pressing
ENTER will now correctly do the equivalent of left clicking the
applet.
* pixmaps/*: Renamed lock.png and unlock.png to locked.png and
unlocked.png to more accurately describe their usage.
Fri Jun 27 12:01:07 2003 Jonathan Blandford <jrb@redhat.com>
* stickynotes.c (stickynote_new): remove note->focused call, as it
breaks compilation and doesn't seem to fit anywhere.
2003-06-16 Dennis Cranston <dennis_cranston at yahoo com>
* stickynotes.glade: Fix mnemonic conflicts for Height/Help
& Color/Close again!
2003-06-15 Kevin Vandersloot
* stickynotes_applet.c: expand the applet for Fitts' law complience.
2003-06-13 Loban A Rahman <loban@earthling.net>
* stickynotes.glade: Revised labels to get rid of "&"'s.
Fixes bug #114367.
* stickynotes_applet.c: When (un)locking individual notes, the
"locked" checkmenuitem in the applet menu is marked "inconsistent"
if it is inconsistent. NOTE: Does not work complete correctly yet.
* stickynotes.schemas.in: Fixed spelling typo.
2003-06-08 Kevin Vandersloot
* stickynotes_applet.c: Expand the applet for Fitts' law complience.
2003-06-02 Loban A Rahman <loban@earthling.net>
* stickynotes.glade: Revised tooltips
2003-06-01 Kevin Vandersloot
* docs/C/Makefile.am: fix build where a figure is not
included
2003-05-28 Loban A Rahman <loban@earthling.net>
* pixmaps/resize_*.png: Changed look again.
* docs/C/stickynotes_applet.xml: Got rid of a roque "&".
2003-05-27 Loban A Rahman <loban@earthling.net>
* stickynotes.c, stickynotes_applet.*: Icon size is no longer huge.
* pixmaps/resize_*.png: Changed look.
* stickynotes.c: Got rid of infinite loop when changing note
properties.
* *.h, *.c, *.glade, *.schemas: Add ability to choose default font as
well as custom fonts for individual notes. Fixes bug #113838.
* docs/C/stickynotes_applet.xml: Updated documentation.
* docs/C/figures/*.png: Updated documentation figures.
2003-05-23 Loban A Rahman <loban@earthling.net>
* stickynotes.schemas.in: New default for title format. Now the
current locale is respected when using the date as the title. Fixes
bug #112606.
* stickynotes.glade: Reworded some UI text to make it more HIG
compliant.
* stickynotes.c: Changed how custom colors are applied. Now, when the
"color from system theme" is used, the current gtk theme is actually
used (didn't before). There are still a few kinks to iron out here.
* stickynotes.c, stickynotes.h, stickynotes_applet_callbacks.c:
Unspegettified internal API. :-)
* stickynotes.c: Fixed bug #113413. When changing colors, the notes
now fully update properly.
* stickynotes.c, stickynotes_applet.*: Fixed bug #113414, all sticky
notes icons are added to an icon factory, making them themable. The
icons are too big atm, will fix.
* pixmaps/*.png: Updated all the icons (made bigger into 48x48 size).
2003-05-21 Loban A Rahman <loban@earthling.net>
* stickynotes_applet.c, stickynotes_applet_callbacks.*:
Fixed compile warnings,
Bug #112616 now fully fixed, but there seems to be a bug in the
listener for bonobo_ui_components. They trigger unnecessarily.
* stickynotes.c: Changed UI slightly. Now, when a note is locked, the
button shows a locked picture with a "Locked Note" tooltip, rather
than a unlocked picture with a "Unlock Note" tooltip. And vice
versa.
* TODO: Updated.
* stickynotes.c: Fixed an infinite loop when toggling lock using menu.
* *.h, *.c: Bug #109427 now fully done. Individual note colors are now
possible. Have fun.
2003-05-20 Dennis Cranston <dennis_cranston at yahoo com>
* stickynotes.glade: Fix various HIG bugs.
a. Fix mnemonic conflicts for Height/Help & Color/Close.
b. The preferences dialog should not be resizable.
c. The term 'Applet' should not be exposed to the user.
d. The preferences dialog should not have a separator to be
consistant with all other applet preference dialogs in
gnome-applets & gnome-panel modules.
This fixes bug #113468.
2003-05-20 Loban A Rahman <loban@earthling.net>
* stickynotes_applet.h: Fixed typo in header declaration.
* stickynotes_applet.c: Code cleanup and speedup.
* stickynotes.*: Added lock checkmenu item to note menu. This is still
slightly buggy.
* *.c *.h: More code and file format cleanup. Once again window
management buttons are only visible when a note is in focus. Also, a
note popup menu is now generated by libglade.
* stickynotes_applet.c: Cleaned up bonobo ui code.
2003-05-19 Loban A Rahman <loban@earthling.net>
* stickynotes.glade: Re-added HIG fixes done by Dennis.
* stickynotes_applet.c: Fixed typo in prefs.
* stickynotes_applet.c: Applet menu properly reflects current state.
* stickynotes.c: New notes now appear correctly.
* stickynotes_callbacks.c: Lock/unlocking menu item added to notes.
* stickynotes.glade, stickynotes.c: Added missing "confirm on note
deletion" gconf option. No UI as it is "advanced".
* stickynotes_applet.c, stickynotes_applet_callbacks.c: Polished UI.
2003-05-19 Loban A Rahman <loban@earthling.net>
* *.*:
- Major changes!
- Fixed bug #109427 : Induvidial note color, locking, new resize
locations, and extra pref for note closure prompt.
- Fixed bug #111007 : multiple instances of applet now possible.
- Fixed bug #111380 : uses system colors by default.
- Simplified colors. Notes no longer "highlight" when in focus. Each
note's locked state and color is also induvidually saved.
- Some regression in HIG of dialogs (done by Dennis Cranston).
Will fix.
- Some regression in features in prefs (done by Matt Keenan).
Will fix.
2003-05-17 Dennis Cranston <dennis_cranston at yahoo com>
* stickynotes.glade: More HIGification of this poor little
preferences dialog. Also, HIGify the widget padding of action
areas.
2003-05-15 Kevin Vandersloot <kfv101@psu.edu>
* stickynotes-glade: fix non ascii copyright symbol. Fixes bug #112960
2003-04-28 Dennis Cranston <dennis_cranston at yahoo com>
* stickynotes.glade: HIGify the preferences and edit title
dialogs.
2003-04-22 Loban A Rahman <loban@earthling.net>
* stickynotes.glade, stickynotes_callbacks.c: Window management
buttons are only visible when a note is in focus.
2003-04-16 Loban A Rahman <loban@earthling.net>
* stickynotes.glade, docs/C/stickynotes.xml: Changed "sticky across
workspaces" to the more standard "put on all workspaces".
* stickynotes.glade, *.h, *.c: Changed gui-layout of sticky notes.
This fixes bugs #109718, #107447. Popup menu has been relocated.
There is still some work needed for button colors.
* *.h, *.c: Fixed the bug #111010: Resizing works again.
* stickynotes.glade, stickynotes.c: Fixed bug #111003, the resize
and close buttons are colored correctly now.
2003-04-15 Loban A Rahman <loban@earthling.net>
* *.h, *.c: Fixed reopened bug #110112.
* *.h, *.c: Used enums instead of magic numbers for applet default
click behaviour choices.
2003-04-08 Loban A Rahman <loban@earthling.net>
* stickynotes_applet_callbacks.c: Fixed bug #110112, stickynotes now
compiles correctly using gcc 2.95.
* *,h, *.c: Remembers "hide all notes" across sessions.
* *.h, *.c: Pressing ENTER on an applet == Left clicking it.
2003-04-04 Loban A Rahman <loban@earthling.net>
* *.h, *.c: Fixed bug #106154, sticky notes are now correctly
skipped from the pager and taskbar.
* *.h, *.c: Some minor code cleanup.
* *.h, *.c: Partially fixed bug #108124.
2003-04-02 Loban A Rahman <loban@earthling.net>
* *.h, *.c: Code cleanup. Fixed some visibility issues.
* stickynotes_applet.c: Fixed a crash while autosaving.
2003-04-01 Loban A Rahman <loban@earthling.net>
* stickynotes.c, stickynotes_callbacks.h, stickynotes_callbacks.c:
Fixed bug #109287: Choosing "close window" from the window menu of a
sticky note triggers destroying the note, now.
* stickynotes_callbacks.c, stickynotes_applet_callbacks.c:
Fixed bug #109391: Focus indication around applet is back.
* stickynotes_applet_callbacks.c:
Fixed bug #109781: About dialog acts properly now.
2003-03-28 Loban A Rahman <loban@earthling.net>
* GNOME_StickyNotesApplet.xml.in, Makefile.am:
Removed redundant GNOME_StickyNotesApplet.xml.in file and added
GNOME_StickyNotesApplet.xml file. Modified Makefile.am to reflect.
* stickynotes.c, stickynotes_applet_callbacks.c:
Fixed bug #109467: Note positions are no longer forgotten.
Fixed bug #109469: About window no longer closes early.
Fixed bug #109470: Preferences dialog no longer crashes applet.
2003-03-27 Padraig O'Briain <padraig.obriain@sun.com>
* Makefile.am: Add $(LIBGLADE_LIBS) to stickynotes_applet_LDADD to
find unresolved symbols. Fixes bug #109264).
2003-03-21 Mikael Hallendal <micke@codefactory.se>
* stickynotes_applet_callbacks.c:
- Use NULL instead of 0 for pointers.
(menu_preferences_cb): build fixes.
(menu_about_cb): build fixes
* stickynotes_applet.c (stickynotes_applet_fill):
- Use NULL instead of 0 for pointers.
2003-03-19 Loban A Rahman <loban@earthling.net>
* stickynotes_applet_callbacks.h, stickynotes_applet_callbacks.c:
Fixed bug #107943. About window no longer leaks.
Also, two preferences/about dialogs never appear.
2003-03-09 Loban A Rahman <loban@earthling.net>
* Makefile.am, stickynotes.glade, TODO: Cleaned up.
* stickynotes.glade, stickynotes_applet_callbacks.c: Fixed bug #107514.
Controls in the prefs dialog are horizontally aligned correctly,
following the HIG.
2003-02-20 Loban A Rahman <loban@earthling.net>
* docs/C/stickynotes_applet.xml, Makefile.am: Fixed bug #106581.
Added more figures.
* stickynotes_applet.c: Fixed bug #106553.
Corrected bad i18n regarding plurals.
2003-02-19 Loban A Rahman <loban@earthling.net>
* stickynotes.schemas.in: Added missing documentation on click_behaviour
key (about lock/unlock).
* stickynotes.h, stickynotes.c: Fixed bug #106150. Now notes don't move
when they are hidden and then shown.
2003-02-18 Loban A Rahman <loban@earthling.net>
* *.c, *.h: Properly updated tooltips when locking/unlocking notes.
2003-02-15 Loban A Rahman <loban@earthling.net>
* stickynotes.schemas.in: Fixed the issue that caused bad strings to be
marked for translation (mispositioned locale tag).
* stickynotes.glade: Mark the copyright string as untranslatable, as well
as a few other strings that are untrasnlatable.
* ../po/POTFILES.in: Modified translatable file list for stickynotes.
* *.c, *.h, and more: Added "locking" feature. You can now lock all notes
so that they are not editable.
2003-02-14 Loban A Rahman <loban@earthling.net>
* Renamed a bunch of files to standardized forms:
stickynotes_applet.server.in.in -> GNOME_StickyNotesApplet.server.in.in
stickynotes_applet.xml.in -> GNOME_StickyNotesApplet.xml.in
stickynotes_applet.schemas.in -> stickynotes.schemas.in
stickynotes_applet.glade -> stickynotes.glade
stickynotes_applet.gladep -> stickynotes.gladep
* Makefile.am, stickynotes_applet.h: Made a few changes to reflect the
above.
2003-02-14 Loban A Rahman <loban@earthling.net>
* Makefile.am: Fixed itsy bitsy issues on importing stickynotes.
* docs/: Readded docs into tree.
* Makefile.am, pixmaps/Makefile.am: Changed destination locations of
glade files and pixmaps.
* stickynotes.c: Removed #if that decided between Gtk 2.0 and 2.2.
Now, Gtk 2.2 is required.
* Makefile.am: Removed unncessary installation of README and ChangeLog.
* stickynotes.c, stickynotes_applet_callbacks.c, stickynotes_applet.c:
Included some hacks to fix bugs arising from using libglade.
* docs/C/stickynotes_applet.xml: Added description of "Default click
behavior" in the Preferences... menu.
2003-02-10 Christian Neumair <chris@gnome-de.org>
* stickynotes_applet.glade: Fixed copyright string,
i.e. don't mark it for translation, use Copyright character.
2003-01-26 Kevin Vandersloot <kfv101@psu.edu>
* import into gnome-applets
* src/: Moved all files up. Now no src directory exists.
2003-01-25 Loban A Rahman <loban@earthling.net>
* src/stickynotes.c: Applied patch by Christophe Fergeau to allow
compilation on gcc 2.95 (and make proper ANSI C).
2003-01-23 Loban A Rahman <loban@earthling.net>
* many files: Now the default click-behaivour of the applet is
configurable. It can either be "create a new note" or show/hide all
sticky notes. Thanks to Mike Sowka for the patch!
* configure.in: release 1.0.6
2003-01-16 Loban A Rahman <loban@earthling.net>
* Makefile.am: Fixed packaging error.
* configure.in: release 1.0.5
* src/stickynotes.c: When changing sticky note title, the old title
appears in the entry box for the new title.
2003-01-15 Loban A Rahman <loban@earthling.net>
* src/stickynotes_applet_callbacks.c: Fixed some stupid typos
preventing GConf keys from getting written properly.
* src/stickynotes_applet_callbacks.c: Color selection in the preferences
dialog now works.
* doc/C/stickynotes_applet.xml: Added documentation for the new "Color"
option in the preferences dialog.
* stickynotes_applet.schemes.in: Clarified documentation for the
settings/sticky key.
* stickynotes_applet.xml.in: Improved applet popup menu.
* stickynotes_applet.glade: Added HIG-compliant tooltips.
* src/stickynotes_applet_callbacks.c: Added a hack so that the About
displays the program name and version properly. For some reason libglade
does not set these properties properly.
* configure.in: release 1.0.4
2003-01-14 Loban A Rahman <loban@earthling.net>
* src/*.c: Tweaked and documented some code.
* Makefile.am, po/POTFILES.in: Properly utilized intltool.
* Made many changes here and there to fix everything to make intltool work
properly.
* configure.in: release 1.0.3
2003-01-13 Loban A Rahman <loban@earthling.net>
* configure.in: More tweaking to remove deprecated/obsolete macros.
* configure.in: Renamed to configure.ac, recommended by latest Autoconf.
* configure.in: Renamed back to configure.in, apparently the Gnome 2
autoconf macros assume it is configure.in. So I must leave it be. :-)
* stickynotes_applet.glade, stickynotes_applet.gladep:
Created glade files for all dialogs, complying to the HIG.
* stickynotes_applet.spec.in, Makefile.am: Added glade file.
* configure.in: Added check for libglade-2.0.
* src/stickynotes.c, src/stickynotes_applet_callbacks.c,
src/stickynotes_applet.c, src/stickynotes_applet.h,
src/stickynotes_applet_callbacks.h:
Modified to use glade file for all dialogs.
* src/stickynotes.c: Now uses glade to create sticky notes.
* pixmaps/Makefile.am: Placed glade files and pixmaps in one location so
that libglade can find the pixmaps.
* src/stickynotes.c: Fixed some memory leaks in stickynotes_save() and
stickynotes_load().
* src/stickynotes_applet_callbacks.c, src/stickynotes_applet_callbacks.h:
Finished user-interface to choose color of sticky notes.
* configure.in: release version 1.0.2
2003-01-12 Loban A Rahman <loban@earthling.net>
* Imported source tree into Gnome CVS.
* doc/C/stickynotes_applet.xml: Slight clarification and correction
in wording.
* configure.in: Tweaked.
* src/stickynotes_applet.c: Corrected arguments for
PANEL_APPLET_BONOBO_FACTORY.
* src/stickynotes_applet_callbacks.c: Specified linkid when launching help.
* src/Makefile.am: Defined missing -D macros that was causing the "Unable
to find the GNOME_FILE_DOMAIN_APP_HELP domain" error.
* configure.in: release version 1.0.1.
2003-01-10 Loban A Rahman <loban@earthling.net>
* [ VERSION 1.0.0 ]
* Finished documentation.
* I think I'm done!
2003-01-07 Loban A Rahman <loban@earthling.net>
* [ VERSION 0.7.0 ]
* Reorganized files and cleaned up everything a little.
* Fixed warnings in autogen.sh.
* Added auto-saving after moving/resizing notes.
* Fixed a bug in auto-saving.
* Implemented preferences dialog.
* All GConf values are now watched. Changes automagically reflect.
2003-01-06 Loban A Rahman <loban@earthling.net>
* To change the title of a sticky note (besides using the right-click
menu), you can double click the title. This replaces middle-clicking it.
* Fixed a small memory leak.
2003-01-05 Loban A Rahman <loban@earthling.net>
* [ VERSION 0.6.1 ]
* Sticky notes now close on button-release of the close button, rather
than button-press. Similar in editing note title.
* Fixed a bug in pixbuf size changing while prelighting (thanks to Mark
Finlay for spotting this one).
* Fixed a bug in sticky note prelighting (now prelighting changes only on
focus change, not mouse-over change).
* Fixed a bug in applet prelighting (now changes properly on both focus
change and mouse-over change).
* Cleaned up code a little.
2003-01-04 Loban A Rahman <loban@earthling.net>
* [ VERSION 0.6 ]
* Deleting empty notes does not require confirmation.
* Through GConf, sticky notes can now be either workspace "sticky"
or not (ie. on all workspaces or not).
* Thanks to Mark Finlay and Alan Horkan for the above suggestions.
* Fixed all internationalization issues.
* Improved auto-saving. Now, auto saving occurs :
- when a sticky note is created
- when a sticky note is destroyed
- when the mouse/focus leaves a modified sticky note
- every 5 minutes (default, use GConf to configure)
* Sticky notes now prelight when on mouse and keyboard focus.
* Applet now prelights on both mouth and keyboard focus.
* Finished documentation.
2002-12-28 Loban A Rahman <loban@earthling.net>
* When choosing "Show all", it now not only unhides the notes, but
raises their windows as well. Thanks Paul Coates for the suggeston.
2002-12-27 Loban A Rahman <loban@earthling.net>
* Removed overused PACKAGE macro in a few places.
* Incorporated Chris Chabot's improved specfile, thanks!
* Removed remaining remants of the word Post-It.
2002-12-25 Loban A Rahman <loban@earthling.net>
* [ VERSION 0.5 ]
* Date format in the title is now configurable through GConf.
* Title is now editable. Right or middle click it.
* Applet now lights up on mouseover.
* Applet now visibly depresses on mouse press.
* Auto-save time is now configurable through GConf.
* Note sizes are now saved/loaded (previously only position was).
* Various other cleanups.
* Hmmm, using the functions in panel-applet-gconf.h crashes the panel.
* WARNING: The XML file format has changed, and is thus incompatible
with previous versions.
* I believe it is now FEATURE COMPLETE. It must remain simple and
not explode with features. I shall release v1.0 soon.
2002-12-24 Loban A Rahman <loban@earthling.net>
* [ VERSION 0.4 ]
* Applet now resizes on panel resize.
* Partially fixed translation issues.
* Properly corrected window moving.
* Added icons on each sticky note to close or resize it,
I stole them from "Goats" by Martin Craig.
* Fixed a few packaging issues.
* Sticky notes are now resizable.
* The user is now asked to confirm when deleting notes.
* Added help.
* Initial size and color of sticky notes are now configurable
through GConf.
* Added tooltip for the applet, displays number of notes.
2002-12-02 Loban A Rahman <loban@earthling.net>
* [ VERSION 0.3 ]
* More autoconf/automake/packaging cleanup.
* Renamed to StickyNotes because Post-It is trademarked.
* Corrected window moving (still a bug in Gtk 2.0 though).
CORRECTION: It was a bug in my code.
* Skipped windows from pager and tasklist.
* Changed various menu wording.
* Removed save menu item, now auto-saved.
* Made XML loading more robust.
* Thanks to Havoc Pennington for his suggestions.
2002-11-30 Loban A Rahman <loban@earthling.net>
* Polished here and there.
2002-11-27 Loban A Rahman <loban@earthling.net>
* [ VERSION 0.2 ]
* Commented all my code.
* Filled in NEWS and README.
* Added auto-saving every five minutes.
* Converted to panel applet.
2002-11-26 Loban A Rahman <loban@earthling.net>
* [ VERSION 0.1 ]
* Initial writing.
* Most of the features completed.
* Preferences and Docs remain.
* Converting to a Panel Applet remain.
|