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
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
|
Changes in GNOME-Applets 2.15.1.1
=================================
"Codename Riemann"
This release contains a build fix that stopped gswitchit being buildable in
2.15.1.
Changes:
- fix build to make gswitchit buildable (Fryderyk Dziarmagowski)
- cpufreq: libcpufreq support, reworked selector (Carlos Garcia Campos)
- mixer: fix up some GObject macros (Stefan Kost)
Changes in GNOME-Applets 2.15.1
===============================
"Codename Gauss"
This is the first (and rather late) tarball for the GNOME 2.15 development
branch of GNOME-Applets. This branch will lead into GNOME 2.16. It may be
highly unstable and do things you really didn't want it to do. You can keep
both pieces, file a bug and ideally submit a patch. If you want the latest
stable branch, check out GNOME-Applets 2.14 (available as the gnome-2-14 branch
of CVS).
Changes:
- invest-applet replaces gtik (Davyd Madeley, Raphael Slinck)
- switch to using po/LINUAS (Kjartan Maraas)
- cpufreq: add support for libcpufreq (Carlos Garcia Campos)
- gswitchit: update for new libxklavier (Sergey Udaltsov)
- refactor configure.in (Davyd Madeley)
- continued GWeather refactoring (makes GWeather more easily portable)
(Philip Langdale)
Plus other bug fixes and translations. Thanks everyone.
Changes in GNOME-Applets 2.14.1
===============================
"Codename Sandman"
This is the first point-release for GNOME Applets 2.14.
Fixes:
- cpufreq - specify the monitored CPU when calling cpufreq-selector (#337578)
- gswitchit - fix crash on exit (#328002)
- mixer - fix a double-free on quit that would cause the panel to freeze
under certain conditions (#335432)
Translations:
- be (Ihar Hrachyshka, Ales Nyakhaychyk)
- bg (Alexander Shopov)
- en_CA (Simos Xenitellis)
- cs (Petr Tomeš, Simos Xenitellis)
- da (Ole Laursen, David Nielsen)
- dz (Pema Geyleg)
- et (Ivar Smolin, Priit Laes)
- fr (Benoît Dejean)
- he (Yair Hershkovitz)
- ka (gnome.inet.ge team)
- ms (Simos Xenitellis)
- pt_BR (Guilherme de S. Pastore)
- ro (Dan Damian)
- ru (Nickolay V. Shmyrev)
- tr (Deniz Kocak)
For developers looking to add new features to GNOME-Applets. The tree will be
branching right after the 2.14.1 release. New features will go into HEAD, bug
fixes will go into gnome-2-14.
Changes in GNOME-Applets 2.14.0
===============================
"Codename Squolo"
This is the first release of GNOME Applets for GNOME 2.14. The end of another
great 6 months by the contributors of GNOME.
Changes:
- Fix potential snprintf() overflow in charpick
Translations:
- cs (Petr Tomeš)
- et (Ivar Smolin, Priit Laes)
- pt_BR (Guilherme de S. Pastore)
- pt (Duarte Loreto)
- sq (Elian Myftiu)
- nn (Kjartan Maraas)
- sv (Daniel Nylander)
- ro (Mugurel Tudor)
- bg (Alexander Shopov, Rostislav Raykov)
- uk (Maxim Dziumanenko)
- it (Luca Ferretti)
- cy (Rhys Jones)
- bn (Simos Xenitellis)
- sq (Elian Myftiu)
- da (David Nielsen, Ole Laursen)
- es (Francisco Javier F. Serrador)
- pl (GNOME PL Team)
- nl (Tino Meinen)
- nb (Kjartan Maraas)
Changes in GNOME-Applets 2.13.90 (2.14.0 RC1)
=============================================
"Codename Schmoozie"
This is the first release candidate of GNOME Applets for GNOME 2.14.
Changes:
- Mixer icons more logical (Jan Arne Petersen)
- Fix crasher in multiload caused by dragging panel around (Davyd Madeley)
Translations:
- zh_TW (Chao-Hsiung Liao)
- zh_HK (Chao-Hsiung Liao)
- ka (David Lodge, Vladimer Sichinava)
- ru (Leonid Kanter)
- eu (Inaki Larranaga)
- el (Kostas Papadimas)
- et (Ivar Smolin)
- sr (Slobodan D. Sredojevic)
- gl (Ignacio Casal Quinteiro)
- gu (Ankit Patel)
- ja (Satoru SATOH)
- ca (Josep Puigdemont i Casamajó)
- es (Francisco Javier F. Serrador)
- lt (Žygimantas Beručka)
- hu (Mate ORY, Gabor Kelemen)
- fa (Elnaz Sarbar, Farzaneh Sarafraz, Roozbeh Pournader)
- fi (Ilkka Tuohela)
- vi (Clytie Siddall)
- cs (Miloslav Trmac)
- zh_CN (Funda Wang)
- de (Hendrik Richter)
- th (Theppitak Karoonboonyanan)
- cy (Rhys Jones)
- it (Stefano Canepa)
The GNOME Applets documentation requires updating for GNOME 2.14, if you feel
that you could assist with this, please feel free to contribute documentation
and improvements. Bugs and bug fixes will also be accepted (of course)!
Changes in GNOME-Applets 2.13.4
================================
"Codename Squarko"
This is the second beta release of GNOME Applets for the GNOME 2.13 series.
String freeze is now in effect.
Changes:
- Correctly configure for GStreamer 0.8 --with-gstreamer=0.8 (Davyd Madeley)
- Mini-commander will not be compiled and transparently upgrade you to
Deskbar-Applet, compile with --enable-mini-commander to be switched back
to Mini-commander again (Davyd Madeley)
- Catch a possible divide by zero in charpick (Davyd Madeley)
- Drivemount fixes for background handling and media ejection (Ryan Lortie)
- GWeather fixes (Davyd Madeley, Philip Langdale, Claudio Saavedra)
- Replace sscanf with g_strsplit in libgweather to prevent stack smashing
(Davyd Madeley, Ryan Lortie)
- Fix invalid free in stickynotes (Davyd Madeley)
Translations:
- et (Ivar Smolin)
- ta (Jayaradha)
- pt (Duarte Loreto)
- th (Theppitak Karoonboonyanan)
- zh_TW (Chao-Hsiung Liao)
- zh_HK (Chao-Hsiung Liao)
- pt_BR (Raphael Higino)
- sr, sr@Latn (Slobodan D. Sredojevic)
The GNOME-Applets documentation requires updating for GNOME 2.14, if you feel
that you could assist with this, please feel free to contribute documentation
improvements. Bugs and bug fixes will of course also be accepted ;)
This tarball was produced with Love (tm).
Changes in GNOME-Applets 2.13.3
================================
"Codename Stardust"
This is the first beta release of GNOME Applets for the GNOME 2.13 series.
Changes:
- Fix compiler warnings (Davyd Madeley)
- Clean up configure.in andd summary (Davyd Madeley)
- Add support for GStreamer 0.10 (Tim-Philipp Müller, Saleem Abdulrasool,
Sylvain Bertrand, Davyd Madeley)
- Center battery low warning dialog (Davyd Madeley)
- Update libnotify API (Davyd Madeley, Wouter Bolsterlee)
- Move drivemount to the new libpanel-applet background handling API
(Ryan Lortie)
- Turn GWeather preferences into a GObject derived from GtkDialog
(Philip Langdale)
- Fix critical warning in stickynotes (Davyd Madeley)
- Build fixes for trash applet (Glynn Foster)
- gcc 2.95 fixes for Stickynotes (Jens Granseuer)
Thanks to all of the translators, even though I again haven't listed you.
For testers, be aware that restarting GNOME Panel appears to trigger bug 327972
(http://bugzilla.gnome.org/show_bug.cgi?id=327972) in some circumstances. I'm
not yet sure why.
Changes in GNOME-Applets 2.13.2
================================
"Codename Indigo"
This is the second development release of GNOME Applets for the GNOME 2.13
series. It also marks the beginning of the feature freeze.
Changes:
- Make HAL optional in the build (John N. Laliberte)
- Use new libpanel-applet transparency implementation in battstat (Ryan Lortie)
- Use libnotify 0.3 API for battstat (Michael Vogt)
- CPUFreq HIG fixes (Dennis Cranston)
- GSwitchit HIG fixes (Sergey Udaltsov)
- Locations Love (Jerimiah Cole, Pedro Villavicencio Garrido,
Theppitak Karoonboonyanan, Adam Schreiber, Funda Wang)
- Gweather: add pressure unit: atmospheres (Alexandros Frantzis)
- Update sun/moon pictures at sunset/rise (Frank Solensky)
- Gweather, memory leak fixes (Kjartan Maraas)
- Gweather doc fixes (Vincent Untz)
- Dew point is optional (Frank Solensky)
- METAR parser tester (Frank Solensky)
- Mixer, fix memory leaks, interpret arrow keys correctly, give unique names
to mixers with same name (Ronald S. Bultje)
- Mixer, don't remove the tooltip when scrolling (Michael Hofmann)
- Fix critical warning in modemlights (Kjartan Maraas)
- Fix crasher in modemlights (Sebastien Bacher)
- Multiload, don't poll network filesystems (Benoît Dejean)
- Fix graph drawing issues (Baz Zoetekouw)
- Multiload documentation fixes (Vincent Untz)
- Add "Hide Notes" option to the stickynotes menu (Jaap A. Haitsma)
- Let stickynotes remember their positions (André Martins)
- Ensure default titles are UTF-8 (Ryuichi Arafune, Davyd Madeley)
- Use correct cursor when dragging things to the trash (Bas van der Lei)
- Ensure trashapplet always fits on panel (Michael Hofmann)
Changes in GNOME-Applets 2.13.1
================================
"Codename Mobius"
This is the first development release of GNOME Applets for the GNOME 2.13
series.
Changes:
- Split GWeather into the GWeather frontend and libgweather which has the
parsers for weather servers and the preferences. (Philip Langdale)
Fixes:
- Code cleanup, gcc 2.95 fixes, etc. (Jens Granseuer, Kjartan Marass,
Laszlo Peter, Aurelien Jarno)
- Battery applet text will rotate on side panels (Ryan Lortie)
- Implement a is_suspend_unavailable() hook for vendors to patch (Ryan Lortie)
- Stop drivemount icons exloderizing the applet (Michael Hofmann)
- GSwitchit plugin updates (Sergey Udaltsov)
- French documentation (Christophe Bliard)
- Locations Love (Ryan Lortie, Farzaneh Sarafraz)
- Reduce flicker when positioning the mixer (Ronald S. Bultje)
- Other mixer fixes (Kazuki Shimura, Ronald S. Bultje)
- Fix a major stickynotes crasher (Jaap A. Haitsma)
Translations:
- zh_TW (Abel Cheung)
- cs (Miloslav Trmac)
- gu (Ankit Patel)
- th (Theppitak Karoonboonyanan)
- es (Francisco Javier F. Serrador)
- gl (Ignacio Casal Quinteiro)
- en_CA (Adam Weinberger)
- bg (Alexander Shopov)
- pt_BR (Guilherme de S. Pastore)
- bn (Mahay Alam Khan)
- nl (Tino Meinen)
- fa (Masoud Ahmadzadeh, Meelad Zakaria)
- ku (Erdal Ronahi)
Changes in GNOME-Applets 2.12.1
================================
"Lies, Damn Lies and Statistics"
This is the first maintainance release of GNOME Applets for stable consumption.
It contains only fixes and translations. GNOME-Applets will branch for
development after this release.
Fixes:
- Build fixes for Cygwin (Cygwin Team)
- Add figures to tarball (Ryan Lortie)
- Drivemount: correctly fall back to volume activation URI (James Henstridge)
- Drivemount: ensure button relief is set on newly-created drives (Ryan Lortie)
- GSwitchIt: small polish, improvement for plugins (Sergey Udaltsov)
- GTik: Properly escape stock symbols (Ryan Lortie)
- Gtik: report 3 digits as upstream does (Ryan Lortie)
- Gtik: clean ups, remove strtok() (Ryan Lortie)
- "Maintainer stuff" (Davyd Madeley)
- Mixer: fix rounding errors for setting new volume (Ronald S. Bultje)
Documentation:
- charpick/it (Luca Ferretti)
- charpick/pt_BR (Pedro de Medeiros)
- gweather/uk (Maxim Dziumanenko)
- gweather/es (Francisco Javier F. Serrador)
- mini-commander/pt_BR (Pedro de Medeiros)
- trashapplet/it (Luca Ferretti)
Translations:
- it (Alessio Frusciante, Luca Ferretti)
- gl (Ignacio Casal Quinteiro)
- zh_TW (Chao-Hsiung Liao)
- bg (Yavor Doganov)
- bn (Mahay Alam Khan)
- vi (Clytie Siddall)
- eu (Inaki Larranaga)
- de (Frank Arnold)
- ja (Takeshi AIHANA)
- fi (Ilkka Tuohela)
Changes in GNOME-Applets 2.12.0
================================
"Gilded Stars and Zealous Hearts"
This is the official GNOME 2.12 release of the gnome-applets package.
Significant changes in this release as compared with the last stable release
include a totally revamped stickynotes user interaction model, a switch to
gnome-doc-utils for the user manuals (for improved translations), fast
location searching in the weather applet and a new smaller battery capacity
indicator for the battery applet. There have also been many bug fixes,
small enhancements and portability fixes throughout.
Support for obtaining battery capacity information through the freedesktop
HAL (Hardware Abstraction Layer) has also been added. If you encounter any
problems with the battery applet as compared to previous versions, please
ensure that you are using the latest version of HAL. If the problem
persists please let us know about it at http://bugzilla.gnome.org/.
Changes since last prerelease:
- battstat: build fixes when compiling without HAL (Rodrigo Moya)
- cpufreq: allow correct operation with more than 4 governors (Ryan Lortie)
- gswitchit: build fixes to allow safe parallel builds (Ryan Lortie)
Documentation:
- cpufreq, mini-commander, stickynotes and drivemount fixups (Davyd Madeley)
Translations:
- bg (Vladimir Petkov)
- cy (Rhys Jones)
- es (Francisco Javier F. Serrador)
- et (Priit Laes)
- fr (Christophe Merlet)
- hy (Norayr Chilingaryan)
- it (Luca Ferretti, Alessio Frusciante)
- lt (Žygimantas Beručka)
- ru (Leonid Kanter)
- sr (Danilo Šegan)
- th (Theppitak Karoonboonyanan)
- tr (Baris Cicek, Deniz Kocak)
Changes in GNOME-Applets 2.11.93
==================================
"Piazza, New York Catcher"
Changes:
- battstat: ability to disable HAL backend with gconf key (Ryan Lortie)
- gweather: libnotify call now gives (x,y) hints (Rodrigo Moya)
- gweather: no longer stops updating after being disconnected (Ryan Lortie,
Pierre Ossman)
- mixer: sort mixers by elementfactory rank (Ronald Bultje)
- modemlights, gweather: FreeBSD portability fixes (Diego Pettenò)
Documentation:
- battstat and gweather ("C", Davyd Madeley)
- gswitchit and trashapplet ("fr", Christophe Bliard)
Translations:
- ca (Xavier Conde)
- cs (Miloslav Trmac)
- cy (Rhys Jones)
- es (Francisco Javier F. Serrador)
- el (Kostas Papadimas)
- et (Priit Laes)
- gu (Ankit Patel)
- hu (Gabor Kelemen)
- nl (Vincent van Adrighem)
- nn (Sigurd Gartmann)
- pl (Artur Flinta)
- pt (Duarte Loreto)
- pt_BR (Raphael Higino)
- ru (Leonid Kanter)
- sq (Laurent Dhima)
- vi (Clytie Siddall)
- zh_TW (Chao-Hsiung Liao)
Changes in GNOME-Applets 2.11.92.1
==================================
"Tabletop fixes"
This release fixes a previously unnoticed incompatibility with libgtop 2.11.92
Changes in GNOME-Applets 2.11.92
==================================
"Coming up with original release names is so passé"
Changes:
- battstat: libnotify call now gives (x,y) hints for pointing at the applet
(Davyd Madeley)
- cpufreq: no longer require fixed buffers (Carlos Garcia Campos)
- drivemount: transparency fixes (Ryan Lortie); plugged leak (Felix Riemann)
- gtik: fix leak (Kjartan Maraas)
- mini-commander: listen to GConf key changes again (Ryan Lortie)
- multiload: cleanup, select correct properties tab based on selected graph
(Ryan Lortie); drawing fix (Martin Ejdestig)
- stickynotes: cleanup (Jaap A. Haitsma)
Translations:
- ro (Mugurel Tudor, Dan Damian)
- uk (Maxim Dziumanenko)
- es (Francisco Javier F. Serrador)
- el (Kostas Papadimas, Nikos Charonitakis)
- nb/no (Kjartan Maraas)
- et (Ivar Smolin)
- hu (Gabor Kelemen)
- fi (Ilkka Tuohela)
- zh_CN (Funda Wang)
- sk (Marcel Telka)
- bg (Rostislav Raykov, Alexander Shopov)
- th (Theppitak Karoonboonyanan)
- ca (Xavier Conde Rueda)
- pl (GNOME PL Team)
- pt_BR (Raphael Higino)
- te (Sunil Mohan Adapa)
- cy (Rhys Jones)
- sq (Elian Myftiu)
Changes in GNOME-Applets 2.11.91
==================================
"Sorry, I'd love to make love with you, darling, but you see, I'm setting up a
wiki"
Changes:
- Switch to gnome-doc-utils (Davyd Madeley, Danilo Šegan, Shaun McCance)
- battstat: fix bugs in HAL backend (Ryan Lortie)
- charpick: only show palette selector if there are extra palettes to select
(Felix Riemann)
- charpick: Replace custom get_utf_string() by g_ucs4_to_utf8() and other
cleanups (Benoît Dejean)
- cpufreq: cleansups (Benoît Dejean)
- gswitchit: variants of the same layout can now be distinguished by a '*'
(Sergey Udaltsov)
- mixer: prevent mute state getting out of sync (Ronald S. Bultje)
- mixer: fix the "wubbly tooltip bug" (Ronald S. Bultje)
Translations:
- bg (Alexander Shopov, Rostislav Raykov)
- te (Prajasakti Localisation Team)
- cs (Miloslav Trmac)
- el (Nikos Charonitakis)
- nl (Vincent van Adrighem)
- fi (Ilkka Tuohela)
- zh_CN (Funda Wang)
- vi (Clytie Siddall)
- es (Francisco Javier F. Serrador)
- gu (Ankit Patel)
- en_CA (Adam Weinberger)
- sk (Marcel Telka)
- nb/no (Terance Sola, Kjartan Maraas)
- sr (Danilo Šegan)
- he (Yair Hershkovitz)
- th (Theppitak Karoonboonyanan)
- hu (Gabor Kelemen)
- de (Hendrik Brandt)
- lt (Žygimantas Beručka)
- et (Priit Laes)
- ja (Takeshi AIHANA)
- fr (Christophe Merlet)
- gl (Ignacio Casal Quinteiro)
Changes in GNOME-Applets 2.11.2
==================================
"It's always better with two!"
Changes
* battstat
- HAL backend (Ryan Lortie)
- Poll for AC adapter occasionally to deal with broken ACPI (Ryan Lortie)
- Remove suspend option (Ryan Lortie)
- Interface fix for translation (Ryan Lortie)
* gweather
- Timezone bug with new libc (Davyd Madeley)
- Secret libnotify support (Rodrigo Moya)
* stickynotes
- New interaction (Jaap Haitsma)
* drivemount
- More work on extended actions (Emmanuel Touzery)
Apologies for the lateness and rushedness of this release. It's been hard to
get access to the real internet for long periods of time. GNOME-Applets is now
considered feature frozen for the 2.11/12 release cycle. If any really important
features forget to get committed, then you should mail me, because I suck, and
we'll try to appeal the freeze.
Changes in GNOME-Applets 2.11.1
==================================
"Couldn't do it better with a laser, a torch and a mountain full of dynamite"
Changes (abridged):
* battstat
- FreeBSD support (Joe Marcus Clarke)
- Optional libnotify support (Davyd Madeley)
- Interface cleanup (Davyd Madeley)
- Addition of "Ubuntu-mode" (Ryan Lortie, Davyd Madeley)
- Testing backend (Ryan Lortie)
* cpufreq
- Error dialogs are non blocking (Dennis Cranston)
- Able to change governer (Carlos Garcia Campos)
* drivemount
- Offer g-v-m style actions (Emmanuel Touzery)
* gswitchit
- bugfixes (Sergey V. Udaltsov)
* gtik
- use GtkColorButton instead of GnomeColorPicker (Michael Terry)
* gweather
- search weather locations (Esteban Sanchez)
- Add Beaufort wind speed scale (Davyd Madeley)
* mini-commander
- replace GnomeColorPicker with GtkColorButton (Michael Terry)
* mixer
- make mixer insensitive if there is no mixer available, only show the
warning once (Ronald S. Bultje)
- control multiple tracks (Jordan Saunders)
- use startup notification when launching main mixer app (Dennis Cranston)
* multiload
- use startup notification when launching the gnome-system-monitor
(Dennis Cranston)
* stickynotes
- use GtkIconTheme instead of GnomeIconTheme (Michael Terry)
Heaps of other stuff too, but my hands are too cold to type it all in. Thanks
to everyone, especially the translators, who my digits are too frozen to really
appreciate line by line.
Changes in GNOME-Applets 2.10.0
==================================
Codenamed "Better the Plone!"
Changes:
- Updated documentation for:
o battstat, charpick, cpufreq, gweather, mini-commander, multiload,
stickynotes, trashapplet (Davyd Madeley)
o drivemount (Trent Lloyd)
- Locations database translator comments (Christian Rose)
Translations:
- da (Martin Willemoes Hansen)
- de (Frank Arnold)
- el (Nikos Charonitakis, Simos Xenitellis, Kostas Papadimas)
- ro (Mugurel Tudor, Dan Damian)
- sv (Christian Rose)
- sr (Danilo Šegan)
- tr (Emre Kadioglu)
- nb/nn/no (Kjartan Maraas)
- nl (Vincent van Adrighem)
- gu (Ankit Patel)
- en_CA (Adam Weinberger)
- ta (Jayaradha Arivoli)
- cs (Miloslav Trmac)
- it (Marco Ciampa)
- fi (Ilkka Tuohela)
- fr (Christophe Merlet)
- pt (Duarte Loreto)
- lt (Žygimantas Beručka)
- pt_BR (Raphael Higino)
- sq (Laurent Dhima)
- zh_TW (Abel Cheung)
- it (Alessio Frusciante)
- ne (Kapil)
- ca (Jordi Mallach)
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>.
|