summaryrefslogtreecommitdiff
path: root/NEWS
blob: 8b3793c8f84f85b2a3ad4b24bdf0eb249ac24bc4 (plain)
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
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
Changes in GNOME-Applets 2.9.7
==================================

Changes:
 - Plug a style leak in all applets (Ryan Lortie)
 - Code cleanups (Kjartan Maraas)
 - New cpufreq artwork (??)
 - Fix calculations for when consecutive sunrises or sunsets do not occur on
   consecutive sideral days (Frank Solensky)
 - Mixer crashes (Mark McLoughlin)
 - Ignore clicks outside the mixer widget (Ronald S. Bultje)

Translations:
 - tr (Emre Kadioglu)
 - ca (Jordi Mallach, Xavier Conde Rueda)
 - el (Kostas Papadimas)
 - th Theppitak Karoonboonyanan)
 - es (Francisco Javier F. Serrador)
 - ru (Leonid kanter)
 - nl (Vincent van Adrighem)
 - pt_BR (Raphael Higino)
 - sq (Elian Myftiu)
 - gu (Ankit Patel)
 - fr (Christophe Merlet, Benoît Dejean, Thierry Moisan)
 - hu (Gabor Kelemen, Laszlo Dvornik)
 - pl (Artur Flinta, GNOME PL Team)
 - et (Priit Laes)
 - el (Kostas Papadimas)
 - da (Ole Laursen, Martin Willemoes Hansen)
 - fi (Ilkka Tuohela, Tommi Vainikainen)
 - it (Luca Ferretti, Alessio Frusciante)
 - fa (Roozbeh Pournader)
 - nb (Kjartan Maraas)
 - nn (Kjartan Maraas)
 - no (Kjartan Maraas)
 - et (Ivar Smolin, Priit Laes)
 - lt (Žygimantas Beručka)
 - ja (Takeshi AIHANA)
 - bg (Vladimir Petkov, Alexander Shopov)
 - sv (Christian Rose)
 - uk (Maxim Dziumanenko)
 - zh_TW (GNOME HK Team)
 - pt (Duarte Loreto)
 - nl (Tino Meinen)
 - cy (Rhys Jones)
 - de (Hendrik Richter)
 - ko (Changwoo Ryu)
 - en_GB (David Lodge)
 - sr (Danilo Šegan)
 - tr (Gorkem Cetin)
 - en_CA (Adam Weinberger)

Changes in GNOME-Applets 2.9.6
==================================
Codenamed "Bùxiángde!" :: Released for GNOME 2.10 Beta 2

Changes:
 - accessx-applet:
   * Install application icon in with the icon theme
 - charpick:
   * Fix install location for icon (Davyd Madeley)
 - gweather:
   * Locations Love for
      - Catalan, Basque (Jordi Mallach)
      - Spain (Francisco Javier F. Serrador)
      - Maine (Chris Hollenbeck)
      - Cape Flattery (???)
      - Denmark (Ole Laursen)
      - Lithuania (Žygimantas Beručka)
      - Brazil and Latin America (Raphael Higino and F. J. F. Serrador)
      - Estonia (Jorn Baayen)
   * Fix typo in name of stock icon for Snow (Davyd Madeley)
 - Mini-Commander:
   * Save macros unexpanded (Björn Torkelsson)
 - Trash Applet
   * Set application icon (Jaap Haitsma)
   * Sync "Empty Trash" dialog with Nautilus (Luca Ferretti)
   * Use ngettext for pluralisation (Davyd Madeley)

Translations:
 - cs (Miloslav Trmac)
 - nb/no (Kjarten Maraas)
 - de (Hendrik Brandt)
 - en_CA (Adam Weinberger)
 - ru (Leonid Kanter)
 - en_GB (David Lodge)
 - sq (Elian Myftiu)
 - et (Priit Laes)
 - lt (Žygimantas Beručka)
 - es (Francisco Javier F. Serrador)
 - ca (Jordi Mallach)
 - el (Kostas Papadimas)
 - pt_BR (Raphael Higino)
 - ko (Changwoo Ryu)
 - cy (Rhys Jones)
 - ja (Takeshi AIHANA)
 - zh_CN (Funda Wang)
 - pl (GNOME PL Team)
 - bg (Vladimir Petkov)
 - nn (Kjarten Maraas)
 - da (Ole Laursen)
 - ta (Jayaradha Arivoli)
 - pt (Duarte Loreto)

Thanks again to everyone, especially the excellent work put in by the
translators. Everyone should try and give all applets testing for 2.10,
especially the accessx-applet, which some people have reported having problems
with.

Please be aware we are now in string freeze, as per the string freeze policy
outlined by the GNOME Release Team. THIS FREEZE ALSO APPLIES TO THE LOCATIONS
DATABASE! What this means is that "Locations Love" can continue, but in a
reduced form. LOCATIONS CAN STILL BE REMOVED AND RESTRUCTURED, however
translatable strings cannot be changed. If you are in doubt, please contact the
maintainer (davyd@madeley.id.au) or the translation team (gnome-i18n@gnome.org)
for clarification. We will strive to notify people of any changes to this policy
(this is unlikely).

Contributors are also asked to turn towards our documentation, which is
currently woefully inadequate due to the significant number of rewritten applets
in this release.

Kong Hee Fat Choy!

Changes in GNOME-Applets 2.9.5
==================================
Codenamed "Ominous!" :: Released for GNOME 2.10 Beta 1

Changes:
 - AccessX-Status:
   * Fix applet transparency (Davyd Madeley)
 - Battstat:
   * Use icon from icon theme (Davyd Madeley)
   * Make dialogs appear always on top, but do not steal focus (Davyd Madeley)
   * Code cleanup (Ryan Lortie)
   * Make text label preference instantly apply (rather then waiting 5 seconds
     (Ryan Lortie)
 - Drivemount:
   * Use icon from icon theme (Davyd Madeley)
 - Gswitchit:
   * Fix applet transparency (Davyd Madeley, Sergey V. Udaltsov)
 - Gweather:
   * Fix hPa to inHg conversion (Davyd Madeley)
   * Locations Love (Priit Laes, Christian Rose, Telsa Gwynne, Chris Hollenbeck)
   * Code cleanup (Benoît Dejean)
   * Make forecast use system monospace font (Dennis Cranston)
   * Don't display multiple new lines in forecast (Dennis Cranston, Michael
     Terry, Damián Viano)
   * Fix build with glibc 2.3.1 (Davyd Madeley)
   * Parser fixes (Marius Gedminas)
 - Mini-Commander:
   * Fix memory leak (Benoît Dejean)
 - Mixer:
   * Use icons from icon theme (Davyd Madeley, Carlos Garnacho Parro)
   * Allow different preferences per mixer applet (Ronald S. Bultje)
 - Modemlights:
   * Make all calls asyncronous, plug leaks, detect su at configure time and
     make the ok button on the password dialog the default (Carlos Garnacho
     Parro)
 - Multiload:
   * Code cleanup (Benoît Dejean)

Translations:
 - th (Theppitak Karoonboonyanan)
 - lt (Žygimantas Beručka)
 - bg (Vladimir Petkov)
 - sq (Elian Myftiu)
 - et (Ivar Smolin)
 - es (Francisco Javier F. Serrador)
 - de (Hendrik Brandt)
 - en_CA (Adam Weinberger)
 - ja (Takeshi AIHANA)
 - sk (Marcel Telka)

Happy Australia Day!

Changes in GNOME-Applets 2.9.4.1
==================================
Codenamed "Not for the weak of swap!"

The major fix in this release is the memory leak in battstat that was leaking
memory into the X server (oops!). Other fixes also included.

Translations: lt, de, es, en_CA, cy, th, et

Changes in GNOME-Applets 2.9.4
==================================
Codenamed "Insubstantial!"

This is it! Over the hump, from here it's bugfixes, documentation and
translation, as with this release GNOME Applets 2.9/2.10 is in feature freeze.
This release highlights the seriously huge amount of work put in by the GNOME
Lovers last Sunday, as well as the more consistant contributors. Extra special
thanks go to Benoît Dejean for his fantastic work with multiload, and Ryan
Lortie for singlehandedly fixing almost every bug in battstat. I also want to
extend my more heartfelt thanks to anyone I've missed from this list, I
apologise for leaving you off, but with so many changes I'm sure I've missed
someone.

Everyone should remember to give their location some Location Loving (see bug
#160163) so that our l10n is absolutely rocking in GNOME 2.10. Thanks again
everyone for their hard work for this release.

Changes:
 - Battstat:
   * Layout rewrite, transparency fixes (Ryan Lortie)
   * Remove code duplication (Ryan Lortie)
   * Make power backend common between instances, allow multiple instances of
     battstat to be run (Ryan Lortie)
   * Use GtkAboutDialog (Davyd Madeley)
 - CPU-Freq:
   * Build fixes (Davyd Madeley)
   * Fixes from CPUFreq rewrite (Carlos Garcia Campos)
 - Drivemount:
   * Use GtkAboutDialog (Davyd Madeley)
 - Geyes:
   * Make eyes focus properly (Nickolay V. Shmyrev)
   * Move geyes themes to prefix/share/gnome-applets/geyes (Davyd Madeley)
 - GKB:
   * Correct English/British and keyboard/keymap (Sergey V. Udaltsov)
 - GSwitchit:
   * Allow multiple instances to be started (Sergey Udaltsov)
 - GTik:
   * Use GtkAboutDialog (Davyd Madeley)
   * Use stock graphics in preferences (Davyd Madeley)
 - GWeather:
   * Location Love (Nicholas J. Skehin, Davyd Madeley, Javier F. Serrador)
   * Use GtkAboutDialog (Davyd Madeley)
   * Take three retries to get weather data before displaying '?' (???)
   * Animated radar images (Jonathan Brandmeyer)
   * Use g_locale_from_utf8 for displaying date (Gareth Owen)
   * Fix encoding errors in the locations database (Kjartan Maraas)
   * Move gweather data to prefix/share/gnome-applets/gweather (Davyd Madeley)
 - Mini-Commander:
   * Set cursor colour to be the same as the font colour (Davyd Madeley)
   * Fix a focus problem that will occur with the new Metacity (Elijah Newren)
   * Use GtkAboutDialog (Davyd Madeley)
 - Modemlights:
   * New modemlights applet (Carlos Garnacho)
 - Multiload:
   * Use GtkAboutDialog (Davyd Madeley)
   * DiskLoad graph (Davyd Madeley, Benoît Dejean)
   * iowait stats for CPU graph (Benoît Dejean)
   * Improve Network Load autoscaling (Benoît Dejean)
   * Remove unrequired assertions (Benoît Dejean)
 - Stickynotes:
   * Fix notes in RTL environments (needs testing) (Davyd Madeley)
   * Waste less memory due to Glade (Paolo Borelli)
   * Add ability to set font colour for notes (Davyd Madeley)
   * Get stickynotes to stay on their own workspace (Davyd Madeley)
   * Save the workspace stickynotes are on (Davyd Madeley)
   * Remove 'default action' and instead replace with a small left click menu
     (Davyd Madeley)
   * Stickynotes always float on top (required since they no longer appear in
     the Alt-Tab list with Metacity) (Davyd Madeley)
   * Update preferences dialogs to use new widgets, clean up layout (Davyd
     Madeley)
 - Other:
   * Update HACKING file (Christoffer Olsen, Davyd Madeley)
   * Build fixes (Thomas Vander Stichele, Davyd Madeley, Tomasz Kłoczko)
   * Remove wireless applet (replaced by gnome-netstatus) (Mark McLoughlin)
   * Remove cdplayer applet (Davyd Madeley)

Translations:
 * it (Luca Ferretti)
 * en_CA (Adam Weinberger)
 * cs (Miloslav Trmac)
 * js (Takeshi AIHANA)
 * el (Kostas Papadimas)
 * es (Francisco Javier F. Serrador)
 * nl (Tino Meinen, Vincent van Adrighem)
 * th (Theppitak Karoonboonyanan)
 * sq (Elian Myftiu)
 * de (Hendrik Brandt)
 * zh_CN (Funda Wang)
 * lt (Žygimantas Beručka)
 * nb (Kjartan Maraas)
 * no (Kjartan Maraas)

Changes in GNOME-Applets 2.9.3.1
==================================
Codenamed: "Ham!"

This release is mainly to fix up a serious crasher in GWeather. However it also
allows us to get some testing of the new CPUFreq and allow me to properly tag
the release.

Merry (insert appropriate holiday here) everyone!

Changes:
 * New CPUFreq (Carlos G. Campos)
 * Fix crasher in GWeather (Sebastien Bacher)
 * Only copy dates in GWeather when required (Ed Catmur)
 * gswitchit work (Sergey Udaltsov)

Translations:
 * es (Francisco Javier F. Serrador)
 * lt (Žygimantas Beručka)
 * ru (Leonid Kanter)
 * en_CA (Adam Weinberger)
 * nb (Kjartan Maraas)
 * no (Kjartan Maraas)
 * de (Hendrik Brandt)
 * cs (Miloslav Trmac)
 * th (Theppitak Karoonboonyanan)

Also I hope that all of our Thai, Indonesian, Malaysian, Sri Lankan, et al.
translators and their families are ok after the disaster in that part of the
world.

Changes in GNOME-Applets 2.9.3
==================================
Codenamed: "Exuberance!"

It's a day late, but at least it's tested. This new release contains numerous
fixed and translations as listed below. Gweather is slowly being improved with
new METAR parsing code and more localizations to the Locations database.

Testers and translators should check out locations in their area and make sure
they are localized appropriately. More information can be found in bug #160163.

Changes:
 * gswitchit now supports xmodmap (Sergey Udaltsov)
 * don't show modems in mixer (Ronald Bultje)
 * fix crasher some people had in multiload (Davyd Madeley)
 * parse visibility information from weather (Frank Solensky)
 * locations localization post sync (Ralph ?, Aaron Gyes, Peter Oliver,
   Robrecht Jacques, Victor Osadci, Jure Cuhalev, Nickolay V. Shmyrev,
   Davyd Madeley, Christan Rose, Simon Xenitellis, Danilo Šegan)
 * Improvement of the gweather DTD (James Henstridge)
 * fix crasher in cpufreq caused by bad parsing of data from /proc (Carlos
   Campos)

Translations:
 * da (Martin Willemoes Hansen)
 * lt (Žygimantas Beručka)
 * cs (Miloslav Trmac)
 * de (Hendrik Brandt)
 * en_CA (Adam Weinberger)
 * sr (Danilo Šegan)
 * es (Francisco Javier F. Serrador)
 * ja (Takeshi AIHANA)
 * th (Theppitak Karoonboonyanan)
 * ru (Leonid Kanter)
 * el (Kostas Papadimas)
 * bg (Vladimir Petkov)
 * nl (Vincent van Adrighem)
 * sk (Marcel Telka)
 * cy (Telsa Gwynne)
 * it (Marco Ciampa)

Changes in GNOME-Applets 2.9.2
==================================
Codenamed: "The System of the World"

Really Big Changes:
 * CPUFreq Applet (Carlos Garcia Campos)

Less Big Changes:
 * Support for transparent panels: battstat, drivemount, mixer, multiload,
   stickynotes, trashapplet
   (Davyd Madeley, Ronald Bultje, James Henstridge)
 * HIG Fixes (Dennis Cranston)
 * Change charpicker to have soft dependency on Gucharmap (Davyd Madeley)
 * Remove use of deprecated acconfig.h (Davyd Madeley)
 * Fix padding issues in drivemount (James Henstridge)
 * gswitchit no longer requires gkb (Sergey Udaltsov)
   "Small step for CVS, big leap for humankind."
 * Plug a leak in stickynotes (Paolo Borelli)
 * day/night differentiation in gweather (Frank Solensky)
 * Sync locations with METAR database (Davyd Madeley, Frank Solensky)
 * locations.dtd file (James Henstridge)

Translations:
 * en_CA (Adam Weinberger)
 * cs (Miloslav Trmac)
 * sq (Laurent Dhima)
 * ja (Takeshi AIHANA)
 * lt (Žygimantas Beručka)
 * bg (Vladimir Petkov, Alexander Shopov)
 * en_GB (David Lodge)
 * es (Francisco Javier F. Serrador)
 * zh_CN (Funda Wang)
 * ca (Jordi Mallach)
 * da (Martin Willemoes Hansen)
 * nb (Kjartan Maraas)
 * no (Kjartan Maraas)
 * nl (Tino Meinen)
 * it (Marco Ciampa)

This release has lots of new features for gweather, such the separate day/night icons. This requires the latest gnome-icon-theme as well as a <coordinates>
entry for your location in Locations.xml.in.

Locations.xml.in has been synced with the METAR list of locations, and as a
result may have picked up some regressions. Everyone should check out locations
close to them geographically and fix up names and such. Some cities contain
multiple locations, Location [123]..., it would be great if all of these
contained actual names. Since I don't happen to live in those cities, it's
rather hard.

Changes in GNOME-Applets 2.9.1
==================================
Codenamed: "Revitalisation"

Really Big Changes:
 * New volume applet (Ronald Bultje)
 * New drivemount applet (James Henstridge)
 * Deprecation of mailcheck using null_applet (Davyd Madeley)
 * Trash Applet (Michiel Sikkes)

Less Big Changes:
 * Latvian and Catalan keyboard layouts (Sergey Udaltsov)
 * charpick now uses gucharmap for character descriptions (Davyd Madeley)
 * Move lots of applets to GtkIconTheme (except stickynotes and possibly others)
   (Davyd Madeley)
 * Fix help crash in accessx (Leena Gunda)
 * Neaten up the battstat preferences dialog (Davyd Madeley)
 * Add option to display remaining time on the panel (Davyd Madeley)
 * Fix charpick padding issues (Vincent Noel)
 * New icons for geyes, gswitchit (Jakub Steiner)
 * gswitchit fixes (Sergey Udaltsov, Kjartan Maraas)
 * String composition fixes in gtik (Davyd Madeley)
 * More locations in gweather (Davyd Madeley, Martin Kretzschmar, Kalle
   Svensson, Gabriel M. Elder, Chris Kelso, Simos Xenitellis)
 * Support for multiple locations per city (Frank Solensky)
 * Removed old gweather Locations file (Davyd Madeley)
 * Make macro list for mini-commander global across all instances of the applet
   (Davyd Madeley)
 * multiload behaves better under NetBSD (Douglas Brebner)
 * Keep stickynotes on all workspaces if appropriate (Heikki Tauriainen)
 * make wireless applet warning dialogs multihead aware (Muktha Narayan)

Translations:
 * ca (Jordi Mallach)
 * az (Mətin Əmirov)
 * nl (Michiel Sikkes, Tino Meinen)
 * ar (Arafat Medini)
 * en_CA (Adam Weinberger)
 * fr (Christophe Merlet, Raphael Tournoy, Yannick Marchegay)
 * cs (Miloslav Trmac)
 * sq (Laurent Dhima)
 * en_GB (David Lodge)
 * sr (Danilo Šegan)
 * bg (Vladimir Petkov)
 * es (Francisco Javier F. Serrador)
 * de (Hendrik Brandt, Martin Kretzschmar)
 * fa (Meelad Zakaria)
 * ru (Leonid Kanter)
 * ang (James Johnson)
 * zh_TW (GNOME HK Team)
 * it (Francesco Marletta, Alessio Frusciante)

Stay tuned for more cool things like: day/night differentiation in gweather and
hopefully the inclusion of a CPUFreq monitoring applet. Development has finally
been revitalised. Since we don't have our own mailing list, we are staging a
hostile takeover of gnome-utils-list, which has now become the primary list for
Applets based discussion.

Remember, GNOME 2.9 is the unstable development branch of the GNOME desktop,
work on the stable tree such as bugfixes, translations and documentation should
take place on the gnome-2-8 branch.

Thanks everyone for contributing, especially if I accidently forgot you, and
stay tuned for GNOME Applets 2.9.2 next month!

Changes in GNOME-Applets 2.8.0
==================================

Overall
 * Documentation updates: gswitchit, battstat, cdplayer, charpick,
   gtik, gweather, mailcheck, mini-commander, mixer, multiload, stickynotes
   (Angela Boyle)
 * Documentation updates: drivemount (Christian Kellner)
 * Documentation updates: geyes, modemlights, stickynotes, wireless
   (Shaun McCance)
 * Battstat, fix build problems on BSD (Julio M. Merino Vidal)
 * Mixer, fix install so that icon is visible in Add to Panel (Mark McLoughlin)

Translations
 * nn (Åsmund Skjæveland)
 * ar (Arafat Medini)
 * nl (Tino Meinen)
 * el (Kostas Papadimas, Nikos Charonitakis)
 * de (Hendrik Richter)
 * pt_BR (Raphael Higino)
 * cs (Miloslav Trmac)
 * et (Priit Laes)
 * bs (Akagic Amila)
 * en_GB (David Lodge)
 * bg (Vladimir Petkov)
 * ro (Mugurel Tudor, Misu Moldovan)
 * da (Martin Willemoes Hansen)
 * tr (Baris Cicek)
 * hu (Gabor Kelemen)
 * ms (Hasbullah Bin Pit)
 * cy (Dafydd Harries)
 * sv (Christian Rose)
 * fr (Sebastien Bacher)
 * th (Paisa Seeluangsawat)
 * zh_TW (GNOME HK Team)
 * ja (Takeshi AIHANA)
 * it (Alessio Frusciante)

This is it, this is GNOME 2.8. Celebrate and pat yourselves on the back.
Especially if you are one of the documentation team who spent all that time
making the desktop that much easier to use.

Changes in GNOME-Applets 2.7.3
==================================

GNOME 2.8.0 Release Candidate 1

Overall
 * Fix forecasting information for the United Kingdom (Alan Cox)
 * Fix crasher in battstat (Carlos Garnacho Parro)
 * Change 'dictionary:' macro in mini-commander to use gnome-dictionary
   (Davyd Madeley)

Translations

 * fi (Jarkko Ranta, Ilkka Tuohela)
 * es (Francisco F. Serrador)
 * sv (Christian Rose)
 * da (Martin Willemoes Hansen)
 * ko (Changwoo Ryu)
 * sr (Danilo Šegan)
 * sq (Elian Myftiu)
 * uk (Maxim Dziumanenko)
 * ja (Takeshi AIHANA)
 * nn (Åsmund Skjæveland)
 * zh_CN (Funda Wang)
 * cs (Miloslav Trmac)
 * gu (Ankit Patel)
 * eu (Iñaki Larrañaga)
 * hu (Laszlo Dvornik)
 * ms (Hasbullah Bin Pit)
 * pl (GNOME PL Team)
 * en_CA (Adam Weinberger)
 * pt (Duarte Loreto)
 * el (Simos Xenitellis)
 * id (Mohammad DAMT)
 * bn (Runa Bhattacharjee)
 * az (Runa Bhattacharjee)

Thanks to everyone who contributed (especially anyone I forgot to name). GNOME
Applets is now is code freeze until the branch for 2.9. This means that only
release critical bugs will be fixed. Please check for duplicates before filing
bugs, but don't simply assume that someone else has filed it. Translators and
documenters should be aware that they may of course continue working on GNOME
Applets, and are uneffected by the freeze.

Changes in GNOME-Applets 2.7.2
==================================

GNOME 2.8.0 Beta 2

Overall
 * Require gnome-panel 2.7.x (Davyd Madeley)
 * New tooltips and warning dialogs for the battery applet (Davyd Madeley)
 * Use global settings for cdplayer applet (Mark McLoughlin)
 * Remove unneeded screen-exec dependancies (Kjartan Maraas, Davyd Madeley)
 * ANSI C fixes (Kjartan Maraas)
 * New locations and spelling fixes for gweather
   (Frank Solensky, Davyd Madeley, Francisco Javier F. Serrador)
 * Change centigrade to celsius and add kPa to gweather preferences
   (Ryan Lortie, Davyd Madeley)
 * Change Forecast to Details (Karthik BG)
 * Change Humidity to Relative Humidity (Christian Neumair)
 * modemlights can now go for more then 99 hours of connection time
   (Vincent Noel)

Translations
 * ar (Arafat Medini)
 * nb (Kjartan Maraas)
 * id (Ahmad Riza H Nst)
 * nl (Michiel Sikkes)
 * ja (Takeshi AIHANA)
 * bg (Vladimir Petkov)
 * uk (Maxim Dziumanenko)
 * ru (Russian Team)
 * de (Christian Neumair, Hendrik Brandt)
 * zh_CN (Funda Wang)
 * sr (Danilo Šegan)
 * sq (Elian Myftiu)
 * es (Francisco Javier F. Serrador)
 * en_CA (Adam Weinberger)
 * cs (Miloslav Trmac)
 * ms (Hasbullah Bin Pit)
 * pl (GNOME PL Team)
 * no (Kjartan Maraas)
 * pt_BR (Estêvão Samuel Procópio, Raphael Higino)
 * fr (Christophe Merlet)
 * ko (Changwoo Ryu)
 * sv (Christian Rose)
 * da (Martin Willemoes Hansen)
 * pt (Duarte Loreto)
 * cy (Telsa Gwynne)
 * nn (Åsmund Skjæveland)
 * sk (Marcel Telka)
 * mn (Sanlig Badral)
 * fi (Ilkka Tuohela)

Thanks to everyone who has contributed. My apologies to anyone I missed. GNOME
Applets is now in string freeze until the branch for 2.9 so the translators can
weave their magic. Please check for duplicates before filing bugs.

Changes in GNOME-Applets 2.7.1
==================================

The "don't blame Kevin, it's all Davyd's fault" release.

Overall
 * Add a --disable-battstat argument (Mark McLoughlin)
 * Better battery support in FreeBSD (Joe Markus Clarke)
 * Fix battery applet positioning (Vincent Noel)
 * Use same CD drive as gnome-cd (Michael Terry)
 * New locations for Weather (Patrick Steiner, Gareth Owen)
 * Mini-Commander error indication if command does not exist (Vinay M R)

Translations
 * da (Martin Willemoes Hansen)
 * es (Francisco Javier F. Serrador)
 * el (Nikos Charonitakis)
 * no (Kjartan Maraas)
 * cs (Miloslav Trmac)
 * ko (Changwoo Ryu)
 * sq (Elian Myftiu)
 * hu (Laszlo Dvornik)
 * en_GB (Gareth Owen)
 * bg (Rostislav Raykov, Vladimir Petkov, Peter Slavov)
 * pl (GNOME PL Team)
 * hi (Guntupalli Karunakar)
 * ja (Takeshi AIHANA)
 * nl (Tino Meinen)
 * pt_BR (Raphael Higino)
 * fr (Christophe Merlet)
 * de (Christian Neumair)
 * sr (Danilo Šegan)
 * lt (Žygimantas Beručka)
 * en_CA (Adam Weinberger)
 * zh_CN (Funda Wang)
 * ru (GNOME RU Team)
 * pt (Duarte Loreto)
 * ta (Dinesh Nadarajah)

As well as heaps of bug fixes, improvements and whatever else I've missed.

Changes in GNOME-Applets 2.5.90
==================================

Overall
* Major docs updates and cleanups. (Glynn Foster, SUN Microsystems doc team)
* Build tree cleanups. (Glynn Foster)

Translations
* Brazilian (Raphael Higino)
* Russian (Leonid Kanter) 
* Bengali (Sayamindu Dasgupta)
* Dutch (Elros Cyriatan)

Changes in GNOME-Applets 2.5.8
==================================
Needs to be updated.

Changes in GNOME-Applets 2.5.7
==================================
Needs to be updated.

Changes in GNOME-Applets 2.5.6
==================================

Overall
* Docs updates (Breda McColgan)
* BSD fixes - bug #134654 (Julio M. Merino Vidal)
* Fix disable-schemas_install (Jason Leach)
* Fix cleaning up .servin.in files - bug #132071 (Jason, Padraig O'Briain)
* Depracation fixes (Kjartan Maraas)
* Fix compilation - bug #133213 (Alexander Winston)
* Add documentor credits (Chee Bin Hoh)

Battery Charge Monitor
* BSD fixes - bug #134661 (Julio M. Merino Vidal)

CD Player
* BSD fixes - bug #134657.(Julio M. Merino Vidal)
* Reduce cpu useage with accesability on - bug #133619 (Pardraig O'Briain)

Character Palette
* Multihead fix - bug #133587 (Dennis)

Disk Mounter
* multihead fixes - bug #134019 (Dennis Smit)

Geyes
* Allow for user installed themes in home directory - bug #122872 (Dennis)
* properly install themes - bug #133100 (Chee Bin Hoh)

GKB
* Keypress fixes - bug #101960 (Egmont Koblinger)

GSwitchit
* Multihead awareness - bug #134025 (Dennis Smit)
* HIG fixes - bugs #133701, 133702, 133570 (Dennis Cranston)
* Fix keynav - bug #132851 (Padraig)

Inbox Monitor
* Fix auto updateing - bug #131407 (Srinivasa Ragavan)
* Gettext fixes - bug #134398 (Gustavo)
* Fix multihead issues - bug #111837 (Leena Gunda)

Keyboard Assesibility
* Fix bug #124153 (Kjartan Maraas)
* mark strings for translation - bug #132579 (Kjartan)

Modem Lights
* Multihead fixes (Dennis)

Stickynotes
* Gconf snaity checks - bug #124024 (Kevin Vandersloot)
* Fix initial placement of notes - bug #125675 (Kevin)
* Multihead fixes - bug #128258 (Dennis, Leena Gunda )

Stock Ticker
* Fix compilation (Jody Goldberg)
* Fix data retrieval - bug #123125  Remi Cohen-Scali.

System Monitor
* install and fix docs - bug #87496 (Dennis, Alexander Winston)

Volume Control
* Fix hadow type - bug #133136 (Richard Hult)

Weather Monitor
* Fix help - bug #134826 (Vijaykumar Patwari)
* More Swedish locations - bug 134479 (Andre Dahlgvist)
* Add Ukraine locations - bug #126101 (Yury Umanets)
* Fix wind display direction - bug #132230 (corwashere yahoo com)
* Divide areas into regions, states, cities etc - bug #81391 (Michael Terry)

Translations
* Albanian (Elian Myftiu)
* Arabic (Arafat Medini)
* Canadian English (Adam Weinberger)
* Croation (Robert Sedak)
* Czech (Miloslav Trmac)
* Danish (Ole Laursen)
* Dutch (Vincent van Adrighem)
* Finnish (Jarkko Ranta)
* French (Christophe Merlet)
* German (Christian Neumair)
* Greek (Kostas Papadimas, Nikos Charonitakis)
* Irish (Alastair McKinstry)
* Italian (Leandro sul clementino)
* Japanese (T.Aihana)
* Lithuanian (Zygimantas Berucka)
* Korean (Changwoo Ryu)
* Malay (Hasbullah Bin Pit)
* Norwegian (Kjartan Maraas)
* Polish (GNOME PL Team)
* Portuguese (Duarte Loreto)
* Serbian (Danilo Segan)
* Spanish (Francisco Javier F. Serrador)
* Ukrainian (Maxim Dziumanenko)


Changes in GNOME-Applets 2.5.5
==================================

Overall
* Keynav (Bill Haneman)
* Help fixes (Chee Bin HOH) 
* Docs update (Breda McColgan)
* Generalize the way about windows are handled
  between all applets (Archana Shah, Dennis Smit)
* Multi head fixes (Arvind Samptur)
* Build fixes (Jason Leach)
* UI fixes (Sergey V. Oudaltsov, Calum Benson, Shakti Sen)
* I18N fixes (Maxim Dziumanenko)

Gweather
* Fix help, Bug #131894 (Muktha Narayan)
* Add support for forecasts from the Australian Bureau of Meteorology (James Henstridge)

Geyes
* Popup an error dialog when there is a major problem
  with the theme files, Bug #132635 (Dennis Smit)

Mini Commander
* Fix crasher bug #132270 (Fernando Herrera)

Charpick
* Removed "Add a palette.." item from pop
  down menu. Fixes #131887 and #129757 (Michael Terry)
* Make the property window it's dialogs be event
  driven instead of using gtk_dialog_run. Fixes #133087 and #131889
  (Dennis Smit)

Stickynotes
* Property window gets destroyed after applet removal (Vijaykumar Patwari)
* App icon make use of icon theme (SUN Microsystems)

Mixer
* Merge patch from gnome-mixer for gsteamer part. (Kevin Vandersloot)

Translations
* Azerbaijani (Metin Amiroff)
* Spanish (Francisco Javier F. Serrador)
* Czech (Miloslav Trmac)
* Polish (Artur Flinta)
* Albanian (Elian Myftiu)
* Slovenian (Andraz Tori)
* Greek (Kostas Papadimas)
* Serbian (Serbian team (Prevod.org))
* Irish (Alastair McKinstry)
* Dutch (Vincent van Adrighem)
* Korean (Changwoo Ryu)
* Portuguese (Duarte Loreto)
* German (Christian Neumair)
* Japanese (Takeshi AIHANA)
* Norwegian (Kjartan Maraas)




Changes in GNOME-Applets 2.5.0
==================================

Overall
* Docs update (Breda McColgan)
* Fix numerous leaks (Kjartan Maraas)
* Lock down improvements (George Lebl)

Battery Monitor
* Fix high cpu usage and other weird things - bug #88553 (David Moore)

Keyboard Accesibility Status
* Fix many leaks (Jody Goldberg)

Keyboard Layout Switcher
* New international US keyboard (Szbolacs Ban)




Changes in GNOME-Applets 2.3.7 and 2.3.90
==================================

Overall
* Help updates (Irene Ryan, Breda McColgan, Chee Bin HOH)

Command Line
* Only allow numeric spin button - bug #120472(Shakti Sen)
* Fix prefs update - bug ##119734 (George Lebl)

Disk Mounter
* Properly scale custom pixmaps - bug #118675 (berbericfmiuni-passaude)

Geyes
* Fix help link - bug #120293 (Narayana Pattipati)

Sticky-Notes
* Add help button - bug #120691 (Loban Rahman)

System Monitor
* Clean up schemas strings - bug #116066 (Christian Neumair)

Wireless Display
* Fix display issues (Bastien Nocera)

Translations
* Azerbaijani (Metin Amiroff)
* Belarusian (Ales Nyakhaychyk)
* Brazilian (Gustavo Noronha Silva)
* Catalan (Jordi Mallach)
* Chinese - Simple (Wang Jian)
* Chinese - Traditional (Abel)
* Czech (Miloslav Trmac)
* Danish (Ole Laursen)
* Dutch (Vincent van Adrighem)
* French (Christophe Merlet)
* German (Christian Neumair)
* Greek (Kostas Papadimas)
* Hebrew (Gil "Dolfin" Osher)
* Icelandic (Samúel Jón Gunnarsson)
* Italian (Leandro sul clementino)
* Japenese (T.Aihana)
* Korean (Changwoo Ryu)
* Malay (Hasbullah Bin Pit)
* Norwegian (Kjartan Maraas)
* Polish (Artur Flinta)
* Portugese (Duarte Loreto)
* Portugese - Brazillian (Gustavo Noronha Silva)
* Serbian (Serbian team (Prevod.org))
* Slovenian (minmax)
* Spanish (Francisco Javier F. Serrador)
* Swedish (Christian Rose)
* Welsh (Dafydd Harries)


Changes in GNOME-Applets 2.3.6
==================================

Overall
* Add checks for gconf writability (George Lebl)
* Update docs build (John Fleck)
* Some string issues in schemas files (Daniel Baeyens)

Character Palette
* Fix crash on exit (George)

Disk Mounter
* HIG some dialogs (George)
* Fix memory leak (George)

Keyboard Accessibility
* Fitts' law complient
* HIGification (Bill Haneman)
* Tweak icons (Calumn Benson)

Keyboard Layout Switcher
* Fix crash, among other things (George)

Inbox Monitor
* HIGify some error dialogs (George)
* Remove password dialog on exit - bug #117041 (Pasupathi Duraisamy)

Sticky Notes
* Keybinding for enter/space (Loban Rahman)
* Window decoratios respond to mouse enter/leave (Loban)
* Change icon size appropiately (Loban)
* Fix crash in about dialog - bug #115195 (Loban)

System Monitor
* Fix network code (George)

Weather Monitor
* Revert code to 2.2.x state since weather.interceptvector has gone down
* Remove impossible combinations - bug #103813 (Abel Cheung)

Translations
* Brazilian (Gustavo Noronha Silva)
* Catalan (Jordi Mallach)
* Czech (mitr)
* Dutch (Vincent van Adrighem)
* German (Christian Neumair)
* Greek (Kostas Papadimas)
* Hebrew (Gil "Dolfin" Osher)
* Japenese (T.Aihana)
* Malay (Hasbullah Bin Pit)
* Polish (Artur Flinta)
* Serbian (Serbian team (Prevod.org))
* Spanish (Pablo Gonzalo del Campo)
* Swedish (Christian Rose)


Changes in GNOME-Applets 2.3.5
==================================

Overall
* Add keybindings for common actions for many applets
* Make schemas translatable

Battery Charge Monitor
* Fix compilation error - #115945 (Matt Keenan)

CD Player
* Fix crash on eject - #115686 (Elijah Newren)

Character Palette
* Add some accessibility stuff
* Set sensitivity of Edit/Remove buttons

Command Line
* Fix reseting text if applet changed - bug #103803 (Narayana Pattipati)
* Expand for Fitts' law

Keyboard Accessibility Status
* Fix url in docs (Abel Cheun)

Keyboard Switcher
* Reorg to allow for stand alone keyboard dialog (Jody Goldberg)
* ReHIGify (Dennis Cranston)
* Fix issue when label or name is NULL - bug #115269 (Kaushal Kumar)
* type6 keyboard layout for Sun USB keyboards (Janos Cserep)
* Fix adding keymaps dialog

Mailcheck
* Wrap text on vertical panels - bug #99794

Modemlights
* HIGify dialogs (Paolo Borelli)
* ipV6 support (Shailesh Mittal)

Mixer
* Save and restore mixer state on startup - bug #61253

Weather Report
* Add labels for F and C degrees - bug #95436
* Add back accessibility support
* Fix for certain issue with weather server - #113981 (Mark Foster)
* Fix spacing with widgets, fix setting tooltip

Sticky Notes
* Expand applet for Fitts' law
* Fix bug #114367 (Loban Rahman)
* Mnemonics fix (Dennis)

Stock Ticker
* Fix so Fitt's law works for butons
* Show default theme font and colors by default - bug #91333
* Center text
* Fix stupid bug - #114073 (Kelledin)

System Monitor
* Don't display values great than 100% - bug #107407
 
Translations
* Fix my type error in POTFILES.in (Christian Rose)
* Catalan (Jordi Mallach)
* Czech (Michal Bukovjan)
* Dutch (Vincent van Adrighem)
* French (Christophe Merlet)
* Italian (Leandro sul clementino)
* Japanese (T Aihana)
* Portugese (Gustavo Noronha Silva)
* Spanish (Pablo Gonzalo del Campo)
* Swedish (Christain Rose)


Changes in GNOME-Applets 2.3.4
==================================

Overall
* Expand most applets for Fitts' law complience

Keyboard Accessibility Status
* Fix non ascii character for translators - bug #114190 (Bill Haneman)

Character Palette
* Add an "add palette" to the popup menu

Keyboard Layout Switcher
* get rid of bogus option, change default name to default not gkb bugs #76223,#94153

Inbox Monitor
* Fix type in schemas file - bug #114300
* Make clicked stuff occur on double click (Dennis Cranston)

Sticky Notes
* Update tooltip (Loban Rahman)

Stock Ticker
* update width when spin changes in prefs dialog
* Display errors better and indicate when updating applet - bug #86923

System Monitor
* Fix crash when setting load monitor color - bug #114477 (Ray Strode)
* Use different frame style for better looks - bug #79676 (Tuomas Kuosmanen)
* Fix issue when moving applet to different panels - bug ##94139

Weather Monitor
* More HIG complience (Dennis Cranston)
* Pack widgets tighter on larger panels

Wireless
* pack tighter on larger panels

Translations
* Catalan (Jordi Mallach)
* Chinese - Simplified (Wang Jian)
* Dutch (Vincent van Adrighem)
* French (Christophe Merlet)
* German (Christian Neumair)
* Irish (Paul Duffy)
* Maylay (Hasbullah Bin Pit)
* Spanish (Pablo Gonzalo del Campo)
* Swedish ( Christian Rose)


Changes in GNOME-Applets 2.3.3
==================================

Overall
* Add new accessibility keyboard status applet (Bill Haneman)
* Fix some small HIG issues for all the applets (Dennis Cranston, Gregory Merchan)
* Fix issues building on Debian Hurd - bug #111466 (Christian Marillat)

CD Player
* Give nicer error messages #79761 (Bala Viswanathan)

Character Pallete
* Pack buttons tighter on larger panels and make Fitt's law compliant - bug #95438
* Fix adding applet to vertical panels - bug #113785 (Ray Strode)

Command Line
* Fix possible early freeing of memeory (Abel Cheung)

Inbox Monitor
* UI improvements (Dennis Cranston)
* IPV6 support (Shailesh Mittal)
* Increase timeout so that applet doesn't fail so much for remote serves - bug #91195
* Encrypte password - bug #99801 (Deepa Natarajan)
* Change behavior so that when user clicks on applet, animation is stopped - bug #112914
* UI improvement for update interval - bug #86840
* Don't pop up an error dialog, just indicate an error in the applet - bug #83932
* Prevent creation of multiple processes for imap - bug #113351 (Muktha Narayan)

Keyboard Layout Switcher
* Fix crash with multiple instances - bug #112076 (Muktha)
* Add Syriac keyboard - bug #108154 (Emil Soleyman-Zomalan)

Modem Lights
* Allow for multiple applets to be added to the panel - bug #100007

Sticky Notes
* Change resize images (Loban Rahman)
* Update docs (Loban)
* Add ability to choose fonts for notes - bug #113838 (Loban)
* Add ability to choose colors for notes - bug #109427 (Loban)
* Fix inifinite loop (Loban)
* Fix crash (Loban)
* Themeable icons (Loban)
* Update notes when color changes - bug#113413 (Loban)
* UI improvements (Loban)
* Respect locale format when setting title - bug #112606 (Loban)
* UI improvements - bug #113468 (Dennis)
* Only show window decorations when notes are in focus
* Multiple applet instances now possible - bug #111007 (Loban)
* Use system colors by default - bug  #111380 (Loban)
* Fix non-ascii symbol in glade file - bug #112960

System Monitor
* Run gnome-system-monitor and double click - bug #80351 (jl1192)

Volume Control
* Add +/- labels to better indicate which direction is increase/decrease - bug #99825

Weather Monitor
* Improve animation and handle errors better
* Fix crash toggling temperature labels
* Display temperature ranges for future days - bug #113783
* Fix some wording and UI issues for more clarity

Wireless Monitor
* Make sure applet shows up in reight catagory on non-english locales - bug #112455 (Hidetoshi Tajima)

Translations
* Belarusian (Belarusian Team)
* Chinese - Traditional (Abel)
* Czech (Michal Bukovjan)
* Danish (Ole Laursen)
* Dutch (Vincent van Adrighem)
* French (Christophe Merlet)
* Greek (Kostas Papadimas)
* Hindi (Guntupalli Karunakar)
* Japanese (KAMAGASAKO Masatoshi)
* Malaysian (Hasbullah Bin Pit)
* Portugese (Duarte Loreto)
* New Serbian Translation (http://Prevod.org/)
* Spanish (Pablo Gonzalo del Campo)
* Swedish (Christian Rose)
* New Welsh Translation (Chris Jackson and Dafydd Tomos)


Changes in GNOME-Applets 2.3.2
==================================

Battery Monitor
* Don't crash if certain acpi directories don't exist - bug #111089 (Manel Clos)
* HIGify (Dennis)

CDPlayer
* HIGify (Dennis)

Character Picker
* HIGify (Dennis)

Command Line
* HIGify (Dennis)
* Don't hardcode button sizes - bug #97656
* Docs update (Irene Ryan)

Disk Mounter
* HIGify (Dennis)

GEyes
* Fix crash on non standard theme directories - bug #110852
* HIGify (Dennis Cranston)

Inbox Monitor
* HIGify prefs dialog (Dennis)

Keyboard Layout Switcher
* Fix crash in prefs dialog - bug #110825
* Set sensitivity of add/remove buttons accordingly - bug #93463
* Don't add a keymap if user already has it in their list - bug #111023 (Rajkumar Siavasamy)
* HIGify and fix crash (Dennis)
* Fix issue with multiple running applets - bug #111933

Modemlights
* HIGify (Dennis)

Stock Ticker
* Update automatically when prefs change - bug #90243
* HIGify (Dennis)

System Monitor
* Get the load average graph back - bug #107935 (rwahl at gmx de)
* Add separate color for cached memory - bug #91971
* Can now set the network background color - bug #102088
* HIGify (Dennis)

Sticky Notes
* Fix colors on window buttons - bug #110852 (Loban Rahman)
* Fix resizing - bug #111010 (Loban)
* Fix bugs #109718, #107447 (Loban)
* Fix compilation - bug #110112 (Loban)
* Only show window decorations when notes are in focus (Loban)
* HIGify (Dennis)

Volume Control
* HIGify (Dennis)
* Popup slider on buton press and don't close on button release
* Give error dialog when user tries to do something instead of on startup - bug #110522 (Bala)

Weather Report
* Fix saving of update interval
* HIGify (Dennis)

Wireless Link Monitor
* HIGify (Dennis)
* Don't read pixbufs from files on every update - bug #111893

Translations
* be.po (Belarusian team)
* ga.po (Paul Duffy)
* ja.po (T Aihana)
* ko.po (Changwoo Ryu)
* uk.po (rasta)
* zh_TW.po (Abel Cheung)


Changes in GNOME-Applets 2.3.1
==================================

Character Palette
* Add capability to select palettes with mouse and edit/save individual ones

Disk Mounter
* Fix saving of custom icons - bug #90922
* Translate frame label - bug #103091
* HIGify
* Convert mount error string to utf8 in non-utf8 locales - bug #95480

Inbox Monitor
* Fix to allow multiple applets at one time - bug #109806 (Jens Zechlin)

Sticky Notes
* Remeber note positions - bug #109467 (Loban Rahman)
* Fix about window - bug #109469 (Loban)
* Fix crash in prefs dialog - bug #109470 (Loban)
* Fix focus indication - bug #109391 (Loban)
* Fix bug #109287 (Loban)
* Fix crash while autosaving (Loban)
* Don't show notes in tasklist - bug #106154 (Loban)


Changes in GNOME-Applets 2.3.0
==================================

Overall
* New sticky-notes applet (Loban Rahman)
* New Japanese docs (KAMAGASAKO Masatoshi)
* Mailcheck applet now in gnome-applets (Mark McLoughlin)

Battery Monitor
* Fix typo - bug #104028 (Alex Duggan)

CD Player
* Fix multiple applets on Solaris - bug #105296 (Bala Viswanathan)

Character Palette
* Make Unicode aware - fixes bugs #93682, #104324, #32769

GEyes
* Small performance improvements and fix flashing

Keyboard Layout Switcher
* Fix crasher - bug #107938
* Don't revert to default layout on exit - bug #107018 (Rajkumar Sivasamy)
* Fix keygrab issues - bug #104043 (Shivram Upadhyayula)
* Fix Spanish keyvboard issue (Chema Celorio)
* Fix bug #108378 (Shivram)

Stock Ticker
* HIGify prefs dialog

Weather Report
* Add ability to display up to five day forecasts on panel
* Now contains many more locations each of which equally well
* Nicer forecast dialog
* Animate on update
* HIGify dialogs

Command Line
* FIx dialogs remaining when applet removed - bug #104897 (Pasupathi Duraisamy)
* Fix language correction - bug #99820 (Loban)

Volume Control
* Sync mute with other applications on Solaris - bug #105724 (Bala)
* Add ability to select channel controled by applet - Fixes bugs #60292 and #101833

System Monitor
* Fix sizing issue so that graphs aren't delayed - bug #94745 (berberic at fmi dot uni-passau dot de)
* Make sure other network displays proper stuff - bug #91730 (jlaska at us dot ibm dot com)

Wireless
* Bug fixes for when no devices are present - bugs #107722 #104465
 


News for gnome-applets-1.4.0.4 release:

- general

	* Updated translations (no, nn, ch_TW, pl + some)

- asclock

	* Removed the timezone stuff from properties since it doesn't
	really do anything. (Kjartan)
	* Make it not look for themes in the current dir if run from
	the commandline. (Kjartan)

- gtik

	* Fix some corruption of stock symbol names. (Kjartan)
	* Remove some gdk_font_unref() calls that were causing warnings.
	
- mixer

	* Patch from David Woodhouse to fall back to PCM if there's no
	master volume.

- mini-commander

	* Fix some missing strlen() calls in comparisons. (Leif Bergman)

	 
News for gnome-applets-1.4.0.3 release:

- general

	* Make the build system look for, and use, jw instead of
	db2html (this makes it possible to build docs on Red Hat Linux 7.x). (Kjartan)
	* Loads of new Spanish translations of docs.
	
- multiload

	* Reverted the pageload patch since it doesn't work.

- gkb

	* Argentinian flag (Shooby).

- sound-monitor

	* Fix logic for -n option to esdpvd to actually mean "without X" (Abel Cheung)


News for gnome-applets-1.4.0.2 release:

- general

	* Portability fixes from <drk@sgi.com>. (Kjartan)
	
- asclock

	* Portability fixes from <mcnichol@austin.ibm.com> (Kjartan)
	
- clockmail

	* New theme (gree-digital-analog) from Alex Boxley
	  <alex.bowley@excitehome.net>
	* Portability fixes from <mcnichol@austin.ibm.com> (Kjartan)

- drivemount

	* Fix buffer overruns in sscanf() usage. From John Ellis
	  <johne@bellatlantic.net>. (Kjartan)
	  
- fifteen

	* Portability fixes. (Kjartan)
	
- geyes

	* Spanish translation of the docs. (Manuel)
	* Compile fixes on Irix from <drk@sgi.com>. (Kjartan)
	* Compile fixes in AIX from <mcnichol@austin.ibm.com>. (Kjartan)
	
- gkb

	* Fix Czech flag. (Pavel)
	* Warning/portability fixes. (Kjartan)

- gweather

	* Compile fixes for AIX from <mcnichol@austin.ibm.com>. (Kjartan)
	* Patch from <mdoller@wpi.edu> to make detailed forecast more readable.
	* Round off temperatures correctly. Patch from bugzilla. (Kjartan)
	
- life

	* Compile fixes for AIX from <mcnichol@austin.ibm.com>. (Kjartan)

- mini-commander

	* Fix bug which caused themes not to draw the entry border correctly
	  from Norman Stevens <norman@arcady.u-net.com>. (Kjartan)

- mixer

	* Fix to work with wheel-mice. Patch from Mike Kelly <mike@csuchico.edu>
	* Compile fixes for Irix from David KAELBLING <drk@sgi.com>. (Kjartan)
	
- odometer

	* Fix typos in properties. (Stanislav)

- slashapp

	* Patch from Richard Kinder <r_kinder@yahoo.com> which fixes a whole
	  lot of bugs where things crash on updating and article reading.
	  (Kjartan)
	* Fix memory leaks and robustness issues. (George)
	
- tickastat

	* Fix for compilation on Irix from David KAELBLING <drk@sgi.com>.