summaryrefslogtreecommitdiff
path: root/NEWS
blob: 92f008c2a276daf1c7251aec4fec898fa47ab99d (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
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
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
==============
Version 2.23.3
==============

  libgnome-desktop

	* GnomeBG: Fix some logic errors wrt to caching of slideshows that may
	  cause nautilus crashes (Matthias Clasen)
	* GnomeBG: Support multi-resolution backgrounds (Matthias Clasen)
	* GnomeBG: Falls back to the default image if the user's background
	  doesn't exist (Ray Strode)
	* GnomeBG: Prevent loops caused by setting URI (Søren Sandmann)
	* GnomeBG: Fix leak (Kjartan Maraas)
	* GnomeBG: Get rid of URIs and only use paths (Søren Sandmann)
	* GnomeBG: Make sure tiles are at least 24 pixels wide (Søren Sandmann)
	* GnomeBG: Some tweaks to the tile scaling heuristic (Søren Sandmann)
	* GnomeBG: Small fixes (Søren Sandmann)
	* GnomeBG: Add getters for the various properties (Søren Sandmann)
	* GnomeBG: Monitor the image file (Søren Sandmann)

  Translators

	* Khaled Hosny (ar)
	* Sweta Kothari (gu)

==============
Version 2.23.2
==============

  libgnome-desktop

	* Do not force the top-left corner of the image to fit in
	  the screen, so that zoomed image appears to be zoomed from the center
          of the screen (Jens Granseuer)
	* Add gnome_bg_load_from_preferences(), so applications don't have to
	  rely on libbackground (William Jon McCann)

  gnome-about

	* Don't skip the last description from gnome-version.xml (Matt Keenan)
	* Convert the strftime() output to UTF-8 (Takao Fujiwara)

  Misc

	* Fix build from svn when gvfs-copy fails (Vincent)

==============
Version 2.23.1
==============

  Translators

	* Yavor Doganov (bg)

==============
Version 2.22.1
==============

  libgnome-desktop

	* Fix compiler warnings (Kjartan Maraas)
	* Handle start time in the future correctly in GnomeBG
	  (Matthias Clasen)

  Translators

	* Alexander Nyakhaychyk (be)
	* Simos Xenitellis (el)
	* Massimo Furlani (fur)
	* Vladimer Sichinava ვლადიმერ სიჭინავა (ka)
	* Gintautas Miliauskas (lt)
	* Åsmund Skjæveland (nn)
	* Marcel Telka (sk)

==============
Version 2.22.0
==============

  Translators

	* Khaled Hosny (ar)
	* Runa Bhattacharjee (bn_IN)
	* Kenneth Nielsen (da)
	* Simos Xenitellis (el)
	* David Lodge (en_GB)
	* Jorge González (es)
	* Gabor Kelemen (hu)
	* Sandeep Shedmake (mr)
	* Marcel Telka (sk)
	* Laurent Dhima (sq)
	* Maxim Dziumanenko (uk)

===============
Version 2.21.92
===============

  libgnome-desktop

	* Fix crash in GnomeBG (Joe Marcus Clarke)
	* Fix GnomeBG gio port (Sebastien Bacher)

  gnome-about

	* Fix translator comment not available in po files (Vincent)
	* Fix TypeError crasher in a print statement (Vincent)

  Misc

	* Use gvfs-copy instead of gnomevfs-copy in autogen.sh (Vincent)

  Doc Translations

	* Changwoo Ryu (ko)

  Translators

	* Sílvia Miranda (ca)
	* Pauli Virtanen (fi)
	* Robert-André-Mauchin (fr)
	* Ignacio Casal Quinteiro (gl)
	* Gil Osher (he)
	* Luca Ferretti (it)
	* Changwoo Ryu (ko)
	* Nabin Gautam (ne)
	* Tino Meinen (nl)
	* Jonh Wendell (pt_BR)
	* Woodman Tuen (zh_HK)
	* Woodman Tuen (zh_TW)

===============
Version 2.21.91
===============

  libgnome-desktop

	* Fix invalid read (Vincent)
	* Fix compilation issue caused by some headers (Vincent)
	* Port to gio (Vincent)
	* Fix crash in GnomeBG when file is empty (Vincent)

  gnome-about

	* Add back a --version option (Vincent)

  Misc

	* Require gio, and get rid of gnome-vfs (Vincent)

  Translators

	* Khaled Hosny (ar)
	* Andre Klapper (de)
	* Massimo Furlani (fur)
	* Takeshi AIHANA (ja)
	* Shankar Prasad (kn)
	* Wouter Bolsterlee (nl)
	* Tomasz Dominikowski (pl)
	* Duarte Loreto (pt)
	* Theppitak Karoonboonyanan (th)
	* Woodman Tuen (zh_HK)
	* Woodman Tuen (zh_TW)

===============
Version 2.21.90
===============

  libgnome-desktop

	* Add GNOME_DESKTOP_USE_UNSTABLE_API API guard for GnomeBg
	  (Søren Sandmann)

  Misc

	* Fix test for gnomevfs-copy in autogen.sh (Jonathon Jongsma)

  Translators

	* Khaled Hosny (ar)
	* Petr Kovar (cs)
	* Hendrik Richter (de)
	* Luca Ferretti (it)
	* Gintautas Miliauskas (lt)
	* Arangel Angov (mk)

==============
Version 2.21.5
==============

  gnome-about

	* Don't keep the window centered (Guillaume Seguin)
	* Fix problem when the color of the logo is wrong when changing theme
	  (Guillaume Seguin)
	* Cleanups (Guillaume Seguin)
	* Slow down a bit the animation for the description so people can
	  actually read it (Guillaume Seguin)

  Misc

	* Add check for X11 libraries (Vincent)

  Translators

	* Iñaki Larrañaga Murgoitio (eu)
	* Seán de Búrca (ga)
	* Thierry Randrianiriana (mg)
	* Ani Peter (ml)
	* Yannig Marchegay (Kokoyaya) (oc)
	* Hugo Doria (pt_BR)
	* Clytie Siddall (vi)

==============
Version 2.21.4
==============

  libgnome-desktop

	* New GnomeBG API (Søren Sandmann)

  Doc Translations

	* Kalman Kemenczy (hu)

  Translators

	* Ihar Hrachyshka (be@latin)
	* Jorge González (es)
	* Ivar Smolin (et)
	* Ignacio Casal Quinteiro (gl)
	* Ani Peter (ml)
	* Kjartan Maraas (nb)
	* Zhovner Pavel (ru)
	* Matej Urbančič (sl)
	* Daniel Nylander (sv)

==============
Version 2.21.2
==============

  gnome-about

	* Rewritten in python. It is at last accessible. And it looks a bit
	  better now. (Guillaume Seguin and Vincent for some small bits)

  Misc

	* The libgnomecanvas dependency has been removed.

  Translators

	* Anas Husseini (ar)
	* Ihar Hrachyshka (be@latin)

==============
Version 2.20.1
==============

  libgnome-desktop

	* Fix leak (Glynn Foster, Dan Mick)

  gnome-about

	* Fix timestamp of the file containing the list of the Foundation
	  members (Vincent)
	* Make sure this file is never empty (Vincent)

  Translators

	* Alexander Shopov (bg)
	* Jorge Gonzalez (es)
	* Ignacio Casal Quinteiro (gl)
	* Artur Flinta (pl)

==============
Version 2.20.0
==============

  gnome-about

	* Display the list of Foundation members too (Vincent)

  Misc

	* Remove gnome-vfs dependency for gnome-about (Vincent)
	* Remove spec file (Vincent)

  Translators

	* Anas Husseini (ar)
	* Khandakar Mujahidul Islam (bn)
	* Jordi Mallach (ca)
	* Peter Bach (da)
	* Gabor Kelemen (hu)
	* Shankar Prasad (kn)
	* Gintautas Miliauskas (lt)
	* Arangel Angov (mk)
	* Горан Ракић (sr)
	* Maxim Dziumanenko (uk)

===============
Version 2.19.92
===============

  Translators

	* Adam Weinberger (en_CA)
	* Stéphane Raimbault (fr)
	* Takeshi AIHANA (ja)
	* Arangel Angov (mk)
	* Og Maciel (pt_BR)
	* Duarte Loreto (pt)

===============
Version 2.19.90
===============

  Translators

	* Ani Peter (ml)
	* Inaki Larranaga Murgoitio (eu)
	* Yair Hershkovitz (he)

==============
Version 2.19.6
==============

  Doc Translations

	* Claude Paroz (fr)
	* Daniel Nylander (sv)

  Translators

	* Runa Bhattacharjee (bn_IN)
	* Hendrik Richter (de)
	* Ilkka Tuohela (fi)
	* Ankit Patel (gu)
	* Luca Ferretti (it)
	* Eunju Kim (ko)
	* Ani Peter (ml)
	* Wouter Bolsterlee (nl)
	* Dr.T.Vasudevan (ta)
	* Nurali Abdurahmonov (uz@cyrillic)

==============
Version 2.19.5
==============

  gnome-about

	* Move the contributors list to a data file (Vincent)
	* Implement downloading list of foundation members from api.gnome.org
	  (but does nothing for now since the api.gnome.org page is not up)
	  (Vincent)

  libgnome-desktop

	* Use gtk_widget_set_tooltip_text() (Vincent)

  Misc

	* Improve docbook version of LGPL (Vincent)
	* Build fix (Kjartan Maraas)
	* Add gnome-vfs dependency for gnome-about (Vincent)

  Doc Translations

	* Jorge Gonzalez (es)
	* Clytie Siddall (vi)

  Translators

	* Takeshi AIHANA (ja)
	* Danishka Navin (si)
	* Y.Kiran Chandra (te)
	* Nurali Abdurahmonov (uz)
	* Clytie Siddall (vi)

==============
Version 2.19.4
==============

  gnome-about

	* Use g_timeout_add_seconds() when possible (Vincent)

  libgnome-desktop

	* Use g_timeout_add_seconds() when possible (Vincent)
	* Migrate to new tooltip API

  Misc

	* Require glib 2.13.0 (Vincent)
	* Require gtk+ 2.11.3 (Vincent)

  Translators

	* Pema Geyleg (dz)

================
Version 2.19.3.1
================

  Misc

	* Forgot to bump GNOME version number in 2.19.3.

==============
Version 2.19.3
==============

  Misc

	* Tango-ify some icons (Frédéric Bellaiche)

  Doc

	* Update FSF address (Priit Laes)

  Doc Translations

	* Claude Paroz (fr)
	* Daniel Nylander (sv)
	* Jorge Gonzalez (es)

  Translators

	* David Lodge (en_GB)
	* Jorge González (es)
	* Ivar Smolin (et)
	* Kjartan Maraas (nb)
	* Daniel Nylander (sv)
	* Theppitak Karoonboonyanan (th)

==============
Version 2.19.2
==============

  gnome-about

	* Add names of new contributors! (Vincent)

  Doc Translations

	* Changwoo Ryu (ko)

  Translators

	* Ihar Hrachyshka (be@latin)
	* Jorge González (es)
	* Yannig MARCHEGAY (Kokoyaya) (oc)

==============
Version 2.18.1
==============

  gnome-about

	* Add names of 14 contributors! (Vincent)

  libgnome-desktop

	* Fix undefined reference in deprecated code (Kjartan Maraas)

  Doc Translations

	* Djihed Afifi (ar)
	* Silvia Miranda (ca)

  Translators

	* norbu (dz)
	* Jorge González (es)
	* Iñaki Larrañaga Murgoitio (eu)
	* Ignacio Casal Quinteiro (gl)
	* Erdal Ronahi (ku)
	* Raivis Dejus (lv)

==============
Version 2.18.0
==============

  gnome-about

	* Add names of 180 contributors! (Vincent)
	* Remove invalid category in .desktop file (Christian Kirbach)

  libgnome-desktop

	* Add missing license headers in some files (Vincent)

  Doc Translations

	* Maxim Dziumanenko (uk)

  Translators

	* Ihar Hrachyshka (be@latin)
	* Vladimir Petkov (bg)
	* Gareth Bowker (cy)
	* Simos Xenitellis (el)
	* Ilkka Tuohela (fi)
	* Stéphane Raimbault (fr)
	* Ankit Patel (gu)
	* Gil Osher (he)
	* Samuel Jon Gunnarsson (is)
	* Luca Ferretti (it)
	* Gintautas Miliauskas (lt)
	* Thierry Randrianiriana (mg)
	* Jovan Naumovski (mk)
	* Duarte Loreto (pt)
	* Leonid Kanter (ru)
	* Marcel Telka (sk)
	* Elian Myftiu (sq)
	* Горан Ракић (sr)
	* Felix (ta)
	* Baris Cicek (tr)
	* Pham Thanh Long (vi)

===============
Version 2.17.92
===============

  libgnome-desktop

	* Fix crash when launching a .desktop file (Padraig O'Briain)

  Misc

	* Fix build (Vincent)
	* Distribute MAINTAINERS (Kjartan Maraas)

  Translators

	* Vladimir Petkov (bg)
	* Peter Bach (da)
	* Gabor Kelemen (hu)
	* Takeshi AIHANA (ja)
	* Artur Flinta (pl)
	* Og Maciel (pt_BR)
	* Duarte Loreto (pt)
	* Maxim Dziumanenko (uk)
	* Clytie Siddall (vi)
	* Funda Wang (zh_CN)
	* Woodman Tuen (zh_HK)
	* Woodman Tuen (zh_TW)

===============
Version 2.17.91
===============

  Doc Translations

	* David Lodge (en_GB)

  Translators

	* Friedel Wolff (af)
	* Ihar Hrachyshka (be)
	* Jordi Mallach (ca)
	* Hendrik Richter (de)
	* Ilkka Tuohela (fi)
	* Stéphane Raimbault (fr)
	* Young-Ho Cha (ko)
	* Wouter Bolsterlee (nl)

===============
Version 2.17.90
===============

  Translators

	* Khaled Hosny (ar)
	* Kjartan Maraas (nb)
	* Andre Noel (pt_BR)
	* Daniel Nylander (sv)
	* Theppitak Karoonboonyanan (th)

==============
Version 2.17.5
==============

  gnome-about

	* Add a --gnome-version to ouput version information on the terminal
	  (Vincent)
	* Fix compiler warnings (Christian Persch)
	* Do not call deprecated functions (Christian Persch)

  libgnome-desktop

	* Make it possible to let caller handle reaping child process when
	  launching a desktop file (Tom Tromey)
	* Remove old useless test (Vincent)
	* Deprecate GnomeDItemEdit and GnomeHint (Vincent)
	* Fix compiler warnings (Christian Persch)
	* Do not call deprecated functions (Christian Persch)

  Misc

	* Fix gtk-doc build (Vincent)
	* Remove useless icons from repository (Vincent)
	* Build fix (Paolo Borelli)
	* Build improvements (Christian Persch)

  Doc

	* Remove gnome-feedback (moved to gnome-user-docs) (Shaun McCance)
	* Build fixes (Shaun McCance)

  Doc Translations

	* Christophe Bliard (fr)
	* Daniel Nylander (sv)
	* Francisco Javier F. Serrador (es)

  Translators

	* Mohamed Magdy (ar)
	* Jakub Friedl (cs)
	* David Lodge (en_GB)
	* Francisco Javier F. Serrador (es)
	* Ivar Smolin (et)
	* Gil Osher (he)
	* Raivis Dejus (lv)
	* Arangel Angov (mk)
	* Kjartan Maraas (nb)
	* Matic Žgur (sl)
	* Daniel Nylander (sv)
	* Theppitak Karoonboonyanan (th)
	* Clytie Siddall (vi)

==============
Version 2.17.2
==============

  Misc

	* Use GNOME logo for GNOME about .desktop file (Sébastien Bacher)

  Translators

	* Khaled Hosny (ar)
	* Guillaume SAVATON (eo)

==============
Version 2.16.1
==============

  Translators

	* Djihed Afifi (ar)
	* David Lodge (en_GB)
	* Rajesh Ranjan (hi)
	* Luca Ferretti (it)
	* Åsmund Skjæveland (nn)

==============
Version 2.16.0
==============

  Doc Translations

	* Christophe Bliard (fr)
	* Daniel Nylander (sv)

  Translators

	* Runa Bhattacharjee (bn_IN)
	* Hendrik Richter (de)
	* Ivar Smolin (et)
	* Rajesh Ranjan (hi)
	* Gabor Kelemen (hu)
	* Gintautas Miliauskas (lt)
	* Raivis Dejus (lv)
	* Rahul Bhalerao (mr)
	* Leonardo Ferreira Fontenelle (pt_BR)
	* Duarte Loreto (pt)
	* Leonid Kanter (ru)
	* Matic Žgur (sl)
	* Felix (ta)

===============
Version 2.15.92
===============

  Misc

	* Remove gnome-workspace icon (now included in gnome-panel) (Vincent)

  Doc Translations

	* Jonathan Ernst, Emmanuel Andry, Christophe Bliard (fr)
	* Daniel Nylander (sv)

  Translators

	* Ivar Smolin (et)
	* Gabor Kelemen (hu)
	* Artur Flinta (pl)
	* Maxim Dziumanenko (uk)
	* Funda Wang (zh_CN)

===============
Version 2.15.91
===============

  Fixes

	* Use a useful icon theme in gnome_desktop_item_find_icon() when no
	  icon theme is passed as argument so we get results (Vincent)

  Doc

	* Start migrating documentation to gnome-user-docs (Joachim Noreiko)

  Doc Translations

	* Francisco Javier F. Serrador (es)

  Translators

	* Runa Bhattacharjee (bn_IN)
	* Iñaki Larrañaga Murgoitio (eu)
	* Christophe Merlet (RedFox) (fr)
	* Arangel Angov (mk)
	* Ani Peter (ml)
	* Marcel Telka (sk)

===============
Version 2.15.90
===============

  Translators

	* Vladimir "Kaladan" Petkov (bg)
	* Francisco Javier F. Serrador (es)
	* Christophe Merlet (RedFox) (fr)
	* Daniel Nylander (sv)

==============
Version 2.15.4
==============

  Fixes

	* Set GNOME_PARAM_APP_DATADIR in test application (Christian Persch)
	* Save some memory in gnome-about (Priit Laes)

  Doc

	* Update example of application not hosted in GNOME Bugzilla
	  (Joachim Noreiko)

  Doc Translations

	* Daniel Nylander (sv)
	* Salihov Timur (ru)

  Translators

	* Taneem Ahmed (bn_IN)
	* Jakub Friedl (cs)
	* Mindu Dorji (dz)
	* Priit Laes (et)
	* Iñaki Larrañaga Murgoitio (eu)
	* Ilkka Tuohela (fi)
	* Christophe Merlet (RedFox) (fr)
	* Takeshi AIHANA (ja)
	* Young-Ho Cha (ko)
	* Rahul Bhalerao (mr)
	* Kjartan Maraas (nb)
	* Simos Xenitellis (ne)
	* Hariram Pansari (or)
	* Theppitak Karoonboonyanan (th)
	* Zack Ajmal (ur)
	* Pablo Saratxaga (wa)
	* Abel Cheung (zh_HK)

==============
Version 2.15.2
==============

  Misc

	* Require intltool 0.35.0

  Doc Translations

	* Francisco Javier F. Serrador (es)

  Translators

	* Francisco Javier F. Serrador (es)
	* Hariram Pansari (or)

==============
Version 2.15.1
==============

  Fixes

	* Make URI canonical before using them (Vincent)
	* Remember the added locales in GnomeDitemEdit (Vincent)
	* Sort locales list in GnomeDitemEdit (Vincent)
	* Make sure that there is a Name/Comment/etc. for C locale when
	  generating a .desktop file (Vincent)
	* Use gdk_x11_display_get_user_time() to get the launch time (Vincent)
	* Don't crash when launching a desktop file without specifying a screen
	  (Vincent)
	* Try to locate files in the app prefix and not in the system prefix
	  for gnome-about (Christian Persch)
	* Put back workaround that fixes uglyness in gnome-about (Vincent)

  Misc

	* Generate API documentation (Vincent)
	* Add GTK to the categories of gnome-about.desktop (Vincent)
	* Require GTK+ >= 2.8.0 (Vincent)
	* Use po/LINGUAS and require newer intltool (Brian Pepple)

  Documentation

	* Replace entities with UTF-8 (Shaun McCance)
	* Updated URLs and emails in the gnome-feedback document
	  (Joachim Noreiko)

  Doc Translations

	* Francisco Javier F. Serrador (es)
	* Maxim Dziumanenko (uk)

  Translators

	* Oublieuse (br)
	* Jordi Mallach (ca)
	* Gareth Bowker (cy)
	* Pema Geyleg (dz)
	* Kostas Papadimas (el)
	* Francisco Javier F. Serrador (es)
	* Ivar Smolin (et)
	* Ilkka Tuohela (fi)
	* Ignacio Casal Quinteiro (gl)
	* Ankit Patel (gu)
	* Thierry Randrianiriana (mg)
	* Tino Meinen (nl)
	* Kjartan Maraas (no)
	* Clytie Siddall (vi)

==============
Version 2.14.0
==============

  Fixes

	* Don't use a GtkEntry function on a GnomeFileEntry (Vincent)

  Translators

	* Ales Nyakhaychyk (be)
	* Jérémy Le Floc'h (br)
	* Petr Tomeš (cs)
	* Martin Willemoes Hansen (da)
	* Raivis Dejus (lv)
	* Åsmund Skjæveland (nn)

===============
Version 2.13.92
===============

  Misc

	* Report the correct version number in gnome-about --version
	  (Glynn Foster)

  Documentation

	* Added a description for gnome-feedback (Brent Smith)

  Doc Translations

	* Luca Ferretti (it)

  Translators

	* Jakub Friedl (cs)
	* Farzaneh Sarafraz (fa)
	* Vladimer SIchinava (ka)
	* Raivis Dejus (lv)
	* Licio Fernando Nascimento da Fonseca (pt_BR)

===============
Version 2.13.91
===============

  Doc Translations

	* Francisco Javier F. Serrador (es)

===============
Version 2.13.90
===============

  Fixes

	* Fix crash when no icon file can be found for the .desktop file
	  (Vincent)

  Doc Translations

	* Christophe Bliard (fr)

  Translators

	* Luca Ferretti (it)

===============
Version 2.13.4
===============

  Misc

	* Fix .desktop file (Vincent Untz)

===============
Version 2.13.3
===============

  Misc

	* Fix warnings (Kjartan Maraas)

===============
Version 2.13.2
===============

  Misc

	* Fix build on Darwin (Mark)

  Translators

	* Erdal Ronahi (ku)
	* Timur Jamakeev (ky)

===============
Version 2.13.1
===============

  Misc

	* Remove scrollkeeper hack (Vincent)

  Translators

	* Tino Meinen (nl)
	* Christian Rose (sv)
	* Clytie Siddall (vi)

===============
Version 2.12.0
===============

  Translators

	* Vladimir "Kaladan" Petkov (bg)
	* Jordi Mallach (ca)
	* Gareth Bowker (cy)
	* Hendrik Richter (de)
	* Francisco Javier F. Serrador (es)
	* Christophe Merlet (RedFox) (fr)
	* Gabor Kelemen (hu)
	* Norayr Chilingaryan (hy)
	* Takeshi AIHANA (ja)
	* Young-Ho Cha (ko)
	* Erdal Ronahi (ku)
	* Žygimantas Beručka (lt)
	* Leonid Kanter (ru)
	* Elian Myftiu (sq)
	* Данило Шеган (sr)

===============
Version 2.11.92
===============

  Docs Translations

	* Tommi Vainikainen (fi)

  Translators

	* Ankit Patel (gu)
	* Gabor Kelemen (hu)
	* Mohammad DAMT (id)
	* Kjartan Maraas (nb, no)
	* Gnome PL Team (pl)
	* Evandro Fernandes Giovanini (pt_BR)
	* Duarte Loreto (pt)
	* Dan Damian (ro)
	* Marcel Telka (sk)
	* Prajasakti Localisation Team (te)
	* Gheyret T.Kenji (ug)
	* Maxim Dziumanenko (uk)
	* Wang Jian (zh_CN)
	* Abel Cheung (zh_TW)

===============
Version 2.11.90
===============

  Misc

	* Use gnome-doc-utils for building the help docs (Vincent Untz)
	* Use GtkIconTheme for gnome_icon_theme_(find|get)_icon (Christian Persch, Mark)
	* Use trademarked GNOME logo in gnome-about (Luca Cavalli)

  Translators

	* Miloslav Trmac (cs)
	* Adam Weinberger (en_CA)
	* Francisco Javier F. Serrador (es)
	* Ivar Smolin (et)
	* Ilkka Tuohela (fi)
	* Kjartan Maraas (nb, no)
	* Tino Meinen (nl)
	* Paisa Seeluangsawat (th)
	* Clytie Siddall (vi)

==============
Version 2.11.5
==============

  Misc

	* Fix leak (Kjartan Maraas)

  Translators

	* Данило Шеган (sr)

==============
Version 2.11.4
==============

  Misc

	* Fix leak (Kjartan Maraas)

  Translators

	* Martin Willemoes Hansen (da)
	* "Francisco Javier F. Serrador" (es)
	* Marcel Telka (sk)
	* Abel Cheung (zh_TW)

==============
Version 2.11.3
==============

  Translators

	* Ales Nyakhaychyk (be)
	* Adam Weinberger (en_CA)
	* Francisco Javier F. Serrador (es)
	* Ivar Smolin (et)
	* Iñaki Larrañaga (eu)
	* Lilit Azizbekyan (hy)
	* Takeshi AIHANA (ja)
	* Kjartan Maraas (nb)
	* Kjartan Maraas (no)
	* Elian Myftiu (sq)
	* Paisa Seeluangsawat (th)

==============
Version 2.11.1
==============

  Misc

	* Add gnome_desktop_item_new_from_basename() API (Dennis Cranston)
	* Fix i18n inialization in GnomeDesktopItem (Frederic Crozat)

  Translators

	* Vladimir \"Kaladan\" Petkov (bg)
	* Miloslav Trmac (cs)
	* Iñaki Larrañaga (eu)
	* Ankit Patel (gu)
	* Tino Meinen (nl)

==============
Version 2.10.1
==============

  Misc

	* Re-start credits in gnome-about when finished (praveen, Mark)
	* Initialize i18n in gnome-ditem-edit (Young-Ho Cha)
	* Use g_get_language_names() instead of gnome_i18n_get_language_list (Ryan Lortie)

  Translators

	* Adam Weinberger (en_CA)
	* Steve Murphy (rw)

==============
Version 2.10.0
==============

  Translators

	* Gabor Kelemen (hu)
	* Luca Ferretti (it)
	* Žygimantas Beručka (lt)
	* Dan Damian (ro)
	* Leonid Kanter (ru)
	* Данило Шеган (sr)
	* Canonical Ltd (xh)
	* Abel Cheung (zh_TW)

==============
Version 2.9.92
==============

  Misc

	* Remove icons that are in gnome-icon-theme

  Translators

	* Vladimir "Kaladan" Petkov (bg)
	* Martin Willemoes Hansen (da)
	* Christophe Merlet (RedFox) (fr)
	* Ankit Patel (gu)
	* Changwoo Ryu (ko)
	* Kjartan Maraas (nb)
	* Kjartan Maraas (no)
	* Gnome PL Team (pl)
	* Evandro Fernandes Giovanini (pt_BR)
	* Paisa Seeluangsawat (th)
	* Baris Cicek (tr)
	* Maxim Dziumanenko (uk)
	* Canonical Ltd (xh)

==============
Version 2.9.91
==============

  libgnome-desktop

	* New gnome_desktop_item_set_launch_time() API (Elijah Newren, Mark)

  Translators

	* Jordi Mallach (ca)
	* Nikos Charonitakis (el)
	* David Lodge (en_GB)
	* Ivar Smolin (et)
	* Pauli Virtanen (fi)
	* Gil Osher (he)
	* Žygimantas Beručka (lt)
	* Duarte Loreto (pt)
	* Elian Myftiu (sq)

================
Version 2.9.90.1
================

  Misc

	* update LT_VERSION
	* update GNOME version

==============
Version 2.9.90
==============

  Translators

	* Vladimir "Kaladan" Petkov (bg)
	* Telsa Gwynne (cy)
	* Frank Arnold (de)
	* Francisco Javier F. Serrador (es)
	* Priit Laes (et)
	* Takeshi AIHANA (ja)
	* Tino Meinen (nl)
	* Åsmund Skjæveland (nn)
	* Marcel Telka (sk)
	* Elian Myftiu (sq)
	* Christian Rose (sv)

=============
Version 2.9.4
=============

  Misc

	* Add .desktop file for gnome-about (Vincent Untz)
	* Fix compiler warning (Kjartan)
	* distcheck fixing (Mark)

  libgnome-desktop

	* Don't append invalid URIs to command line when launching (Vijaykumar Patwari)

  Translators

	* Miloslav Trmac (cs)
	* Adam Weinberger (en_CA)
	* Žygimantas Beručka (lt)
	* Kjartan Maraas (nb)
	* Kjartan Maraas (no)
	* Christian Rose (sv)

=============
Version 2.9.3
=============

  Translators

	* Zuza Software Foundation (nso)
	* Zuza Software Foundation (zu)

=============
Version 2.9.2
=============

  Misc

	* move some icons in gnome-applets & gnome-icon-theme (David Madeley, Mark)
	* move data files for the menus to gnome-menus (Mark)
	* don't use some deprecated functions (Vincent)

  Translators

	* Meelad Zakaria (fa)
	* Zuza Software Foundation (nso)

=============
Version 2.8.1
=============

  Fixes

	* Make %k in .desktop files work again (Brian Ryner)
	* Use automake 1.7 (James Henstridge)
	* New icons (Jakub Steiner, James Ogley)

  Translators

	* Wang Jian (zh_CN)

=============
Version 2.8.0
=============

  Translators

	* Mətin Əmirov (az)
	* Amila Akagić (bs)
	* Adam Weinberger (en_CA)
	* Jesús Bravo Álvarez (gl)
	* Gabor Kelemen (hu)
	* Takeshi AIHANA (ja)
	* Mişu Moldovan (ro)

==============
Version 2.7.92
==============

  Fixes

	* Change link in gnome-about from gnomedesktop.org to news.gnome.org (Alan Horkan)

  Translators

	* Kemal Sanjta (bs)
	* Jordi Mallach (ca)
	* Pauli Virtanen (fi)
	* Kjartan Maraas (nb)
	* Elian Myftiu (sq)
	* Maxim Dziumanenko (uk)

==============
Version 2.7.91
==============

  Fixes

	* Fix memory leak (Mark)
	* Fix crash with some .desktop files (Vincent Untz)
	* Fix compilation without startup-notification (Mariano Suárez-Alvarez)

==============
Version 2.7.90
==============

  Fixes

	* Randomize the order of the credits in gnome-about (Matthew Garrett)
	* Fix end of list corruption in gnome-about (Matthew Garrett)

  Translators

	* Elian Myftiu (sq)
	* Abayomi Mobolaji Onibudo (yo)

=============
Version 2.7.4
=============

  Fixes

	* Use the correct X timestamp with startup-notification (Elijah Newren, Mark)
	* Remove egg_spawn usage from libgnome-desktop (Mark)
	* Fix DTD validation errors in omf files (Frederic Crozat, Mariano Suárez-Alvarez)

  Translators

	* Peter "Peshka" Slavov (bg)
	* Pawan Chitrakar (ne)
	* Laurent Dhima (sq)

=============
Version 2.7.3
=============

  Translators

	* Suman Raj Tiwari (ne)
	* Elian Myftiu (sq)

=============
Version 2.7.1
=============

  Fixes

	* Make the languages list in .desktop editor use GTK_SHADOW_IN (Jorn Baayen)

  Help Docs

	* Basque documentation translations (Pablo Saratxaga)

  Translators

	* Žygimantas Beručka (lt)
	* Gurban Mühemmet Tewekgeli (tk)

=============
Version 2.6.1
=============

  Translators

	* Hizkuntza Politikarako Sailburuordetza (eu)
	* Guntupalli Karunaka (gu)
	* Laszlo Dvornik (hu)
	* Mohammad DAMT (id)
	* John C Barstow (mi)
	* Tino Meinen (nl)
	* Kjartan Maraas (no)
	* Baris Cicek (tr)

===============
Version 2.6.0.1
===============

  Fixes

	* Fix some memory corruption in gnome-about (Kjartan)
	* Dist the .directory.in files instead of the .directory files (Glynn)

  Translators

	* Zuza Software Foundation (af)

=============
Version 2.6.0
=============

  Translators

	* Gareth Owen (en_GB)

==============
Version 2.5.92
==============

  Translations

	* Sayed Jaffer Al-Mosawi (ar)
	* Peter \"Peshka\" Slavov (bg)
	* Alexander Winston (en_CA)
	* Elian Myftiu (sq)
	* Danilo Segan (sr)
	* Gurban Mohemmet Tewekgeli (tk)
	* Maxim Dziumanenko (uk)

==============
Version 2.5.91
==============

  libgnome-desktop

	* Fix issue where dragging a file from an nfs mounted dir onto
	  a launcher wouldn't work (Mark)
	* Make the launcher editor use GtkFileChooser (Brian Skahan)

  Misc

	* Don't depend on strptime (Mark)
	* Check for scrollkeeper in configure (Mark)
	* Fixup OMF files to validate with latest scrollkeeper (Mark)

  Translations

	* Laszlo Dvornik (hu)
	* Luca Ferretti (it)
	* Amanpreet Singh Alam (pa)
	* Duarte Loreto (pt)
	* Elian Myftiu (sq)
	* Dinesh Nadarajah (ta)
	* Paisa Seeluangsawat (th)

==============
Version 2.5.90
==============

  Misc

	* Allow build against an uninstalled build (Laszlo Peter)

=============
Version 2.5.5
=============

  Misc

	* Use the new applications icon for the Applications menu (Mark)

=============
Version 2.5.4
=============

  About Dialog

	* Set intro text as non-editable (Fernando Herrera)
	* Plug some leaks (Kjartan Maraas)

  libgnome-desktop

	* Include correct i18n header to fix warnings (The Written Word)

  Misc

	* Use the common docs build system (Malcolm Tredinnick)
	* Small configure.in cleanup (Tomasz Kłoczko)
	* Fix underquoted AM_PATH_ESD issue (Alexander Winston)
	* Don't included generated .desktop files in tarball (Mark)
	* Distcheck fix (Mark)

  Translators

	* Christophe Merlet (RedFox) (fr)
	* Kjartan Maraas (no)
	* Miloslav Trmac (cs)

=============
Version 2.5.3
=============

  About Dialog

	* Update the "Contact" link (Alex Duggan)

  Misc

	* FDL/GPL/LGPL docs updates (Eric Baudais)

  Translators 

	* Dmitry G. Mastrukov (ru)

=============
Version 2.5.2
=============

  libgnome-desktop

	* Handle g_filename_from_utf8() failure (Dennis Cranston)

  Translators

	* Danilo Segan (sr)
	* Kjartan Maraas (no)
	* Kostas Papadimas (el)

=============
Version 2.5.1
=============

  libgnome-desktop

	* Remove unnecessary accessibility code (Padraig)
	* Use the correct mnemonic widget for the command entry (Padraig)

  Misc

	* Add a --enable-deprecations build flag (Mark)

  Translators

	Abel Cheung (zh_TW)
	G Karunakar (hi)
	Jordi Mallach (ca)
	Ole Laursen (da)
	Sanlig Badral (mn)

===============
Version 2.4.1.1
===============

  libgnome-desktop

	* Make the localte keystring matching with the desktop entry
	  specification by not removing the modifier from the
	  localestring before matching (Danilo Segan)

=============
Version 2.4.1
=============

  Misc

	* Mark a missing string for translation (Hidetoshi Tajima)
	* Fix build issue with install location of icons (George)
	* Use GRandom instead of srandom() and random() (George)

  Translators

	Alessio Frusciante (it)
	Andras Timar (hu)
	Åsmund Skjæveland (nn, no)
	Francisco Javier F. Serrador (es)
	Francis Tyers (br)
	Gil 'Dolfin' Osher (he)
	Görkem Çetin (tr)
	Jitendra Shah (mr)
	Priit Laes (et)
	Yuriy Syrota (uk)
	Žygimantas Beručka (lt)

=============
Version 2.4.0
=============

  gnome-about

	* Fix off by one error with the build date (Young-Ho Cha)

  Translators

	Arangel Angov (mk)
	G Karunakar (hi)
	Gnome PL Team (pl)
	Joël Brich (eo)
	Mugurel Tudor (ro)
	Pablo Saratxaga (wa)
	Stanislav Visnovsky (sk)
	Takeshi AIHANA (ja)
	Trinh Minh Thanh (vi)

==============
Version 2.3.90
==============

  Translators

	Alessio Frusciante (it)
	Dafydd Harries (cy)
	Francisco Javier F. Serrador (es)
	Samuel Jon Gunnarsson (is)
	Takeshi AIHANA (ja)
	Taneem Ahmed (bn)
	Tino Meinen (nl)

=============
Version 2.3.7
=============

  Translators

	Ales Nyakhaychyk (be)
	Changwoo Ryu (ko)
	Christophe Merlet (RedFox) (fr)
	Dmitry G. Mastrukov (ru)
	Duarte Loreto (pt)
	Francisco Javier F. Serrador (es)
	Gnome PL Team (pl)
	Görkem Çetin (tr)
	Jordi Mallach (ca)
	Kjartan Maraas (no)
	Mətin Əmirov (az)
	Nikos Charonitakis (el)
	Paisa Seeluangsawat (th)
	Pauli Virtanen (fi)
	Samuel Jon Gunnarsson (is)
	Suman Raj Tiwari (ne)
	Tino Meinen (nl)
	Tõivo Leedjärv (et)

===============
Version 2.3.6.1
===============

  gnome-about

	+ Clean up introductory text (Luis Villa)

  Translators

	Ales Nyakhaychyk (be)
	Christian Neumair (de)
	Christian Rose (sv)
	Dafydd Harries (cy)
	Danilo Segan (sr)
	Duarte Loreto (pt)
	Evandro Fernandes Giovanini (pt_BR)
	G Karunakar (hi)
	Gnome PL Team (pl)
	Hasbullah Bin Pit (ms)
	Laurent Dhima (sq)
	Miloslav Trmac (cs)
	Mətin Əmirov (az)
	Ole Laursen (da)
	Takeshi AIHANA (ja)
	Tino Meinen (nl)
	Wang Jian (zh_CN)

=============
Version 2.3.6
=============

  gnome-about

	+ Internalionalize gnome-version.xml so that the descriptive
	  intro and date  can be translated (Malcolm Tredinnick)
	+ Handle errors when clicking on links (Olav Vitters)

  Misc

	+ Follow KDE behaviour when substituting %i, %m, %c and %k
	  in .desktop files (George)
	+ Allow custom icons with the same name as a themed icon to
	  be selected in GnomeDitemEdit (George)
	+ Build fix (Thomas Vander Stichele)

  Translators

	Ales Nyakhaychyk (be)
	Alessio Frusciante (it)
	Changwoo Ryu (ko)
	Christian Neumair (de)
	Christian Rose (sv)
	Christophe Fergeau (fr)
	Dafydd Harries (cy)
	Danilo Segan (sr)
	Duarte Loreto (pt)
	Evandro Fernandes Giovanini (pt_BR)
	Gil 'Dolfin' Osher (he)
	Gnome PL Team (pl)
	Jordi Mallach (ca)
	Kostas Papadimas (el)
	Miloslav Trmac (cs)
	Pablo G. del Campo (es)
	Tino Meinen (nl)
	Wang Jian (zh_CN)

=============
Version 2.3.4
=============

  Misc

	* Allow vendor and date to be configured using configure (Frederic Crozat)
	* Ship the .directory.in files in the distributed tarball (Mark)

  Translators

	Abel Cheung (zh_TW)
	Dafydd Harries (cy)
	Danilo Segan (sr)
	Dmitry G. Mastrukov (ru)
	Emese Kovacs (hu)
	Evandro Fernandes Giovanini (pt_BR)
	Francisco Javier F. Serrador (es)
	Marius Andreiana (ro)
	Mətin Əmirov (az)
	Pablo Saratxaga (wa)
	Vincent van Adrighem (nl)

===============
Version 2.3.3.1
===============

  Misc

	* Added a default desktop background image (Mark Finlay)
	* Removed icons which belong to gnome-control-center (Mark Finlay)
	* Use macros in gnome-version.xml so we have the correct version
	  number (Andrew Sebola)
	* Renamed "Sound & Video" to "Multimedia (Mark)
	* Use different icon for the "Other" menu (Mark)
	* Fix issues with backwards compat with old icon names (Mark Finlay)
	* Fix gnome-about build with gcc 2.95 (Mark)
	* HIG fixes for .desktop file editing dialog (Dennis Cranston)

  Translators

	* Abel Cheung (zh_TW), Christian Neumair (de), Christian Rose (sv),
	  Christophe Merlet (RedFox) (fr), Christopher R. Gabriel (it),
	  Dafydd Harries (cy), Dmitry G. Mastrukov (ru), Gil 'Dolfin' Osher (he),
	  Gnome PL Team (pl), Görkem Çetin (tr), Hasbullah Bin Pit (ms),
	  Jordi Mallach (ca), Juan Manuel García Molina (es), Kjartan Maraas (no),
	  Miloslav Trmac (cs), Ole Laursen (da), Paul Duffy (ga), 
	  Samuel Jon Gunnarsson (is) and Vincent van Adrighem (nl).

=============
Version 2.3.3
=============

	* New GNOME About Dialog ! (Kristian Rietveld,
	                            Mark McLoughlin,
	                            Glynn Foster,
	                            Jeff Waugh)

Misc
	* Moved some icons to gnome-icon-theme (Mark Finlay)
	* Change icon for Accessories, Games and Programming menus (Mark Finlay)

Translators

	* Christian Rose (sv.po), Dafydd Harries (cy.po), Dinesh Nadarajah (ta.po),
	  Dmitry G. Mastrukov (ru.po), Jordi Mallach (ca.po), Mathieu van Woerkom (li.po)
	  and Paul Duffy (ga.po).

=============
Version 2.3.2
=============

gnome-about

	* Hexify contributors list so it doesn't need to be translated and
	  make a format string much easier to translate (Christian Neumair )

Misc
	* Removed gnome-panel icons (Mark)
	* Removed gnome-games icons (Luca Ferretti)
	* Cygwin fixes (Masahiro Sakai)
	* Fix sgmldocs.make (Art Haas)

Translators

	* Abel Cheung (zh_TW), Christian Rose (sv), Christophe Merlet (fr),
	  Dafydd Harries  (cy), Danilo Šegan  (sr, sq@Latn), Duarte Loreto (pt),
	  Elian Myftiu (sq), Hasbullah Bin Pit (ms), KAMAGASAKO Masatoshi (ja),
	  Miloslav Trmac (cs), Ole Laursen (da), Paul Duffy (ga) and
	  Vincent van Adrighem (nl).

=============
Version 2.3.1
=============

	* s/Vendor/Distributor (Mike Newman)

Translations

	* ga(Paul Duffy), ms(Hasbullah Bin Pit), yi(Raphael Finkel)

=============
Version 2.3.0
=============

Translations

	*  ga(Paul Duffy) and ml(FSF-India).

=============
Version 2.2.2
=============

libgnome-desktop

	* Don't unescape special characteres (e.g. %20) (Bala)

Translations

	* Belarusian team (be), Danilo Šegan (sr), Guntupalli Karunakar (hi),
	Fatih Demir (ta), FSF-India (ml), Paul Duffy (ga) and Raphael Finkel (yi).

=============
Version 2.2.1
=============

libgnome-desktop

	* Fix issue with gettext (Frederic Crozat)
	* Don't crash when adding translations to a new Ditem (Arvind)
	* Remove mime type checking from .desktop file loader (Andrew Sobala)
	* Fix memory corruption when DESKTOP_STARTUP_ID is already set (fourdan@xfce.org)
	* Fix silly bug in the option menu of the Ditem edit dialog (Kalle Olavi Niemitalo)

Miscellanous

	* Update the "Reporting Bugs" docs (Alexander Kirillov)
	* Build fix (Dan Mills)
	* New screenshot icon (Jakub Steiner)

Translations

	* Dmitry G. Mastrukov, Joël Brich, Metin Amiroff, Miloslav Trmac,
	  Mohammad DAMT, Paisa Seeluangsawat, Paul Duffy, Pramod, Roozbeh Pournader,
	  Samúel Jón Gunnarsson, Takeshi AIHANA, Taneem Ahmed and
	  Vincent van Adrighem.

===============
Version 2.2.0.1
===============
                                                                                                             
Translations
                                                                                                             
	* Abel Cheung, Alessio Frusciante, Duarte Loreto, Elian Myftiu,
	  Fatih Demir, Sanlig Badral and Tõivo Leedjärv.

=============
Version 2.2.0
=============

	* Fix various issues with startup notification (Havoc)

Translations

	* Alexander Shopov, Anurag Seetha, Christian Neumair,
	  Daniel Yacob, Dmitry G. Mastrukov, Funda Wang, Jordi
	  Mallach, Kostas Papadimas, Pablo Gonzalo del Campo,
	  Tõivo Leedjärv and Young-Ho, Cha.

==============
Version 2.1.90
==============

	* Removed various unused .directory and .order files (Mark)

Translations

	* Abel Cheung, Andras Timar, Artis Trops, Christian Rose,
	  Christophe Merlet, German Poo Caaman~o, Gustavo Noronha
	  Silva, Kjartan Maraas, Miloslav Trmac, Ole Laursen, Pablo
	  Saratxaga, Pauli Virtanen, Stanislav Visnovsky, Tino Meinen
	  and Zbigniew Chyla.

=============
Version 2.1.5
=============

Translations

	* Hasbullah Bin Pit, Christian Neumair, Christophe Merlet, 
	  Ole Laursen, Miloslav Trmac, Pablo Saratxaga and
	  Pauli Virtanen.

=============
Version 2.1.4
=============

libgnome-desktop

	* Make startup notification work (Havoc)
	* Add api for multiscreen dnd launching (Satyajit Kanungo)

GNOME About Dialog

	* Fix crash when gnome-version.xml isn't installed (Mark)

Miscellanous

	* Add links to gnu.org and gnomedesktop.org (Any Tai)
	* Add advanced-directory.png icon (Glynn)

Translations

	* Andras Timar, Kjartan Maraas, Marius Andreiana and
	  Ole Laursen.

=============
Version 2.1.3
=============

libgnome-desktop

	* Add ditem_launch_on_screen() for startup notification (Mark)
	* s/Mime/MIME/ (Mark)

GNOME About Dialog

	* Display GNOME version, vendor and build date (Mark, Mike Newman)
	* Don't mark pango markup for translation (Mark)
	* s/Gnome/GNOME/ (Mark)

Miscellanous

	* New card game icon (Jakub Steine, Ross Burton, Tim Musson)

Translations

	* Christian Neumair, Christian Rose, Christopher R. Gabriel,
	  Hasbullah Bin Pit, Kjartan Maraas and Vincent van Adrighem.

=============
Version 2.1.2
=============

	* Add startup notification support to libgnome-desktop (Havoc)
	* Replaced GNOME logos with the new version (Denis Cranston)

Translations

	* Andras Timar, Dmitry G. Mastrukov, Juan Manuel García Molina and
	  Kjartan Maraas.

=============
Version 2.1.0
=============

	* Move GnomeIconLoader to lignomeui (Alex)
	* Re-install gnome-feedback docs (John Fleck)

Translations

	* Naba Kumar and He Qiangqiang.

=============
Version 2.0.9
=============

        * Build and install the gnome-feedback docs again (John Fleck)
        * Fix small Makefile bug (Mark)

Translations

        * Abel Cheung, Changwoo Ryu, Gil 'Dolfin' Osher, He Qiangqiang,
          Juan Manuel Garcia Molina, Peteris Krisjanis and Stanislav Brabec.

=============
Version 2.0.8
=============

Translations

	* German Poo-Caamaño, Gil 'Dolfin' Osher, He Qiangqiang,
	  Kjartan Maraas and Takayuki KUSANO. 

=============
Version 2.0.7
=============

GNOME About

	* Implement mouse wheel scrolling (Frank Worsley)

Translations

	* Andras Timar, Christian Meyer, Marius Andreiana, Peteris
	  Krisjanis and Vincent van Adrighem.

=============
Version 2.0.6
=============

GnomeIconLoader

	* Don't stat all icons on startup (Mark)
	* Fix #89245, picking an .xpm over a .png (Mark)
	* Also read icons from our installed prefix (Mark)
	* Fix GConfClient leaks (Mark)

Translations

	* Simos Xenitellis and Tõivo Leedjärv.

=============
Version 2.0.5
=============

GnomeDesktopItem

	* Fixed referencing a bogus file handle (Michael)

Translations

	* Duarte Loreto.

=============
Version 2.0.4
=============

GnomeDesktopItem

	* Truncate .desktop file after opening (George)
	* Remove numeric canonization (George)
	* Add APPEND_PATHS flag (Frank Worsley)

Miscellanous

	* Sort out libtool versioning (Mark)

Translations

	* Yanko Kaneti, Pablo Saratxaga and Pauli Virtanen.

=============
Version 2.0.3
=============

GnomeDesktopItem

	* Appending URIs to Exec field fixes (Frank Worsley)
	* Allow the specification of environment for launching (Mark)
	* Use X-GNOME-DocPath instead of DocPath (Glynn)
	* Follow symlinks when opening .desktop files (Jacob)
	* Smarter type string to enum conversion (Mark)

GnomeDItemEdit

	* Use of GTK_SHADOW_IN for consistency (Jorn Baayen)
	* Correctly set the history on the 'Type' option menu (Arvind)
	* Correctly keep main page in sync with locale editing (Frank Worsley)

Miscellanous

	* Add comment for Accessories menu (Arvind)
	* Warnings fixes (Mark)

Translations

	* Carlos Perello Marin, Changwoo Ryu, Christian Rose, Christophe Fergeau,
	  Daniel Yacob, Dmitry G. Mastrukov, Hasbullah Bin Pit, Jordi Mallach,
	  Kjartan Maraas, Manuel Borchers, Ole Laursen, Pablo Saratxaga, Peteris
	  Krisjanis, Stanislav Visnovsky and Zbigniew Chyla.

=============
Version 2.0.2
=============

	* New GNOME foot icon (Jakub Steiner and Tuomas Kuosmanen)

=============
Version 2.0.1
=============

	* Avoid using freed memory (Jody Goldberg)
	* Use correct install location for message catalogs (Hidetoshi Tajima)

Translations

	* Carlos Perello Marin, Changwoo Ryu, Hasbullah Bin Pit, Pablo
	  Saratxaga, Pauli Virtanen, Takayuki KUSANO and Yanko Kaneti.

=============
Version 2.0.0
=============

Translations

	* Carlos Perelló Marín, Christophe Merlet, Tõivo Leedjärv and
	  Vincent van Adrighem.

==============
Version 1.5.22
==============

libgnome-desktop

	* Make translations in GnomeDitemEdit work (Frank Worsley)

Translations

	* Carlos Perelló Marín, Christian Rose, Duarte Loreto, George
	  Lebl, Jesus Bravo Alvarez, Jordi Mallach and Tõivo Leedjärv. 

==============
Version 1.5.21
==============

libgnome-desktop

	* Much IconLoader work and DesktopItem integration (Alex)
	* Fix translating wrong strings (George)
	* GnomeDesktopItem fixes (Frank Worsley)

Misc

	* XML GNOME version file (Sander)
	* Add new calculator icon (Jakub Steiner, Glynn)
	* Make gnome-about look for contributors in DATADIR (Bastien)

Translations

	* Abel Cheung, Dmitry G. Mastrukov, Fatih Demir, George Lebl,
	  Kjartan Maraas, Ole Laursen, Pauli Virtanen,
	  Stanislav Visnovsky and Zbigniew Chyla

==============
Version 1.5.20
==============

	* New apis and fixes in icon loader (Alex)
	* New screen shot icon (Jimmac, Seth)

Translations

	* Abel Cheung, Naba Kumar, Pauli Virtanen, Shooby Ban
	  and Vlad Harchev.

==============
Version 1.5.19
==============

libgnome-desktop

	* implementation of the new icon spec (Alex)
	* i18n fix (Toschi)

gnome-about

	* accessibility fixes (Deepa)
misc

	* change gnome-sound icon (Seth)

Translations 

	* Stanislav Visnovsky, Ole Laursen, Zbigniew Chyla, Gediminas Paulauskas,
	  Kjartan Maraas, Changwoo Ryu, Gustavo Maciel Dias Vieira, Christophe Fergeau
	  Hasbullah Bin Pit, Duarte Loreto, Takayuki KUSANO

==============
Version 1.5.18
==============

Translations 

	* Vincent van Adrighem, Kjartan Maraas, Ilmar Kerm, Benedikt Roth,
	  Pauli Virtanen, Pablo Saratxaga, Abel Cheung, Pablo Saratxaga.


==============
Version 1.5.17
==============

libgnome-desktop

	* Change 'Type' combo box to an option menu (George)
	* Temporarily ignore '%m' and '%i' to KDE .desktops work (George)
	* Expand parameters before parse to handle quoting (George)

misc
	* gnome-about accessibility patch (Deepa Natarajan)
	* Add starfield effect to gnome-about (Stephen)
	* Fix cde icon installation (Mark)
	* Update library requirements (Mark)

Translations

	* Changwoo Ryu, Christophe Merlet, Hasbullah Bin Pit, Pauli Virtanen,
	  Takayuki KUSANO and Zbigniew Chyla.

==============
Version 1.5.16
==============

libgnome-desktop

	* Make the 'Command' entry browsable (George)
	* Some URL based .desktop editing fixes (George)
	* Fix translations not being displayed (Kjartan)
	
misc

	* Change preferences menu to 'Desktop Preferences' (Seth)
	* Add pixmap for CDE menus (Stephen Browne)
	* fix xmldocs.make (Mark)

Translations

	* Abel Cheung, Changwoo Ryu, Christian Rose, Christophe Merlet,
	  Gustavo Maciel Dias Vieira, Hasbullah Bin Pit, Ole Laursen,
	  Pauli Virtanen, Stanislav Visnovsky, Tõivo Leedjärv,
	  Valek Filippov and Zbigniew Chyla.

==============
Version 1.5.15
==============

gnome-about

	* Port to pango (Mark)
	* Redo the scrolling effect (Mark)
	* Use the font from the widget style (Deepa natarajan)

libgnome-desktop

	* Get Exec args working (Mark)
	* Add GenericName .desktop key (George)
	* Ui tweaks and fixes (George)
	* Re-work the advanced DitemEdit page (Mark)

Translations

	* Changwoo Ryu, Duarte Loreto, Hasbullah Bin Pit,
	  Kjartan Maraas, Tõivo Leedjärv and Zbigniew Chyla

==============
Version 1.5.14
==============

	* Fix infinite loop in gnome_desktop_item_set_location_file (Diego González)
	* Fix weird rendering bug and core dump in gnome-about (Mark)
	* Set default response in gnome-about (Deepa)

Translations

	* Changwoo Ryu, Ole Laursen, Pauli Virtanen, Takayuki KUSANO,
	  Tõivo Leedjärv and Valek Filippov.

==============
Version 1.5.13
==============

libgnome-desktop

	* Null key chomping fix (Richard Hestilow)
	* Tooltips and atk relation patch (Jayaraj Rajappan)

Misc

	* New spec file (Chris Chabot)
	* Add GNOME desktop version file (Glynn)

Translations

	* Changwoo Ryu, Christian Meyer, Duarte Loreto, Hasbullah Bin
	  Pit, Kjartan Maraas, Roy-Magne Mo, Stanislav Visnovsky,
	  Szabolcs Ban, Valek Filippov, Wang Jian and Zbigniew Chyla

==============
Version 1.5.12
==============

libgnome-desktop

	* Fix warnings (Mark)
	* Setup some a test for ditem-edit (Mark)
	* Cleanup, fix bugs and fix ditem-edit treeview (Mark)
	* Chomp trailing spaces from .desktop entries (Darin)

Misc

	* Build everything with WARN_CFLAGS (Mark)

Translations

	* Christian Meyer, Stanislav Visnovsky, Zbigniew Chyla,
	Fatih Demir, Ole Laursen, Pauli Virtanen, Tõivo Leedjärv,
	Kjartan Maraas and Christopher R. Gabriel.

==============
Version 1.5.11
==============

libgnome-desktop

	* impl gnome_desktop_item_new_from_string + cleanups (Darin)
	* create ditem-edit treeview correctly (Mark)

gnome-about

	* fix keynav bug (Mark)
	* remove unneeded gettext calls (Kjartan)
	* kill deprecated calls (Deepa Chacko Pillai)
	* kill redundant casts (Mark)

Misc

	* remove all .desktop files (Seth)
	* remove irrelevant manpages (Mark)
	* POTFILES.in fix (Jacob)

Translations

	* Valek Filippov, Zbigniew Chyla, Christian Rose,
	  Vincent van Adrighem, Hasbullah Bin Pit, and Wang Jian.

==============
Version 1.5.10
==============

	* deprecated method removal (Nitin Madhukar Yewale)
	* ditem editor usability fix (Shivram U)

Translations

	* Takayuki KUSANO, Tõivo Leedjärv and Christophe Merlet.

=============
Version 1.5.9
=============

	* split from gnome-desktop from gnome-core (Mark)

=============
Version 1.5.8
=============

Panel
	* Plug an atrocious amount of leaks (Mark)
	* Load applets in an idle handler (Mark)
	* Use the correct repository ID for applets (Mark)
	* Use the all the applet moniker items (Mark)
	* Lots more keynav work (Padraig)
	* Menu properties saving to gconf (Mark)
	* Solaris mis-alignment bugfix (Mark)
	* Use bonobo-activation per-display registration (Mark)
	* Menu Panel clock translation fixage (Takayuki KUSANO)
	* Event stretching cleanup (Mark)
	* struts hints fixing (Havoc)
	* Applet saving fixes (Mark)
	* Fix applet popup menu (Richard Hult)
	* Run dialog box fixes (Mark, George)
	* .desktop file charset conversion fix (Gediminas Paulauskas)
	* Lots of menu work (George)
	* remove cruft from Panel idl (Mark)
	* fix build (Jacob)

Panel Applet Library

	* generic applet flags api (Mark)
	* use GConfClient to kill gconf warnings (Mark, Gediminas)
	* allow PanelApplet to be derived from (Mark)
	* item handler for initial size, orient and background (Mark)
	* applet developer's testing utility (Mark)
	* panel_applet_get_background implementation (George, Mark)
	* plug leak (Mark)
	* applet focus (Padraig)
	* shift+F10 applet menu popup (Padraig)
	* kill getExpandFlags idl (Mark)
	* build fix (Jacob)

Applets
	* tasklist and pager prefs dialog button fix (Jorn Baayen)
	* updates for libpanel-applet changes (Mark)
	* initial applets size and orient fixage (George)

Docs
	* tasklist, pager, mailcheck and clock docs (John Fleck)
	* man pages (Christian Marillat, Kjartan)

Misc
	* remove gnome-terminal from build (Mark)
	* .desktop files fixing (Mark)
	* distcheck fixes (Mark)
	* use intltool to translate .desktop files (Gediminas)
	* plug libgnome-desktop leaks (Mark)
	* gsm build fix (Jacob)
	* logout dialog box usability fix (Gediminas)
	* gnome-login-check dns simplification (Mark)
	* include config.h in translatable files (Kjartan)

Translations
	* Gediminas Paulauskas, Duarte Loreto, Kjartan Maraas, Ole Laursen,
	  Pauli Virtanen, Hasbullah Bin Pit, Takayuki KUSANO, Changwoo Ryu
	  and Duarte Loreto.

=============
Version 1.5.7
=============

Applets
        * pager docoumentation setup (John Fleck)
        * applet .directory files removal (Mark)
        * fish about dialog bugfix (Mark)
        * usability re-naming (Seth)
        * desktop file culling and fixing (Seth)


Panel
        * launcher saving bugfixes (Mark)
        * Lots of excellant panel keynav work (Padraig)         
        * make glade/intltool work together (Darin, Mark)
        * make run dialog global key work again (George)
        * authors list update (George)
        * re-enable applet dnd (George)
        * fix build breakage (Glynn)

Misc          
        * ditem error handling improvement (George)
        * gsm 'double delete' bugfix (Kjartan)    

=============
Version 1.5.6
=============

	* rationalise gconf source autoconf check (Mark)
	* workaround deprecated gtk+ enums usage (Mark)

=============
Version 1.5.5
=============

gnome-core/applets -
	* Make time/date centered for Clock applet [Richard]
	* Usability applet renaming [Seth]
	* Misc build fixes [Glynn]

gnome-core/gnome-desktop -
	* Misc fixes [George, Stephen]

gnome-core/icons -
	* 7 new icons! Can you *see* the love? [Seth, Jakub]

gnome-core/libpanel_applet -
	* Misc fixes [Mark]
	* Build fixes [Glynn]           

gnome-core/panel -
	* ButtonWidget now inherits from GtkButton [Padraig]
	* Implement support for popup menus using 'Shift+F10' [Padraig]
	* Remove last trace of tiles like ever [George]
	* Draw focus frame around launchers [George]
	* Implement retrun focus from a child widget using
	  'Ctrl+Tab' [Padraig]
	* Port status and swallow applets to use libwnck [George]     
	* Give panel prelight colour when panel has focus [Padraig]
	* Usability rewording and new icons [Seth]
	* Save the world with sensible context menus [Seth]
	* Fix up default panel schemas [Glynn, Seth]
	* Remove caveat dialog [George]                 
	* Give focus to launcher instead of hidebuttons first [Padraig]                 
	* Lower button displacement [Anders]
	* Fix panel boundaries [George]                 
	* Synchronize panel hints with GNOME 1.4 [Roy-Magne Mo]
	* Implement keyboard move functionality of           
	  ButtonWidget [Padraig]
	* De-sensitize basep widget when hidden [George]
	* Misc fixes [Anders, George, Glynn, Padraig]        
	* Cleanage of severe cruft [George, Padraig]
	* Much panel fear [George]            

gnome-core/docs -
	* We now have documentation! [John]
	* Build fixes [Mark]

gnome-core/po -     
	* Translations [Christian Rose, Hasbullah Bin Pit,  
	  Kjartan Maraas, Marius Andreiana, Peteris Krisjanis,
	  Roy-Magne Mo, Stanislav Visnovsky, Takayuki Kusano]
	* Misc fixes [Glynn]

gnome-core/misc -
	* Build fixes [Glynn]

gnome-core/gnome-terminal -
	* Misc fixes [Owen]
	* Build fixes [Darin]
	* Typographical error [Kjartan]

=============
Version 1.5.4
=============

* Panel:
        + lots of gconf work
                + Session handling proposal (Alex, Glynn, George, others?)
                + profiles (Glynn)
                + default panels/applets (Glynn)
                + panels saving/loading (Glynn)     
                + applets/menus etc. saving/loading (Mark)
                + convience methods (Glynn, Mark)
        + kill gnome-run button applet (Glynn)
        + libart -> gdk-pixbuf for button rendering (Alex)
        + porting properties capplet (Stephen)         
        + new ditem api usage (George)
        + launchers/vfolders work (George, Seth)
        + kill favorites menu (George)           
        + use gtk image menu items (George) 
        + port to libwnck (George)    
        + menu fixage (Anders)
        + removal of deprecated function/widgets (George)
        + Menu work (George)                
        + winhints updates (George, Havoc, Alex, Mark)
        + foobar pixmap scaling (Chris Phelps)
        + foobar clock nicifying (Dennis M. Cranston, George)
        + cruft removal (Mark, George, Glynn)
        + CORBA namespace fixage (Mark)
        + make applet background colors 16 bit (Alex)
        + dialog box fixage (Gediminas Paulauskas)
        + panel side use of applet item handler (Mark)
        + solaris distribution menu (Stephen)
        + screen shooter updates (Anders)   
        + applet stabilty fixes (Anders)
        + gegl invaders ... *cough* (George)
        + panel-widget and button-widget cleanup (Alex)
        + hidebutton keyborad navigation (Padraig O'Briain)
        + applet pixmap background implemenation (Mark)
        + gtk accelerator parsing updates (Alex)

* Panel Applet Library

        + shlib applet macro (Mark)      
        + move to GNOME_Vertigo CORBA namespace (Mark)
        + kill session management (Mark)          
        + make applet background colors 16 bit (Alex)
        + item handler implementation (Mark)
        + runtime schema<->key association for applets prefs (Mark)
        + gconf convienence functions (Mark)
        + gclosurization (George)
        + removal of gnome_program_init (George)
        + applet pixmap bacgrounds (Mark)
        + expose panel_applet_gconf_get_full_key (Alex)

* Applets

        + update for panel-applet api changes (Mark)
        + fish preferences/schema/gconf work (Mark)       
        + clock utf-8 fixage (Richard Hult)      
        + clock + tasklist background (Alex)  
        + mailcheck port (Kevin Valdersloot)              
        + tasklist + pager properties/gconf work (Alex)

* Build:
        + intl dir removal (Gediminas Paulauskas)
        + libwnck dependancy (George, Glynn)
        + libpng check (Anders, Glynn)
        + file renaming (Mark)
        + clean up Glynn's drool (Darin)                 
        + kill -I$(includedir) (Frank Belew)

* Icons
        + time/date icons (Dennis M. Cranston)               
        + hand removal from panel icon (Seth)

* ditem library

        + standard compliance (George)                
        + new api (George)
        + i18n fixage (Gediminas Paulauskas)
        + kde icons (George)             
        + g_spawn fixage (George, Glynn)                    
        + distcheck fixes (Mark, Glynn)                         

* Misc
        + gnome-terminal fixage (Owen)          
        + .directory files work (Seth)
        + gsm gconf work (Richard Hestilow)

* Other Contributors               

        + Miles Lane, Robert Mibus.     

=============
Version 1.5.3
=============

gnome-core/applets -              
	+ New tasklist using libwnck [Alex]
	+ Updates for new API [Mark]
	+ Build fixes [Mark]

gnome-core/gnome-desktop -
	+ GnomeVFS fixes [Alex]
	+ Add pc file [Owen]
	+ Encoding fix [Seth]

gnome-core/gsm -               
	+ Prefer Metacity to Enlightenment [Havoc]
	+ Save world yet again with .gnome2 fixes [Malcolm]
	+ Fix order of initialization [Malcolm]
	+ Use PangoFontDesc with splash screen [Glynn]

gnome-core/panel -
	+ Add getExpandFlags method to IDL [Alex]
	+ Add saveYourself method to IDL [Mark]
	+ Remove/Replaced all AppletShell IDL methods [Mark]

=============
Version 1.5.2
=============

        + new pager applet using libwnck (Alex)
        + .desktop file updates and additions (Seth)          
        + gnome-hint is now a GtkDialog (Anders)         
        + session manager gtk fixes (Owen)               
        + gtk_idle_add -> g_idle_add stackframes saving (Mark)  
        + applet button press propogation bug fix (Alex)                
        + continue switching to new applet design (Mark)
        + schema file rename (Glynn)
        + POTFILES redo (Mark)

=============
Version 1.5.1
=============

	Initial port to GNOME 2.0.