summaryrefslogtreecommitdiff
path: root/NEWS
blob: d47552be7e12788518abd63ef18b443e2e561edd (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
==============
Version 2.12.0
==============

  Misc

	* New splash screen for GNOME 2.12 (Felix Dietze)

  Translators

	* Bryn Salisbury (cy)
	* Francisco Javier F. Serrador (es)
	* Christophe Merlet (RedFox) (fr)
	* Gabor Kelemen (hu)
	* Norayr Chilingaryan (hy)
	* Mohammad DAMT (id)
	* Žygimantas Beručka (lt)
	* Duarte Loreto (pt)
	* Sebastian Ivan (ro)
	* Leonid Kanter (ru)
	* Baris Cicek (tr)
	* Maxim Dziumanenko (uk)

===============
Version 2.11.91
===============

  Fixes

	* Fix rendering of splash screen text (Ray Strode)
	* Fix RandR support to correctly use host settings (Sebastien Bacher)

  Translators

	* GNOME PL Team (pl)
	* Wang Jian (zh_CN)
	* Woodman Tuen (zh_TW)

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

  Fixes

	* Fix some memory leaks (Aivars Kalvans, Federico)
	* Make the session capplet have a window icon (Jaap A. Haitsma)
	* Don't set deprecated default window manager key in gnome-wm (Mark)

  Misc

	* Remove gnome-smproxy (Mark)
          See: http://mail.gnome.org/archives/desktop-devel-list/2005-July/msg00527.html

  Translators

	* Rostislav "zbrox" Raykov (bg)
	* Martin Willemoes Hansen (da)
	* Hendrik Richter (de)
	* Priit Laes (et)
	* Ilkka Tuohela (fi)
	* Ignacio Casal Quinteiro (gl)
	* Norayr Chilingaryan (hy)
	* Takeshi AIHANA (ja)
	* Kjartan Maraas (nb)
	* Shiva Prasad Pokharel (ne)
	* Kjartan Maraas (no)
	* Marcel Telka (sk)
	* Laurent Dhima (sq)
	* Данило Шеган (sr)
	* Theppitak Karoonboonyanan (th)
	* Clytie Siddall (vi)
	* Woodman Tuen (zh_TW)

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

  Misc

	* Remember the last chosen logout action (Carlos Garnacho Parro)
	* Clean up the ICE code slightly (Iain Holmes)

  Translators

	* Jordi Mallach (ca)
	* Miloslav Trmac (cs)
	* Frank Arnold (de)
	* Kostas Papadimas (el)
	* Adam Weinberger (en_CA)
	* Francisco Javier F. Serrador (es)
	* Priit Laes (et)
	* Elnaz Sarbar (fa)
	* Ankit Patel (gu)
	* Hasbullah Bin Pit (ms)
	* Tino Meinen (nl)
	* Evandro Fernandes Giovanini (pt_BR)
	* Steve Murphy (rw)
	* Baris Cicek (tr)
	* Pablo Saratxaga (wa)

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

  Misc

	* New splash screen (Sami "alump" Viitanen)
        * Improved schemas string (Byran Clark, Kjartan Maraas)

  Translators

	* Vladimir \"Kaladan\" Petkov (bg)
	* Jordi Mallach (ca)
	* Miloslav Trmac (cs)
	* Martin Willemoes Hansen (da)
	* Frank Arnold (de)
	* Kostas Papadimas (el)
	* Adam Weinberger (en_CA)
	* David Lodge (en_GB)
	* Francisco Javier F. Serrador (es)
	* Ivar Smolin (et)
	* Pauli Virtanen (fi)
	* Christophe Merlet (RedFox) (fr)
	* Ankit Patel (gu)
	* Gil Osher (he)
	* Gabor Kelemen (hu)
	* Luca Ferretti (it)
	* Takeshi AIHANA (ja)
	* Changwoo Ryu (ko)
	* Žygimantas Beručka (lt)
	* Kjartan Maraas (nb)
	* Tino Meinen (nl)
	* Åsmund Skjæveland (nn)
	* Kjartan Maraas (no)
	* GNOME PL Team (pl)
	* Evandro Fernandes Giovanini (pt_BR)
	* Duarte Loreto (pt)
	* Mişu Moldovan (ro)
	* Leonid Kanter (ru)
	* Marcel Telka (sk)
	* Laurent Dhima (sq)
	* Данило Шеган (sr)
	* Christian Rose (sv)
	* Theppitak Karoonboonyanan (th)
	* Maxim Dziumanenko (uk)
	* Simon Kemisho (xh)
	* Wang Jian (zh_CN)
	* Woodman Tuen (zh_TW)

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

  Session Manager

	* Use GDM's logout actions protocol to shutdown/reboot (Raffaele Sandrini, Mark)
	* Change "Prompt" to "Ask" in the configuration dialog (Vincent Noel)
	* Fix compiler warnings (Jens Granseuer)
	* Slave the lifecycle of the keyring daemon to the session (Alex Larsson)

  Translators

	* Jordi Mallach (ca)
	* Miloslav Trmac (cs)
	* Adam Weinberger (en_CA)
	* Francisco Javier F. Serrador (es)
	* Kjartan Maraas (nb)
	* Kjartan Maraas (no)
	* Laurent Dhima (sq)
	* Christian Rose (sv)
	* Zuza Software Foundation (zu)

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

  Misc

	* Add X-GNOME-Bugzilla-Version to .desktop file (Christoffer Olsen)
	* Install .desktop file in $(datadir)/applications (Mark)

  Translators

	* Martin Willemoes Hansen (da)
	* Zuza Software Foundation (nso)

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

  Session Manager

	* Don't crash gnome-session-remove if we can't get a program name (Ray Strode)
	* Add a big bunch of debug spew (Federico)
	* Don't leak the splash screen background image (Kjartan)
	* Remove the purge timeout when re-incarnating a client (Federico)

  Misc

	* Use automake 1.7 (James Henstridge)

  Translators

	* Adam Weinberger (en_CA)
	* Changwoo Ryu (ko)

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

  Session Manager

	* New splash screen (Jakub Steiner)

  Translators

	* Miloslav Trmac (cs)
	* Adam Weinberger (en_CA)
	* Priit Laes (et)
	* Jesús Bravo Álvarez (gl)
	* Gabor Kelemen (hu)

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

  Session Manager

	* Fix various warnings, deprecated API usage etc. (Kjartan Maraas)

  Translators

	* Kemal Sanjta (bs)
	* Kjartan Maraas (nb)
	* Laurent Dhima (sq)
	* Maxim Dziumanenko (uk)

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

  Session Manager

	* Add support for activating Vino (Mark)

  Translators

	* Kartik Mistry (gu)

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

  Fixes

	* Fix the fadeout at logout on Xinerama (Bastien Nocera)

  Translators

	* Pawan Chitrakar (ne)

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

  Fixes

	* Don't start a keyring if one is already available (Alex Larsson)
	* Fix minor text drawing issue with the slash screen
	                                     (Carlos Romero, Simone Gotti)

  Translators

	* Evandro Fernandes Giovanini (pt_BR)
	* Laurent Dhima (sq)
	* zhakanini (ta)

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

  Translators

	* Reinout van Schouwen (nl)

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

  Fixes

	* Fix a crash with the logout dialog on multi-screen setups (Mark)

  Translators

	* Zuza Software Foundation (af)
	* Hizkuntza Politikarako Sailburuordetza (eu)
	* Guntupalli Karunakar (gu)
	* John C Barstow (mi)

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

  Translators

	* Alexander Winston (en_CA)
	* Gareth Owen (en_GB)
	* Jitendra Shah (mr)
	* Mişu Moldovan (ro)
	* Leonid Kanter (ru)

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

  Translators

	* Vladimir \"Kaladan\" Petkov (bg)
	* Dinesh Nadarajah (ta)
	* Maxim Dziumanenko (uk)

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

  Session Manager

	* New splash screen for 2.6 (Jakub Steiner)
	* Make the capplet use GtkFileChooser (Chris Kelso)

  Translations

	* Mətin Əmirov (az)
	* Laszlo Dvornik (hu)
	* Christopher R. Gabriel (it)
	* Amanpreet Singh Alam (pa)
	* Paisa Seeluangsawat (th)

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

  Translations

	* Laurent Dhima (sq)
	* Paisa Seeluangsawat (th)

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

  Session Manager

	* Set accessible role on the logout dialog (Padraig)
	* Update help links to the new user-guide location (Mark)

  Session Properties Dialog

	* Make Escape actually with the warning dialog (Bala)
	* Don't warn user about discarding changes if no changes have been made (Bala)

  Translators

	* Changwoo Ryu (ko)
	* Robert Sedak (hr)
	* Maxim Dziumanenko (uk)

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

  Session Manager

	* Don't show silly icon when we can't find an splash icon (Glynn)
	* Update the icon map (Luca Ferretti)
	* Fix usage of deprecated function (Kjartan)

  Misc

	* Fix issue with underquoted definition of AM_PATH_ESD (Alexander Winston)
	* Kill unused .desktop file (Mark)
	* Update support for lwm (James F. Carter)
	* Add support for openbox (Michael Terry)

  Translators

	* Kjartan Maraas (no)
	* Laurent Dhima (sq)
	* Miloslav Trmac (cs)
	* Mətin Əmirov (az)
	* Reinout van Schouwen (nl)

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

  Session Manager

	* Fix lock-up on log out with glib 2.3.1 (Mark)
	* Use a managed window for the logout dialog when accessibility
	  is enabled (Mark, Bill Haneman)
	* Require gtk+ 2.3.x and dump the pangox coverage cache hack (Mark)

  Translators

	* Duarte Loreto (pt)
	* Isam Bayazidi (ar)
	* Paul Duffy (ga)
	* Sanlig Badral (mn)

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

  Session Manager

	* Start the gnome-keyring daemon at login (Alexander Larsson)
	* Shut down the GConf daemon at logout (W. Michael Petullo, Mark)
	* Don't set the full path of the splash screen in GConf (Mark)

  Translators

	* Kostas Papadimas (el)
	* Paisa Seeluangsawat (th)

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

  Misc

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

  Translators

	Dafydd Harries (cy)
	Miloslav Trmac (cs)

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

  Translators

	Åsmund Skjæveland (nn)
	Evandro Fernandes Giovanini (pt_BR)
	Žygimantas Beručka (lt)

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

  Translators

	Joël Brich (eo)
	Mişu Moldovan (ro)
	Nikos Charonitakis (el)
	Paisa Seeluangsawat (th)

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

  Translators

	Christian Rose (sv)
	Dafydd Harries (cy)
	Francisco Javier F. Serrador (es)
	Jordi Mallach (ca)
	Mujahidul Islam (bn)
	Reinout van Schouwen (nl)

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

  Session Manager

	* Funky new splash screen (Jakub Steiner)

  Translators

	Changwoo Ryu (ko)
	Kjartan Maraas (no)
	Mətin Əmirov (az)
	Sanlig Badral (mn)
	Stanislav Visnovsky (sk)
	Tõivo Leedjärv (et)
	Данило Шеган (sr)

===============
Version 2.3.6.2
===============

  Session Manager

	* Fix warnings on startup (Mark)

  Translators

	Takeshi AIHANA (ja)

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

  Session Manager

	* Workaround problem where smproxy was causing gnome-session to save itself
	  as part of the session (Mark, Malcolm Tredinnick, Fredrik Jönsson)
	* Plug a memory leak (Frederic Crozat)

  Translators

	Anurag Seetha (hi)
	Hasbullah Bin Pit (ms)
	Laurent Dhima (sq)

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

  Session Manager

	* Various HIG fixes to logout and session properties dialogs (Dennis Cranston)
	* Add patch to point applications at a GTK+ 1.2 rc file which
	  the settings modifies (Jonathan Blandford)

  Translators

	Ales Nyakhaychyk (be)
	Christophe Merlet (RedFox) (fr)
	Duarte Loreto (pt)
	Evandro Fernandes Giovanini (pt_BR)
	Kostas Papadimas (el)
	Pablo G. del Campo (es)
	Reinout van Schouwen (nl)
	Wang Jian (zh_CN)

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

  Session Manager

	* Add IPv6 support (Shailesh Mittal)

  Misc

	* Remove old docs cruft (John Fleck)

  Translators

	Abel Cheung (zh_TW)
	Andras Timar (hu)
	Christian Neumair (de)
	Jeroen van der Vegt (nl)
	Mətin Əmirov (az)
	Данило Шеган (sr)

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

	* Add support for launching assistive technologies (Bill Haneman)
	* HIG fixes for the logout dialog (Dennis Cranston)
	* Reduce flicker in logout effect (Anders)
	* Make the splash screen no be override redirect (Havoc)
	* Only allow numeric values in spin buttons (Pasupathi Duraisamy)
	* Enabled "Edit" and "Delete" buttons only if something is actually
	  selected (Balamurali Viswanathan)

  Translators

	* Abel Cheung (zh_TW), Arman Aksoy (Armish) (tr), 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), Jeroen van der Vegt (nl), Joël Brich (eo),
	  Jordi Mallach (ca), Kjartan Maraas (no), Laurent Dhima (sq),
	  Miloslav Trmac (cs), Ole Laursen (da), Pablo Gonzalo del Campo (es),
	  Pauli Virtanen (fi) and Samuel Jon Gunnarsson (is).

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

	* Add gnome-session-remove command line utility (Mark)
	* Funky new 2.3.x splash screen (Jeff Waugh)
	* Fix crash with logout dialog (Jon Svendsen)
	* Remove gnome-terminal from the default session (Bala)
	* Remove linc usage (Michael)
	* Port gnome-session-properties to GtkDialog (silversides AT btinternet.com)

Translators

	* Dafydd Harries (cy.po), Dinesh Nadarajah (ta.po), Jordi Mallach (ca.po),
	  Miloslav Trmac (cs.po) and Paul Duffy (ga.po).

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

	* Allow changing current session with gnome-session-save (Mark)
	* s/guint/GtkType (Aron Griffis)
	* Fix MAXHOSTNAMELEN usage in smproxy (Julio Merino)
	
Misc

	* Fix sgmldocs.make and xmldocs.make (Art Haas)
	* Cygwin fixes (Masahiro Sakai)

Translations

	* Abel Cheung (zh_TW), Christian Rose (sv), Danilo Šegan (sr, sr@Latn),
	  Duarte Loreto (pt) and Telsa Gwynne (cy).

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

	* Primitive customization for icons on startup. (Sergey)
	* Xrandr support (Alexander Larsson)

Translations

	* bn(Taneem Ahmed), fa(Roozbeh Pournader), ga(Paul Duffy)
	  mn(Sanlig Badral), ms(Hasbullah Bin Pit)
	  
=============
Version 2.3.0
=============

	* New logout effect (Iain Holmes, Mark)
	* Fix hang with multiple apps requesting interaction (Arvind)
	* Implement muli-screen support for logout help (Bala, Mark)
	* Test wrapper for testing out logout effects (Mark)
	* Warning fixes (Mark)

Translations

	* az(Metin Amiroff), be(Belarusian team), fa(Roozbeh Pournader),
	  hi(Gnome Hindi Team), ml(FSF-India) and wa(Pablo Saratxaga).

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

	* Fix gnome-session hanging when multiple apps request
	  interaction (Arvind)

Translations

	* Ankur Group (bn), Danilo Å egan (sr), FSF_India (ml)
	  Guntupalli Karunakar (hi), Miloslav Trmac (cs) and
	  Sanlig Badral (mn).

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

	* Honour the --disable-schemas-install configure option (Julio Merino)
	* Support themeing of the icons on the splash screen (Havoc Pennington)

Translations

	* Dmitry G. Mastrukov, Fatih Demir, Metin Amiroff, Miloslav Trmac,
	  Mohammad Damt, Pramod, Roozbeh Pournader, Takeshi AIHANA and
	  Vincent van Adrighem.

===============
Version 2.2.0.2
===============

	* Build fix (Thomas Vander Stichele)
	* Mark a couple of strings for translation (Yuriy Syrota)

Translations

	* Abel Cheung, Alessio Frusciante, Alexander Shopov, Andras Timar,
	  Artis Trops, Bayarsaihan, Christian Neumair, Christian Rose, 
	  Christophe Fergeau, Daniel Yacob, Deep_Dark, Dmitry G. Mastrukov,
	  Duarte Loreto, Evandro Fernandes Giovanini, Jordi Mallach,
	  Kang Jeong-Hee, Kjartan Maraas, Kostas Papadimas, Ole Laursen,
	  Pablo Gonzalo del Campo, Pauli Virtanen, Sanlig Badral,
	  Stanislav Visnovsky, Vincent van Adrighem and Zbigniew Chyla.

===============
Version 2.2.0.1
===============

	* Cool new splash screen (Jakub Steiner)

Translations 

	* Dmitry G. Mastrukov.

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

Translations

	* Daniel Yacob, Deep_Dark, Dmitry G. Mastrukov, Fatih Demir,
	  Kang Jeong-Hee, Pablo Gonzalo del Campo and Pablo Saratxaga.

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

Session Manager

	* Up the slow client purge delay to 2 minutes (Mark)
	* Fix GsmProtocol initialisation problem (Mark)

Session Manager Configuration Dialog

	* Ensure child dialogs are kept above the parent (Satyajit)

Translations

	* Abel Cheung, Alexander Shopov, Artis Trops, German Poo Caaman~o, Jordi
	  Mallach, Pablo Saratxaga, Stanislav Visnovsky and Zbigniew Chyla.

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

Miscellanous

	* Add startup notification flag to .desktop files (Dennis Cranston)

Translations

	* Christian Neumair, Christophe Merlet, Hasbullah Bin Pit,
	  Kostas Papadimas and Vincent van Adrighem.

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

Session Manager

	* Unref the GConfCliet (Brian Cameron)
	* Add X-GNOME-BUGZILLA to the .desktop files (Fernando Herrera)

Miscellanous

	* Fixup manpages (Christian Marillat, Mark, Alex Duggan)

Translations

	* Andras Timar, Christian Rose, Evandro Fernandes Giovanini,
	  He Qiangqiang, Kjartan Maraas, Marius Andreiana,
	  Maxim Dzumanenko, Ole Laursen and Pauli Virtanen.

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

	* Update application icons map (Evandro Fernandes Giovanini)

Translations

	* Christian Neumair, Christopher R. Gabriel, Dmitry G. Mastrukov,
	  Fatih Demir, Kjartan Maraas, Ole Laursen, Tõivo Leedjärv,
	  Vincent van Adrighem and Yanko Kaneti.

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

	* Fixup Xinerama aware logout iris code (Mark)

Translations

	* Andras Timar, Daniel Yacob, Dmitry G. Mastrukov and
	  Kjartan Maraas.

=============
Version 2.1.1
=============

	* Allow splash screen to be configured (Rodney Dawes)
	* Use intltool to merge schmemas translations (Mark)

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

	* Use metacity for the window manager by default (Jacob)
	* Multiscreen support for logout iris and dialog (Mark)
	* Use "Order" instead of "Priority" in the capplet (Mark)

Translations

	* German Poo-Caamaño, Gustavo Noronha Silva, Marius
	  Andreiana and Naba Kumar.

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

Session Manager

	* Don't grab the Xserver on logout with ally (Padraig)
	* Fix bug with splash screen layout (Jacob)
	* Start esd if enable_esd is set event if enable_sounds isn't (Mark)

Configuration Dialog

	* Don't allow setting negative values for client priority (Mark)
	* Don't ask to confirm saving after changes have been applied (Mark)
	* Fix bogus warning about session name already existing (Matt Brubeck)

Translations

	* Abel Cheung, Anurag Seetha, Gil 'Dolfin' Osher, He Qiangqiang,
	  Michal Bukovjan and Pablo Gonzalo del Campo.

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

Translations

	* He Qiangqiang.

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

Session Management Proxy

	* Define NI_MAXHOST if not defined (Ryan Lovett)

Miscellanous

	* Fixup the .desktop files (Ross Burton)

Translations

	* Andras Timar, Christian Meyer, Duarte Loreto, Marius
	  Andreiana, Peteris Krisjanis, Roozbeh Pournader and
	  Simos Xenitellis.

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

Session Management Proxy

	* Fix crashing when starting emacs, #89968 (Mark)

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

Session Manager

	* Amend a Global save to Both if user selects save session (Mark)
	* Capplet saving state fix (Stephen Browne)

Translations

	* Gustavo Noronha Silva, Manuel Borchers, Tõivo Leedjärv and
	  Vincent van Adrighem .

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

Session Manager

	* Re-write the splash screen to not use the canvas (Michael)
	* Fix crash with logout dialog (Jacob)
	* Make file selector when editing startup programs modal (Federico)
	* Increased initial client timeout to 30 seconds (Arvind Samptur)

Miscellanous

	* Remove redundant man pages (Mark)

Translations

	* Changwoo Ryu, Dmitry G. Mastrukov, Kjartan Maraas, Pablo Saratxaga,
	  Pauli Virtanen, Stanislav Visnovsky, Takayuki KUSANO, Yanko Kaneti and
	  Zbigniew Chyla.

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

Session Manager

	* Play login and logout sounds (Jacob)
	* Start gnome-settings-daemon using bonobo-activation (Jacob)
	* Cruft removal from configuration dialog (Mark)
	* Remove gnome-login-check (Jacob)
	* Use absolute path for rsh (Mark)
	* Set focus on logout dialog explicitly (Jacob)
	* Quit configuration dialog on SM die signal (Jacob)
	* UI consistency string changes (Glynn)
	* Finish drawing iris properly (Alvaro Lopez Ortega)
	* Support alternate locations of esd and gconf-sanity-check (Brian Cameron)
	* Configuration dialog UI cleanup (Stephen Browne)
	 

X11R5 Session Management Proxy

	* Don't link against all of gnome-libs (Jacob)
	* Support CDE app's broken reliance on non-standard root window properties (Mark)
	* Use XGetWMName instead of XFetchName for WM_NAME (Mark)
	* Various buffer overflow precautions (Mark)
	* Refuse to use a world writeable directory (Mark)
	* Loosen constraint very vaguely imposed by ICCCM (Mark.

Miscellanous

	* Configure checks updates (Jacob, Mark, Brian Cameron)
	* Fix various compile warnings (Mark)
	* Add encoding field to .desktop files (George)

Translations

	* Abel Cheung, Carlos Perello Marin, Changwoo Ryu, Christian Rose,
	  Christophe Fergeau, Daniel Yacob, Dmitry G. Mastrukov, Hasbullah Bin Pit,
          Jordi Mallach, Kjartan Maraas, Ole Laursen, Peteris Krisjanis, Stanislav
	  Visnovsky, Tõivo Leedjärv, Vincent van Adrighem, Yanko Kaneti and
	  Zbigniew Chyla.

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

Translations

	* Jordi Mallach, Takayuki KUSANO and Yanko Kaneti.

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

gnome-session

	* Run gconf-sanity-check at login (Havoc)
	* Fix DiscardCommand usage with autosave  (Jacob, Gustavo Giráldez)
	* Handle InteractRequests in phase 2 correctly (Jacob)
	* Use correct locale directory (HideToshi Tajima)
	* Fix crash on session save (Jacob)

Translations

	* Carlos Perelló Marín, Christophe Merlet, Dmitry G.  Mastrukov,
	  Hasbullah Bin Pit and Pablo Saratxaga. 

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

gnome-session

	* Allow InteractRequests in phase 2 (Jacob)
	* Made help button point at user guide (Satyajit Kanungo)

Translations

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

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

gnome-session

	* Add help button which points to soon-to-be-added docs (Satyajit Kanungo)
	* Use DiscardCommand properly so as to not leak data (Mark)
	* Revert logout dialog back to OK_CANCEL (Mark)
	* Kill libice check program (Jacob)
	* Use the Default session if session name is empty (Jacob)
	* Fix logout shading not dissapearing on Solaris (Jacob)
	* Make 'Order' combo in Session Properties work (Jacob)

smproxy

	* Add workaround for broken CDE applications (Mark)

Translations

	* Abel Cheung, Changwoo Ryu, Dmitry G. Mastrukov, Ivan Stojmirov,
	  Kjartan Maraas, Naba Kumar, Ole Laursen, Pablo Saratxaga,
	  Pauli Virtanen, Stanislav Visnovsky, Szabolcs Ban, Vlad Harchev
	  and Zbigniew Chyla.

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

gnome-session

	* Use GConf for autosave, logout prompt, splash screen (Jacob)
	* Listen for tcp settings (Jacob)
	* Remove 'Browse Current Session' button from dialog (Jacob)
	* Add some funky new schemas (Jacob)
	* Clean up ice code to make it work (Jacob)
	* Clean up session manager code to make it work (Jacob)
	* Add some msm cut and paste (Jacob)

misc
	
	* Build fixes (Jacob)
	
Translations

	* Stanislav Visnovsky, Ole Laursen, Pablo Saratxaga,
	  Abel Cheung, Changwoo Ryu, Zbigniew Chyla, Kjartan Maraas,
	  Gediminas Paulauskas, , Christophe Fergeau, Duarte Loreto, 
	  Takayuki KUSANO.

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

gnome-session

	* Make logout dialog keyboard accessible (Glynn, Jacob)
	* Don't allow more than one instance of gnome-session (Tom)

Translations 

	* Ilmar Kerm, Benedikt Roth, Zbigniew Chyla, Ole Laursen,
	  Fatih Demir, Pablo Saratxga.

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

gnome-session

	* Change logout buttons (Mark, Dennis M. Cranston, Murray Cumming)
	* Update splash screen icon table (Mark)
	* Accessibility patch (Jacob)

Misc

	* Update library requirements (Mark)

Translations

	* Abel Cheung, Changwoo Ryu, Christophe Merlet, Kjartan Maraas,
	  Pauli Virtanen, Simos Xenitellis, Vincent van Adrighem and
	  Zbigniew Chyla.

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

	* Port from CList to TreeView (Jacob)
	* Update gnome-settings-daemon name (Jonathon)
	* Fix splash screen font description (Changwoo Ryu)

Translations

	* Valek Filippov, Hasbullah Bin Pit, Abel Cheung,
	  Stanislav Visnovsky, Changwoo Ryu, Ole Laursen and
	  Zbigniew Chyla.

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

	* don't include capplet-widget.h (Mark)

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

	* Port of session-properties-capplet to 2.0 (Lauris)
	* Fix session-properties crash, #76888 (Mark)
	* Fix invalid errno assumptions, #52781 (Mark)
	* Ask nautilus not to open a window at startup (Frederic Crozat)

Translations

	* Abel Cheung, Gediminas Paulauskas, Kjartan Maraas and
	  Tõivo Leedjärv

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

	* Various porting to non-deprecated apis (Mark)
	* Correctly install capplet .desktop files (Arvind)
	* Port GsmSession, GsmProtocol and GsmClient to GObject (Mark)
	* Use glib-mkenums to build enum GTypes for signals (Mark)
	* Built sources build fix (Jacob)
	* Copy pango XGrabServer workaround from metacity (Mark, Owen)
	* Fix logout dialog crash (Mark)

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

	* new spec file (Chris Chabot)
	* link explicitly against X if pango doesn't (Shivram U)
	* make everything build without warnings (Mark)
	* update for panel executable change (Glynn)

Translations

	* Changwoo Ryu, Christian Meyer, Christopher R. Gabriel,
	  Duarte Loreto, Fatih Demir, Kjartan Maraas, Ole Laursen,
	  Pauli Virtanen, Roy-Magne Mo, Stanislav Visnovsky, Szabolcs
	  Ban, Tõivo Leedjärv and Valek Filippov.

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

	* make reboot/halt command configurable (Laszlo Peter)
	* remove irrelevant manpages (Mark)
	* default.in fix (Jonathon)

Translations

	* Christian Rose, Zbigniew Chyla, Hasbullah Bin Pit
	and Wang Jian

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

	* removal of gtk_widget_(push|pop)_visual calls (Kjartan)
	* more default session work (Jacob)
	* upd session capplet .desktop file (Seth)

Translations

	* Tõivo Leedjärv and Christophe Merlet.

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

        * split from gnome-session from gnome-core (Mark)
	* default session updates (Jonathan)

=============
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.