summaryrefslogtreecommitdiff
path: root/NEWS
blob: 3b78c873f6df84c0633a8f027f62273e36536aa7 (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
==============
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.