~matttbe/ubuntu/saucy/gnome-session/lp1191290

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
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
=============
Version 3.6.2
=============

 Session Manager

	* initialize systemd client before acquiring name.  Fixes logind race.
	* Add SessionName property to introspection. Fixes gdbus errors
	* drop system inhibitor when necessary. Fixes logind leak.
	* fix malloc/g_free mismatch in systemd code
	* Updated translations

=============
Version 3.6.1
=============

 Session Manager

	* Don't fall back for zaphod mode multi-screen setups
	* Fix build on OpenBSD
	* Detect greeter sessions better with systemd
	* Updated translations

=============
Version 3.6.0
=============

 Session Manager

	* Make autostart overriding more flexible
	* Updated translations

==============
Version 3.5.91
==============

 Session Manager

	* Updated translations

=============
Version 3.5.5
=============

 Session Manager

	* Make XSMP error messages more clear
	* Be more careful in systemd code when session fails to get registered
	* Require newer glib
	* Make gconf build time optional
	* Updated translations

=============
Version 3.5.4
=============

 Session Manager

	* Add command for showing reboot dialog
	* Inhibitor API / mechanism improvements
        * Systemd integration fixes
	* man page updates
	* fail whale in more failure cases
	* fix duplicate logout dialog when user hits cancel
	* Updated translations

=============
Version 3.5.2
=============

 Session Manager

	* Require new logind version (Colin Walters)
	* Remove markup from translatable string (Piotr Drąg)
	* Fail softer in the face of spotty session bus (Ray, William Jon McCann)
	* Consider that required component that exits with 1 has crashed (Vincent)

  Translators

	* Dirgita (id)

=============
Version 3.4.2
=============

  Capplet

	* Add Unity to OnlyShowIn in .desktop file (Jeremy Bicha)

  Translators

	* Yurek Hinz (csb)
	* Takayuki KUSANO (ja)

=============
Version 3.4.1
=============

  Session Manager

	* Properly move to next phase if an app dies on startup (Vincent)
	* Fix some restart/poweroff problems in the systemd code (Matthias
	  Clasen)
	* Cleanups (Vincent)

  Translators

	* David Planella (ca)
	* David Planella (ca@valencia)
	* Reşat SABIQ (crh)
	* Wolfgang Stoeggl (de)
	* Bruce Cowan (en_GB)
	* Arash Mousavi (fa)
	* Gabor Kelemen (hu)
	* Milo Casagrande (it)
	* Sandeep Shedmake (mr)
	* Kjartan Maraas (nb)

=============
Version 3.4.0
=============

  Session Manager

	* Don't show toggle switches for gnome-shell extensions in fail whale
	  dialog; simply disable all extensions instead (Jasper St. Pierre)
	* Code cleanups (Jasper St. Pierre)

  Translators

	* Nilamdyuti Goswami (as)
	* Ihar Hrachyshka (be)
	* Alexander Shopov (bg)
	* David Planella (ca)
	* David Planella (ca@valencia)
	* Reşat SABIQ (crh)
	* Marek Černocký (cs)
	* flemming christensen (da)
	* Daniel Mustieles (es)
	* Mattias Põldaru (et)
	* Luc Guillemin (fr)
	* Fran Dieguez (gl)
	* Sweta Kothari (gu)
	* Yaron Shahrabani (he)
	* Changwoo Ryu (ko)
	* Aurimas Černius (lt)
	* Rūdolfs Mazurs (lv)
	* A S Alam (pa)
	* Piotr Drąg (pl)
	* Duarte Loreto (pt)
	* Antonio Fernandes C. Neto (pt_BR)
	* Yuri Myasoedov (ru)
	* Matej Urbančič (sl)
	* Мирослав Николић (sr)
	* Miroslav Nikolić (sr@latin)
	* Daniel Nylander (sv)
	* Sasi Bhushan Boddepalli (te)
	* Korostil Daniel (uk)
	* Nguyễn Thái Ngọc Duy (vi)
	* tuhaihe (zh_CN)
	* Chao-Hsiung Liao (zh_HK)
	* Chao-Hsiung Liao (zh_TW)

==============
Version 3.3.92
==============

  Session Manager

	* Minor bug fixes (Ray Strode, Jasper St. Pierre)

  Translators

	* Nilamdyuti Goswami (as)
	* Mattias Põldaru (et)
	* Yuri Myasoedov (ru)

==============
Version 3.3.90
==============

  Session Manager

	* Fix the GsmSystem type registration (Matthias Clasen)

=============
Version 3.3.5
=============

  Session Manager

	* Use systemd session tracking instead of ConsoleKit when system is
	  booted with systemd (Matthias Clasen)
	* Code cleanups (Matthias Clasen)

  Translators

	* Hideki Yamane (ja)
	* Andreas N. (nn)
	* Muhammet Kara (tr)

=============
Version 3.3.3
=============

  Tools

	* Blacklist pre-R300 Radeon hardware in accelerated check (Vincent)

=============
Version 3.3.2
=============

  Tools

	* Fix regexp for blacklisting Intel 830-865 hardware (Vincent)

  Translators

	* Kristjan SCHMIDT (eo)
	* Muhammet Kara (tr)

=============
Version 3.3.1
=============

  Tools

	* Look at gnome.fallback={0,1} argument in kernel boot line to
	  determine if fallback mode should be enforced or ignored (Vincent)
	* Use whitelist/blacklist regexps in an external file when evaluating
	  renderer for accelerated check (Vincent)
	* Blacklist Intel 830-865 hardware when checking for accelerated
	  hardware (Vincent)

  Translators

	* Ihar Hrachyshka (be)

=============
Version 3.2.1
=============

  Session Manager

	* Refuse to install an idle timeout of 0 seconds (Rodrigo Moya)
	* Fix crash on Solaris because of bad comparison (Brian Cameron)

  Translators

	* David Planella (ca@valencia)
	* Kristjan SCHMIDT (eo)
	* Nguyễn Thái Ngọc Duy (vi)
	* Chao-Hsiung Liao (zh_HK)
	* Chao-Hsiung Liao (zh_TW)

=============
Version 3.2.0
=============

  Translators

	* Nilamdyuti Goswami (as)
	* Petr Kovar (cs)
	* flemming christensen (da)
	* Inaki Larranaga Murgoitio (eu)
	* Tommi Vainikainen (fi)
	* Sweta Kothari (gu)
	* Gabor Kelemen (hu)
	* Andika Triwidada (id)
	* Changwoo Ryu (ko)
	* Aurimas Černius (lt)
	* Мирослав Николић (sr)
	* Miroslav Nikolić (sr@latin)
	* Praveen Illa (te)
	* Korostil Daniel (uk)

==============
Version 3.1.92
==============

  Session Manager

	* Never mark as handled the Disconnected signal from dbus (Vincent)
	* Disconnect all dbus clients when dbus is disconnected (Vincent)
	* Don't offer logout in the fail whale on the login screen (Matthias Clasen)
	* Code improvements (Matthias Clasen, Vincent)

  Translators

	* Anass Ahmed (ar)
	* Ihar Hrachyshka (be)
	* Alexander Shopov (bg)
	* David Planella (ca)
	* Mario Blättermann (de)
	* Bruce Cowan (en_GB)
	* Daniel Mustieles (es)
	* Arash Mousavi (fa)
	* Luc Guillemin (fr)
	* Yaron Shahrabani (he)
	* Luca Ferretti (it)
	* Jiro Matsuzawa (ja)
	* Rūdofls Mazurs (lv)
	* Wouter Bolsterlee (nl)
	* A S Alam (pa)
	* Piotr Drąg (pl)
	* Duarte Loreto (pt)
	* Antonio Fernandes C. Neto (pt_BR)
	* Matej Urbančič (sl)
	* Dr.T.Vasudevan (ta)
	* Theppitak Karoonboonyanan (th)
	* Wylmer Wang (zh_CN)
	* Chao-Hsiung Liao (zh_HK)
	* Chao-Hsiung Liao (zh_TW)

==============
Version 3.1.91
==============

  Session Manager

	* Fix usage of %lld for 64-bit formats (Owen Taylor)
	* Add a translator comment (Matthias Clasen)

  Translators

	* Ihar Hrachyshka (be)
	* Fran Dieguez (gl)
	* Kjartan Maraas (nb)
	* Daniel Nylander (sv)

==============
Version 3.1.90
==============

  Session Manager

        * Support for debugging the fail whale dialog (Jasper St. Pierre)
        * Show gnome-shell extensions in the fail whale dialog (Jasper)
        * Respect lockdown in the fail whale dialog (Matthias Clasen)
        * Add an IsSessionRunning DBus method (Matthias)
        * Remove obsolete gconf sanity check (William Jon McCann)

  Translation updates

        * Galician
        * German
        * Indonesian
        * Norwegian bokmål
        * Russian
        * Spanish
        * Thai
        * Uighur

=============
Version 3.1.5
=============

  Session Manager

	* Fix --help to mention arguments for options that have one (Vincent)
	* Support XDG_CURRENT_DESKTOP (Michael Terry, Vincent)

  Capplet

	* Respect OnlyShowIn and NotShowIn keys (Vincent, Michael Terry)
	* Code cleanup (Vincent)

  Translators

	* Ihar Hrachyshka (be)
	* Alexander Shopov (bg)
	* Petr Kovar (cs)
	* Jorge González (es)
	* Tommi Vainikainen (fi)
	* Yaron Shahrabani (he)
	* Rūdofls Mazurs (lv)
	* Kjartan Maraas (nb)
	* Piotr Drąg (pl)
	* Daniel Nylander (sv)

=============
Version 3.1.3
=============

  Session Manager

	* Fix build warnings (Vincent)

  Capplet

	* Fix build warning (Vincent)

  Misc

	* Modernize build system a bit (Vincent)
	* Remove artificial librsvg dependency (Vincent)

  Translators

	* Мирослав Николић (sr)
	* Miroslav Nikolić (sr@latin)
	* Daniel Nylander (sv)
	* Muhammet Kara (tr)

=============
Version 3.1.2
=============

  Session Manager

	* Fix race condition in idle monitor (Christopher Halse Rogers)
	* Consistently use Restart and not Reboot (Chris Wilson)
	* Fix crashes by not assuming XSMP clients set the SmProgram property
	  (Vincent)
	* Make the acceleration checks refuse to work in zaphod mode (Adam
	  Jackson)
	* Update libegg code (Vincent)
	* Code cleanups (Vincent, Kjartan Maraas)

  Translators

	* David Planella (ca@valencia)
	* Daniel Mustieles (es)
	* Fran Diéguez (gl)
	* Yaron Shahrabani (he)
	* Kjartan Maraas (nb)
	* Matej Urbančič (sl)

=============
Version 3.0.2
=============

  Translators

	* Kristjan SCHMIDT (eo)
	* Sahran (ug)

=============
Version 3.0.1
=============

  Translators

	* Arash Mousavi (fa)
	* Theppitak Karoonboonyanan (th)
	* Lê Trường An (vi)

=============
Version 3.0.0
=============

Session Manager:
- Change path of GSettings schema (Vincent)

Translations:
- Updated af: Friedel Wolff
- Updated bn: Jamil Ahmed
- Updated ca: Jordi Serratosa
- Updated cs: Petr Kovar
- Updated da: Kris Thomsen
- Updated de: Wolfgang Stöggl
- Updated el: Simos Xenitellis
- Updated en_GB: Bruce Cowan
- Updated eu: Inaki Larranaga Murgoitio
- Updated hu: Gabor Kelemen
- Updated id: Dirgita
- Updated ko: Changwoo Ryu
- Updated lt: Gintautas Miliauskas
- Updated pt: Duarte Loreto
- Updated ta: Dr.T.Vasudevan
- Updated zh_CN: Aron Xu
- Updated zh_HK: Chao-Hsiung Liao
- Updated zh_TW: Chao-Hsiung Liao

===============
Version 2.91.94
===============

Session Manager: Bump the phase timeout to 30 seconds.

Translations: Swedish, Ukrainian, Punjabi, Norwegian bokmål,
  Bazilian Portuguese, Dutch, Hebrew, German, Japanese, Arabic,
  Russian, Vietnamese, Uighur, French, Latvian, Polish

===============
Version 2.91.93
===============

Note this is a brown bag release.  All users who need working log out and shut down
functionality should use this release instead of 2.91.92.

Session Manager:
- Make work with latest version of the shell.

Translations:
- Updated bg: Krasimir Chonov
- Updated es: Jorge González
- Updated it: Luca Ferretti
- Updated ro: Daniel Șerbănescu
- Updated sl: Matej Urbančič

===============
Version 2.91.92
===============

Note to packagers: if you are using your own .session files, please update them
as the format has changed.

Session Manager:
- Better fatal error handling in general, including specific handling when
  required components fail (Colin Walters, William Jon McCann, Vincent)
- Improve wording of fallback dialog (Matthias Clasen)
- Avoid double-checking between gdm and gnome-session in
  gnome-session-check-accelerated-helper (Matthias Clasen)
- Switch to using seconds for idle time (William Jon McCann)
- Honor disable-log-out and disable-user-switching lockdown settings (Ray
  Strode, Vincent)
- Change format of .session files in a incompatible way; this is now documented
  in the gnome-session man page (Vincent)
- Update gnome-session-quit man page (Vincent)
- Enforce the use of required components in the session (Vincent)
- Deal with conflicts between Provides in different applications by only having
  one provider running; this was only working well for Provides defined in the
  session definition (Vincent)
- Use app-id when saving session instead of startup-id for .desktop (Vincent)
- Explicitly require gnome-shell/gnome-panel in .session files, instead of
  using providers (Vincent)
- Clean up saved session on logout if session is not getting saved (Vincent)
- Use "computer-fail" icon from theme instead of our own sad-computer (Vincent)
- Fix some gnome-shell/gnome-session interaction issue on logout, when a third
  application cancels logout (Ray Strode)
- Code cleanups (Ray Strode, Vincent)

Translations:
- Updated ar: Khaled Hosny
- Updated as: Nilamdyuti Goswami
- Updated en_GB: Bruce Cowan
- Updated es: Jorge González
- Updated et: Ivar Smolin
- Updated fr: Bruno Brouard
- Updated fy: Sense Hofstede
- Updated gl: Fran Diéguez
- Updated he: Yaron Shahrabani
- Updated hu: Gabor Kelemen
- Updated id: Andika Triwidada
- Updated ko: Changwoo Ryu
- Updated lv: Rudolfs
- Updated nb: Kjartan Maraas
- Updated nl: Wouter Bolsterlee
- Updated pl: Piotr Drąg
- Updated pt: Duarte Loreto
- Updated pt_BR: Flamarion Jorge
- Updated ro: Lucian Adrian Grijincu
- Updated ru: Yuri Myaseodov
- Updated sl: Andrej Žnidaršič
- Updated sr: Милош Поповић
- Updated sr@latin: Miloš Popović
- Updated sv: Daniel Nylander
- Updated uk: Korostil Daniel

=================
Version 2.91.91.3
=================

Fix another problem with launching of gnome-session-check-accelerated-helper

=================
Version 2.91.91.2
=================

More fixes and diagnostics for gnome-session-check-accelerated

=================
Version 2.91.91.1
=================

Fix gnome-session-check-accelerated to return 0 on success, as expected

===============
Version 2.91.91
===============

Session Manager:
- Better error message on not-found session (Colin Walters)
- Rename gnome-session-save to gnome-session-quit (William Jon McCann)
- Fix cancel button in logout dialog (Ray Strode)
- Increase is-accelerated runnable helper timeout (Colin Walters)
- Fix crash when if-session autostart condition is used (Matthias Clasen)
- Add gnome-session-check-accelerated to set a X property about acceleration
  (Colin Walters)
- Rename gnome-session-is-accelerated to gnome-session-check-accelerated-helper
  (Colin Walters)
- Fix typo (Vincent)

Translations:
- Updated ar: Khaled Hosny
- Updated bg: Alexander Shopov
- Updated ca: David Planella
- Updated es: Daniel Mustieles
- Updated et: Ivar Smolin
- Updated fr: Alain Lojewski
- Updated he: Yaron Shahrabani
- Updated ko: Changwoo Ryu
- Updated lv: Rūdolfs Mazurs
- Updated nb: Kjartan Maraas
- Updated pa: A S Alam
- Updated sk: Pavol Šimo
- Updated sl: Matej Urbančič
- Updated sv: Daniel Nylander
- Updated uk: Korostil Daniel

=================
Version 2.91.90.1
=================

Session Manager:
- Fix a crash happening in gdm (Colin Walters)

Translations:
- Updated bn_IN: Runa Bhattacharjee

===============
Version 2.91.90
===============

Session Manager:
- Update for GSettings schemas changes (Vincent)
- Read default session from GSettings (Alexander Larsson)
- Make the current session name available via dbus (Alexander Larsson)
- Support autostart conditions that depend on the current session (Alexander
  Larsson)
- Make notification-daemon a required part of the fallback session (Matthias
  Clasen)
- Show a dialog after login the first time we fall back to gnome-fallback
  (Alexander Larsson)
- Various fixes to shell logout/shutdown dialog (Ray Strode)
- Code cleanups (Vincent)

Misc:
- gsettings-desktop-schemas 0.1.7 is required

Translations:
- Updated ar: Khaled Hosny
- Updated bg: Alexander Shopov
- Updated ca: David Planella
- Updated es: Jorge González
- Updated gu: Sweta Kothari
- Updated he: Yaron Shahrabani
- Updated nb: Kjartan Maraas
- Updated nl: Wouter Bolsterlee
- Updated sl: Matej Urbančič

==============
Version 2.91.6
==============

Note to packagers: with the move to GSettings, gnome-session now depends on
gsettings-desktop-schemas.

Session Manager:
- Fix build with latest GTK+ 3 (Matthias Clasen, Vincent)
- Migrate to GSettings (Ray Strode)
- Add support for shell logout/shutdown dialog (Ray Strode)
- Use fallback session if required components are missing (Matthias Clasen)

Defined Sessions:
- Do not consider Gallium's softpipe and llvmpipe as accelerated (Vincent)
- Do not run nautilus by default (Matthias Clasen)

Capplet:
- Migrate to GSettings (Ray Strode, Vincent)

Misc:
- Change GETTEXT_PACKAGE to gnome-session-3.0 (Vincent)
- Drop gnome-wm script (Matthias Clasen)
- Add a runtime dependency on gsettings-desktop-schemas

Translations:
- Updated ar: Khaled Hosny
- Updated bg: Alexander Shopov
- Updated ca: David Planella
- Updated es: Jorge González
- Updated et: Ivar Smolin
- Updated gl: Fran Diéguez
- Updated he: Yaron Shahrabani
- Updated hu: Gabor Kelemen
- Updated id: Andika Triwidada
- Updated nb: Kjartan Maraas
- Updated nl: Wouter Bolsterlee
- Updated sl: Matej Urbančič
- Updated sv: Daniel Nylander
- Updated ug: Sahran
- Updated zh_HK: Chao-Hsiung Liao
- Updated zh_TW: Chao-Hsiung Liao

==============
Version 2.91.4
==============

Note to distributors:
 - the definition of the session started by gnome-session moved out of gconf
   and is now living in .desktop-like files. The format of those files might
   change in the future.
 - two predefined sessions are shipped: GNOME (default), that will start GNOME
   Shell, and Classic GNOME, that will start gnome-panel, metacity, etc. like in
   GNOME 2.
 - a small utility, gnome-session-is-accelerated, is used to determine if GNOME
   Shell can be used. If this is not the case, Classic GNOME will be used.
   Please send feedback on when this utility doesn't detect things properly.
 - it is known that session saving doesn't work well with people moving from
   one session to another at the moment. It can result in gnome-panel running
   with GNOME Shell, for example.

Session Manager:
- Add autostart condition through GSettings (Bastien Nocera)
- Don't ever show inhibitor dialog if logout is forced (Ray Strode)
- Fix some issue tracking clients on logout (Ray Strode)
- Add an application restart limit (William Jon McCann)
- Move the definition of a session from gconf to .desktop-like files (Vincent)
- Change default session to use GNOME Shell, with a fallback to classic GNOME
  (Vincent)
- Update for GTK+ 3 changes (Matthias Clasen)
- Code cleanups (Vincent)

Capplet:
- Set NoDisplay=true (William Jon McCann)
- Fix inline search (Ricardo Cruz)
- Update for GTK+ 3 changes (Cosimo Cecchi, Vincent)

Translations:
- Updated ca@valencia: David Planella
- Updated crh: Reşat SABIQ
- Updated es: Jorge González
- Updated et: Ivar Smolin
- Updated fa: Mahyar Moghimi
- Updated fi: Ville-Pekka Vainio
- Updated fy: Sense Hofstede
- Updated gl: Fran Diéguez
- Updated he: Yaron Shahrabani
- Updated ja: Yasumichi Akahoshi
- Updated ko: Changwoo Ryu
- Updated nb: Kjartan Maraas
- Updated ro: Daniel Șerbănescu
- Updated sl: Matej Urbančič
- Updated th: Theppitak Karoonboonyanan
- Updated ug: Sahran

==============
Version 2.91.0
==============

Session Manager:
- Miscellaneous string fixes (Philip Withnall)
- Fix for GTK+ 3 changes (Vincent, Ray Strode, Fernando Herrera)

Misc
- Update information in README and other files (Vincent)
- Update man pages (Vincent)
- Build against GTK+ 3 by default (Ray Strode)
- Rename --enable-deprecations configure flag to --enable-deprecation-flags
  (Vincent)

Translations:
- Updated ar: Khaled Hosny
- Updated bg: Damyan Ivanov
- Updated ca: David Planella
- Updated cs: Petr Kovar
- Updated da: Kenneth Nielsen
- Updated de: Christian Kirbach
- Updated el: Kostas Papadimas
- Updated en_GB: Philip Withnall
- Updated es: Jorge González
- Updated et: Mattias Põldaru
- Updated fi: Jiri Grönroos
- Updated fr: Claude Paroz
- Updated gl: Fran Dieguez
- Updated he: Yaron Shahrabani
- Updated hu: Gabor Kelemen
- Updated id: Andika Triwidada
- Updated it: Luca Ferretti
- Updated ja: Takayuki KUSANO
- Updated lt: Žygimantas Beručka
- Updated nb: Kjartan Maraas
- Updated nl: Wouter Bolsterlee
- Updated pa: A S Alam
- Updated pl: Tomasz Dominikowski
- Updated pt: Duarte Loreto
- Updated pt_BR: Daniel S. Koda
- Updated sk: Pavol Šimo
- Updated sl: Matej Urbančič
- Updated sr: Милош Поповић
- Updated sr@latin: Miloš Popović
- Updated sv: Daniel Nylander
- Updated ta: Dr.T.Vasudevan
- Updated ug: Gheyret T.Kenji
- Updated zh_CN: Aron Xu
- Updated zh_HK: Chao-Hsiung Liao
- Updated zh_TW: Chao-Hsiung Liao

==============
Version 2.31.6
==============

Session Manager:
- Fix a GSeal issue (Vincent)
- Fixed spelling error in schema description (Frédéric Péters)
- Port gnome-session to upower ((Richard Hughes)
- Fix description of auto_save_session key (Vincent)

Misc
- Drop compatibility tool that sets GTK+ 1.x environment variable (Vincent)
- Drop the splash program (Paolo Borelli)
- Require upower-glib instead of devkit-power-gobject (Richard Hughes)
- Add configure flag to select which GTK+ version to use (Frédéric Péters)

Translations:
- Updated bn_IN: Runa Bhattacharjee
- Updated de: Mario Blättermann
- Updated eo: Kristjan SCHMIDT
- Updated es: Jorge González
- Updated et: Mattias Põldaru
- Updated fy: Sense Hofstede
- Updated gl: Fran Diéguez
- Updated gu: Sweta Kothari
- Updated he: Yaron Shahrabani
- Updated lv: Rūdolfs Mazurs
- Updated mr: Sandeep Shedmake
- Updated nb: Kjartan Maraas
- Updated pa: A S Alam
- Updated sl: Matej Urbančič
- Updated sv: Daniel Nylander
- Updated zh_CN: Aron Xu

==============
Version 2.31.2
==============

Session Manager:
- Export _stop method for clients, for better GNOME Shell experience (Colin
  Walters)

Misc:
- Explicitly add -lXext -lXau to linker line (Colin Walters)

Translations:
- Updated ca: David Planella
- Updated ca@valencia: David Planella
- Updated en@shaw: Thomas Thurman
- Updated en_GB: Philip Withnall
- Updated fi: Timo Jyrinki
- Updated id: Andika Triwidada
- Updated kn: Shankar Prasad
- Updated mr: Sandeep Shedmake
- Updated nl: Wouter Bolsterlee
- Updated or: Manoj Kumar Giri

==============
Version 2.30.0
==============

Misc:
- Add more information to configure summary (Vincent)

Translations:
- Updated bn: Israt Jahan
- Updated eu: Iñaki Larrañaga Murgoitio
- Updated ko: Changwoo Ryu
- Updated sr: Горан Ракић
- Updated sr@latin: Goran Rakić

===============
Version 2.29.92
===============

Note for distributors: the log out on SIGTERM/SIGINT possibly create a
misbehavior with old versions of the GDM greeter. It is recommended to use this
release with GDM 2.29.92.

Session Manager:
- Log out on SIGTERM and SIGINT (Halton Huo)
- Delay the creation of the GsmXSMPClient until it really exists, to fix
  potential crashes on logout (Romain Perier)

Misc:
- Remove unneeded LIBGNOMEUI_REQUIRED from configure.in (Vincent)

Translations:
- Updated gl: Fran Diéguez
- Updated ko: Changwoo Ryu
- Updated nn: Torstein Adolf Winterseth
- Updated pl: Piotr Drąg

==============
Version 2.29.6
==============

Session Manager:
- Fix typo in error message (Vincent)
- Add diagnostic output for exit phase timeout (Matthias Clasen)
- GSeal: Use accessor functions instead of direct access (Javier Jardón)
- Check that the XSMP connection exists when stopping a client to fix potential
  crash on exit (Romain Perier)

Capplet:
- Destroy the main window on close to ensure changes are saved (Vincent)

Misc:
- Install the helpers in libexecdir, not libdir (Vincent)

Translations:
- Updated as: Amitakhya Phukan
- Updated crh: Reşat SABIQ
- Updated el: nikosCharonitakis
- Updated en@shaw: Thomas Thurman
- Updated nds: Nils-Christoph Fiedler
- Updated pt_BR: André Gondim
- Updated ru: Anisimov Victor
- Updated sl: Matej Urbančič
- Updated zh_CN: Tao Wei

==============
Version 2.28.0
==============

- Trivial code fixes (Vincent)
- Lock the screen before hibernate/suspend (Richard Hughes)

Translations:
- Updated as: Amitakhya Phukan
- Updated br: Denis Arnaud
- Updated ca: David Planella
- Updated cs: Petr Kovar
- Updated da: Kenneth Nielsen
- Updated de: Wolfgang Stoeggl
- Updated en_GB: Philip Withnall
- Updated hi: Rajesh Ranjan
- Updated kn: Shankar Prasad
- Updated lt: Gintautas Miliauskas
- Updated mai: Sangeeta Kumari
- Updated ml: Peter Ani
- Updated mr: Sandeep Shedmake
- Updated or: Manoj Kumar Giri
- Updated pa: A S Alam
- Updated pt_BR: André Gondim
- Updated ro: Lucian Adrian Grijincu
- Updated sl: Matej Urbančič
- Updated sr: Горан Ракић
- Updated sr@latin: Goran Rakić
- Updated te: Krishna Babu K
- Updated uk: Maxim Dziumanenko
- Updated zh_HK: Chao-Hsiung Liao
- Updated zh_TW: Chao-Hsiung Liao

===============
Version 2.27.92
===============

- Remove at-spi-registryd wrapper (at-spi properly implements session
  management) (Lucas)

Translations:
- Updated be: Alexander Nyakhaychyk
- Updated bn: Loba Yeasmeen
- Updated bn_IN: Runa Bhattacharjee
- Updated br: Denis
- Updated et: Ivar Smolin
- Updated eu: Iñaki Larrañaga Murgoitio
- Updated fr: Claude Paroz
- Updated hu: Gabor Kelemen
- Updated ja: Takayuki KUSANO
- Updated pl: Tomasz Dominikowski
- Updated pt: Duarte Loreto
- Updated tr: Baris Cicek

===============
Version 2.27.91
===============

Note: this release contains a port of the PolicyKit code to PolicyKit 1, which
is needed for gnome-session to work with newer ConsoleKit. However, because of
limitations of the ConsoleKit API, there are some regressions that cannot be
addressed. See http://bugzilla.gnome.org/show_bug.cgi?id=585614 for more
details.

- Install splash desktop file in $(sysconfdir)/xdg/autostart (Vincent)
- Do not install gnome-splash.png unless --enable-splash is used (Vincent)
- Fix idle watch not working (Vincent)
- Fix typo in debug message (Oskar Wallgren)
- Use GTK+ accessor functions instead direct access (Javier Jardón)
- Remove deprecated Encoding key from desktop file (Frédéric Péters)
- Port to PolicyKit 1 (Matthias Clasen)
- Remove dependency on PolicyKit libraries (Matthias Clasen)

Translations:
- Updated ar: Khaled Hosny
- Updated bg: Alexander Shopov
- Updated ga: Seán de Búrca
- Updated gl: Antón Méixome
- Updated gu: Sweta Kothari
- Updated it: Luca Ferretti
- Updated ko: Changwoo Ryu
- Updated nb: Kjartan Maraas
- Updated or: Manoj Kumar Giri
- Updated pt_BR: Djavan Fagundes
- Updated th: Theppitak Karoonboonyanan

==============
Version 2.27.5
==============

- Prefer compiz-manager over compiz when available in gnome-wm (Vincent)
- Add --with-default-wm configure option to let distributors specify the
  default window manager they want to use (including gnome-wm) (Vincent)
- Use silent-rules with automake 1.11 (Vincent)
- Add --enable-splash configure option to build splash, and disable splash
  build by default (Vincent)
- Add Presence interface to the documentation (William Jon McCann)
- Do not exit when the system bus restarts (Vincent, Sjoerd Simmons)
- Port from gnome-power-manager to DeviceKit-power (Richard Hughes)
  DeviceKit-power is a new dependency.
- Code cleanup (Vincent)

Translations:
- Updated es: Jorge González
- Updated et: Ivar Smolin (et)
- Updated fi: Ilkka Tuohela (fi)
- Updated he: Yaron Shahrabani (he)
- Updated sv: Daniel Nylander (sv)
- Updated ta: Dr.T.Vasudevan (ta)

==============
Version 2.27.4
==============

- Reduce GConf roundtrips (Matthias Clasen)
- Use shave to improve build log readability (Vincent)
- Fix a crash on Solaris (Ghee Teo)
- Generate docs for the presence API (Matthias Clasen)
- Rewrite a good part of the capplet. Some highlights:
  - much cleaner code
  - monitor autostart files
  - autofill name field if needed
  - add help button
  - better handling of themed and non-themed application icons
  - allow dragging from the application list
  - make it more clear that applications are disabled
  (Vincent)
- Port to GtkBuilder (Vincent)
- Improve debug message (Vincent)
- Load default apps after saved and autostart apps (Vincent)
- Build fixes for BSD (Daniel Macks, Alexis Ballier)
- Update eggsmclient code to fix crash (Vincent)
- Add mutter support to gnome-wm (Jon Nettleton)
- Make gnome-session exit properly on reboot/shutdown (Bill Nottingham)
- Avoid pointless warnings (Matthias Clasen)
- Honour the SmRestartNever SmRestartStyleHint (Caolan McNamara)
- Default clients to RESTART_IF_RUNNING instead of NEVER (Caolan McNamara)
- Code cleanups (Vincent)

Translations:
- Updated ar: Khaled Hosny
- Updated ca@valencia: David Planella
- Updated da: Kenneth Nielsen
- Updated de: Christian Kirbach
- Updated es: Jorge González
- Updated et: Ivar Smolin
- Updated he: Mark Krapivner
- Updated te: Krishna Babu K
- Updated uk: Maxim Dziumanenko

==============
Version 2.26.1
==============

- Fix inhibitor dialog not showing the right action button when shutting down
  (Vincent)
- Make gnome-session-save --kill --silent work as --force-logout (Vincent)
- Correctly use the arguments passed to gnome-session when launched with no
  session dbus (Vincent)

Translations:
- Updated sr: Горан Ракић
- Updated zh_CN: Ray Wang

=================
Version 2.26.0.90
=================

Note: while this is a tarball from a stable branch, this version should be
considered as a test tarball. It contains some important changes to the session
manager to fix various issues, and we want those changes to be tested before
2.26.1.

Depending on how D-Bus and ConsoleKit are configured on your system, you might
need the patch from https://bugs.freedesktop.org/show_bug.cgi?id=20471 for your
ConsoleKit configuration. This is required so it's possible for applications to
be able to know if there are more than one user logged in on the machine.

The two main fixes for this release are:
 - gnome-session now lets applications properly exit on logout
 - saving a session on logout is activated again

- Update man pages (Vincent)
- Let all processes exit cleanly on logout/reboot/shutdown (Vincent)
- Use smaller icon size in inhibit dialog (Vincent)
- Fix various crashes in inhibit dialog and during the logout process (Vincent)
- Make the inhibit dialog look at desktop files from autostart directories too
  (Vincent)
- Use XDG_CONFIG_HOME to save the session and create the session directory with
  the right permissions (Vincent)
- Get the discard command from XSMP clients and save it when saving a session,
  and use it when removing a saved session (Vincent)
- Properly handle XSMP clients that don't return a restart command when saving
  the session (Vincent)
- Various XSMP protocol fixes (Vincent)
- When saving the session, ask the XSMP clients to save the global and local
  states when needed instead of just asking them to save their global states.
  Else, clients won't appear on next login (Vincent)
- Allow XSMP clients to interact during the logout (and cancel the logout),
  using the inhibit infrastructure (Vincent)
- Allow clients to specify that they want to be ended last (Vincent)
- Hide deprecated command-line options from gnome-session-save --help (Vincent)
- Re-enable session saving (Vincent)
- Ignore XSyncAlarmDestroyed events, to avoid filling ~/.xsession-errors
  (Matthias Clasen)
- Various code cleanups (Vincent)

Translations:
- Updated ar: Anas Afif Emad
- Updated el: Jennie Petoumenou
- Updated hu: Gabor Kelemen
- Updated kn: Shankar Prasad
- Updated nb: Kjartan Maraas
- Updated pa: A S Alam
- Updated ru: Nickolay V. Shmyrev

==============
Version 2.26.0
==============

Note: this release disables session saving because it's not ready for wide
usage. It will hopefully be fixed for 2.26.1.

- Turn off debug spew (Lucas)
- Hide the "Save current session" button in the session properties since it's
  not working (Vincent)
- Disable session saving because it's not ready yet (Vincent)

Translations:
- Updated as: Amitakhya Phukan
- Updated crh: Reşat SABIQ
- Updated cs: Petr Kovar
- Updated el: Jennie Petoumenou
- Updated es: Jorge González
- Updated et: Ivar Smolin
- Updated gl: Suso Baleato
- Updated gu: Ankit Patel
- Updated he: Yaron Shahrabani
- Updated hi: Rajesh Ranjan
- Updated ja: Takeshi AIHANA
- Updated lt: Žygimantas Beručka
- Updated mr: Sandeep Shedmake
- Updated nb: Kjartan Maraas
- Updated or: Manoj Kumar Giri
- Updated ps: Zabeeh Khan
- Updated ta: I. Felix
- Updated te: Krishna Babu K

===============
Version 2.25.92
===============

Note: this release brings back session saving. There might be bugs for this, so
make sure to test this thoroughly.

- Ensure treeview is included in a scrolled window with a shadow in the inhibit
  dialog (Frédéric Crozat)
- Use system-log-out icon instead of deprecated gnome-logout (Matthias Clasen)
- Implement session saving (Lucas)
- Use close button instead of ok button for error dialog (Vincent)
- Fix the logout dialog not being themed (Matthias Clasen)
- Code cleanup (Lucas)

Translations:
- Updated zh_TW: Chao-Hsiung Liao
- Updated bg: Alexander Shopov
- Updated bn_IN: Runa Bhattacharjee
- Updated ca: David Planella
- Updated de: Wolfgang Stoeggl
- Updated en_GB: David Lodge
- Updated eu: Iñaki Larrañaga Murgoitio
- Updated fi: Ilkka Tuohela
- Updated fr: Bruno Brouard
- Updated gu: Sweta Kothari
- Updated hu: Gabor Kelemen
- Updated it: Luca Ferretti
- Updated ja: Takeshi AIHANA
- Updated ko: Changwoo Ryu
- Updated lv: Raivis Dejus
- Updated pt_BR: Og Maciel
- Updated pt: Duarte Loreto
- Updated ro: Adi Roiban
- Updated sv: Daniel Nylander
- Updated th: Theppitak Karoonboonyanan
- Updated tr: Baris Cicek
- Updated zh_HK: Chao-Hsiung Liao
- Updated zh_TW: Chao-Hsiung Liao

===============
Version 2.25.91
===============

- Fix copy & paste error in debug output (Matthias Clasen)
- Avoid restarting applications when shutting down (Brian Cameron)
- Improve logout/shutdown dialog messages (Matthias Clasen)
- Change the capplet name in (Lucas, Luca Ferretti)
- Remove obsolete logout_option gconf key (Luca Ferretti)
- Update description of required_components_list gconf key (Luca Ferretti)

Translations:
- Updated ast: Mikel González
- Updated bg: Alexander Shopov
- Updated crh: Reşat SABIQ
- Updated da: Kenneth Nielsen
- Updated dz: Dawa pemo
- Updated es: Jorge González
- Updated et: Ivar Smolin
- Updated eu: Iñaki Larrañaga Murgoitio
- Updated fi: Ilkka Tuohela
- Updated gl: Ignacio Casal Quinteiro
- Updated kn: Shankar Prasad
- Updated mk: Jovan Naumovski
- Updated nb: Kjartan Maraas
- Updated nl: Wouter Bolsterlee
- Updated pl: Tomasz Dominikowski
- Updated pt_BR: Andre Gondim
- Updated ro: Adi Roiban
- Updated sr: Горан Ракић
- Updated sv: Daniel Nylander
- Updated te: Bharat Kumar
- Updated th: Theppitak Karoonboonyanan
- Updated vi: Clytie Siddall
- Updated zh_HK: Chao-Hsiung Liao
- Updated zh_TW: Chao-Hsiung Liao

===============
Version 2.25.90
===============

- Install autostart files in /etc/xdg/autostart (Vincent)
- Use 22x22 icons in the splash screen (Vincent)
- Fix a potential crash in the splash screen (Vincent)
- Fix dbus documentation to mention the session bus instead of system bus
  (Richard Hughes)
- Fix build when XTest is not available (Vincent)
- Fix generation of dbus documentation to have valid docbook (Vincent)

Translations:
- Updated ca: David Planella
- Updated fi: Ilkka Tuohela
- Updated he: Yair Hershkovitz
- Updated ko: Changwoo Ryu
- Updated lt: Žygimantas Beručka
- Updated pl: Tomasz Dominikowski
- Updated pt_BR: Andre Gondim
- Updated sv: Daniel Nylander

==============
Version 2.25.5
==============

- Close ICE connection for qt3 applications (Edward Sheldrake)
- In all phases before APPLICATION, consider process termination as completion
  (Behdad Esfahbod)
- Fix gnome-session not looking at $XDG_DATA_HOME/applications (tuxce)
- Correctly check for sm and ice libraries in configure script (Lucas)
- Correctly handle X-GNOME-Autostart-enabled=false in gnome-session-properties
  (Halton Huo)
- Add support for --enable-polkit/--disable-polkit in configure script (default
  is still automatic) (Nirbheek Chauhan)
- Add NoDisplay=True to desktop files (Lucas)
- Fix typo in error message (Lucas)
- Double-click startup program entry to open edit dialog in
  gnome-session-properties (Lucas)
- Fix apps with an icon not existing in the icon theme displayed with no icon
  (Lucas)
- Add 48x48 icon for session properties (Lucas)
- Add a presence dbus API (William Jon McCann)

Translations:
- Updated ca: David Planella
- Updated de: Hendrik Richter
- Updated es: Jorge González
- Updated ha: saudat mohammed
- Updated ig: Onye, Sylvester
- Updated nb: Kjartan Maraas
- Updated sv: Daniel Nylander
- Updated uz@cyrillic: Nurali Abdurahmonov
- Updated uz: Nurali Abdurahmonov
- Updated yo: David Lodge

==============
Version 2.25.3
==============

- Address issue with multiple clients trying to use the QueryEndSession dbus
  API (Tim Kosse)
- Code and build system cleanups (Vincent)
- Stop using deprecated API (Vincent)
- Remove libgnomeui dependency (Vincent)

==============
Version 2.25.2
==============

- Don't link to gnome-keyring and libgnomeui where we don't need (William Jon
  McCann)
- Make the session properties dialog resizable (Matthias Clasen)
- Don't try to print an undefined error message (William Jon McCann)
- Build fixes (Kjartan Maraas)
- Rewrite the application finding code for the manager (Matthias Clasen)
- Add new dbus api to say whether shutdown dialog is available (Ray Strode)
- Remove compat wrapper for gnome-keyring session interaction (Stef Walter)
- Single include fixes for glib (Diego Escalante Urrelo)

Translations:
- Updated ast: Mikel González
- Updated ku: Erdal Ronahi
- Updated sr: Горан Ракић
- Updated sv: Daniel Nylander

==============
Version 2.24.1
==============

- Add GTK and GNOME categories to session-properties.desktop (Patryk Zawadzki)
- Fix leaks (Matthias Clasen)
- Rename variable to avoid symbol conflict (Frederic Peters)
- Fix padding and spacing, and make the dialog resizable in
  gnome-session-properties (Christian Persch)
- Make the strings appear translated in gnome-session-properties (Luca
  Ferretti)

Translations:
- Updated ar: Anas Afif Emad
- Updated be@latin: Ihar Hrachyshka
- Updated ca: David Planella
- Updated dz: Dawa pemo
- Updated fi: Timo Jyrinki
- Updated it: Luca Ferretti
- Updated ja: Takeshi AIHANA
- Updated mk: Jovan Naumovski
- Updated pt_BR: Og Maciel
- Updated ru: Leonid Kanter

==============
Version 2.24.0
==============

- Convert the username to UTF-8 in the logout dialog (Frederic Crozat)
- Fix leaks (Matthias Clasen)
- Turn off debugging by default (Vincent)

Translations:
- Updated ar: Anas Afif Emad
- Updated bn_IN: Runa Bhattacharjee
- Updated ca: David Planella
- Updated da: M.P. Rommedahl
- Updated de: Hendrik Richter
- Updated el: Kostas Papadimas
- Updated es: Jorge González
- Updated et: Ivar Smolin
- Updated eu: Iñaki Larrañaga Murgoitio
- Updated fi: Timo Jyrinki
- Updated fr: Claude Paroz
- Updated hr: Launchpad Translations Administrators
- Updated hu: Gabor Kelemen
- Updated it: Luca Ferretti
- Updated kn: Shankar Prasad
- Updated lt: Žygimantas Beručka
- Updated mr: Sandeep Shedmake
- Updated ro: Eddy Petrișor
- Updated sv: Daniel Nylander
- Updated ta: I. Felix
- Updated tr: Baris Cicek
- Updated zh_HK: Chao-Hsiung Liao
- Updated zh_TW: Chao-Hsiung Liao

===============
Version 2.23.92
===============

- Make all desktop files translatable (Vincent Untz)
- Avoid gnome-wm launching itself in loop (Vincent Untz)
- Remove required components from the default session (Vincent Untz)
- Rename /desktop/gnome/session/required_components key (Vincent Untz)
- Do not use dash but underscore to separate words in gconf keys (Vincent Untz)

Translations:
- Updated es: Jorge Gonzalez
- Updated fr: Claude Paroz
- Updated bg: Alexander Shopov
- Updated nl: Wouter Bolsterlee
- Updated pt_BR: Leonardo Ferreira Fontenelle
- Updated pt: Duarte Loreto
- Updated zh_CN: Funda Wang
- Updated ml: Praveen Arimbrathodiyil
- Updated nb: Kjartan Maraas
- Updated ko: Changwoo Ryu
- Updated it: Luca Ferretti
- Updated sv: Daniel Nylander
- Updated pl: Tomasz Dominikowski
- Updated ga: Seán de Búrca
- Updated vi: Nguyễn Thái Ngọc Duy
- Updated cs: Petr Kovar
- Updated et: Priit Laes  <plaes at svn dot gnome dot
- Updated th: Theppitak Karoonboonyanan
- Updated en_GB: Philip Withnall

===============
Version 2.23.91
===============

- Fixed #548710, metacity is not respawned when dies (William Jon McCann)
- Fixed #548909, compilation fix (Jens Granseuer)
- Fixed #548980, make non-fatal errors are treated as such (Frederic Crozat)
- Fixed #548982, do not set a11y gtk modules if at registry could not be
  started (Frederic Crozat)
- Honor the list of required apps in the list key instead of loading all
  component keys in the dir (William Jon McCann)
- Look in app dirs for required components (William Jon McCann)
- Do not use and install gnome-wm by default (William Jon McCann)
- Add command line option to override the gconf key used to look up the default
  session (William Jon McCann)
- Fix add/edit dialog of the capplet (William Jon McCann)
- Fix leaks (Matthias Clasen)
- Code cleanups (Matthias Clasen)
- Fixed #546863, make sure there is a session bus running (Colin Walters,
  Vincent Untz)
- Fixed #550211, add --logout, --force-logout, --logout-dialog and
  --shutdown-dialog arguments to gnome-session-save, and deprecate --kill
  (Vincent Untz)
- Fixed #542880, set GNOME_DESKTOP_SESSION_ID environment variable for
  compatibility reasons (Vincent Untz)
- Fixed #547272, make gnome-keyring-daemon work correctly again in the session
  (Vincent Untz, Stef Walter)

Translations:
- Updated cs: Petr Kovar
- Updated de: Mario Blättermann
- Updated es: Jorge González
- Updated eu: Iñaki Larrañaga Murgoitio
- Updated fi: Ilkka Tuohela
- Updated fr: Robert-André Mauchin
- Updated ga: Seán de Búrca
- Updated he: Yair Hershkovitz
- Updated ja: Takeshi AIHANA
- Updated mk: Arangel Angov
- Updated nb: Kjartan Maraas
- Updated pt_BR: Vladimir Melo
- Updated ru: Leonid Kanter
- Updated sv: Daniel Nylander
- Updated th: Theppitak Karoonboonyanan
- Updated vi: Clytie Siddall

===============
Version 2.23.90
===============

- Remove inhibitors for the client when it disconnects
- Add log/debugging framework
- Add signal handling framework
- Add support for stopping/killing apps
- Add command line option to override autostart dirs (used by GDM)
- Improve QES,ES,CES error handling
- Remove gnome-login-sound (replaced by libcanberra-login-sound)
- Rework the capplet dialogs to use gobject.
- Make gnome-session-save tool use D-Bus API
- Fixed #521413, Fixes for sparse warnings in gnome-session (Kjartan Maraas)
- Fixed #546410, splash no longer disappear (Frederic Crozat)
- Fixed #546439, missing include for pid_t (Jens Granseuer)
- Fixed #546722, Need bump dbus-glib dependency to 0.76 (William Jon McCann)
- Fixed #546896, crash wen passing null strings to key_file_set_locale_string() (William Jon McCann)
- Fixed #547069, [patch] Logout by sending XSMP SaveYourselfRequest is broken (William Jon McCann)
- Fixed #547443, crashes on desktop parsing errors (William Jon McCann)
- Fixed #547619, gnome-session 2.23.6 doesn't compile on Solaris (Erwann Chenede -)
- Fixed #547769, part of gnome-wm potentially can break (Ghee Teo)
- Fixed #548129, gnome-session-properties doesn't create ~/.config/autostart (William Jon McCann)
- Fixed #548259, g-s thinks that metacity is 'not responding' if it was --replace'd (William Jon McCann)

Translations:
- Updated ar: Khaled Hosny
- Updated cs: Petr Kovar
- Updated es: Jorge González, Jorge Gonzalez
- Updated et: Ivar Smolin
- Updated fi: Timo Jyrinki
- Updated fr: Robert-André Mauchin
- Updated he: Yair Hershkovitz
- Updated ml: Harivishnu, Hari Vishnu
- Updated nb: Kjartan Maraas
- Updated pl: Tomasz Dominikowski  <tdominikowski@aviary.pl>
+	* pl.po: Updated Polish
- Updated pt: Duarte Loreto
- Updated pt_BR: Og Maciel <ogmaciel@gnome.org>
+    * pt_BR.po: Updated translation Vladimir
- Updated th: Theppitak Karoonboonyanan
- Updated zh_HK: Chao-Hsiung Liao
- Updated zh_TW: Chao-Hsiung Liao


==============
Version 2.23.6
==============

General

        * dbus_based branch redesign moved to trunk
            http://live.gnome.org/SessionManagement/GnomeSession.


Session Manager

        * New D-Bus API
        * Set environment variables in session bus activation environment (Ray Strode)

==============
Version 2.23.3
==============

General

	* Port gnome-session-save tool to new code base (Lucas Rocha) 
	* Misc memory leaks fixes (Lucas Rocha)

Session Manager

	* Shutdown D-Bus, XSMP and GConf when session is over (Lucas Rocha)
	* Emit "SessionRunning" and "SessionOver" D-Bus signals when
	  stating and ending a session respectively (Lucas Rocha)
	* Splash screen goes away when session is fully running (Lucas Rocha)
	* Fix gnome-keyring-wrapper program to correctly set SSH_AUTH_SOCK env
	  variable on session initialization phase (Lucas Rocha)
	* Fix crash when appending apps defined on legacy session file (Ed Catmur)
	* Fix the support for custom application icons to be shown on splash screen 
	  via startup notification (Lucas Rocha)
	* Deal with the possibility of multiple local connections, and recognize 
	  "unix/" as a local connection prefix as well as "local/". Fixes XSMP 
	  under Fedora Rawhide (Dan Winship)
	* Remove dialog shown after a timeout in at-spi wrapper program in order 
	  to avoid false-positive at-spi errors (Lucas Rocha)

Session Properties Capplet

	* Add support for drag and drop of desktop files on Session Properties
	  capplet (Jared Moore) 

Translators

	* Djihed Afifi (ar)
	* Ihar Hrachyshka (be@latin)
	* Jorge Gonzalez (es)
	* Clytie Siddall (vi)
	* Ignacio Casal Quinteiro (gl)
	* Gabor Kelemen (hu) 

================
Version 2.23.2.2
================

Session Properties Capplet

	* Fixed a critical crash when adding/editing startup apps.
	* Don't mark widget labels for translation on .glade file.

================
Version 2.23.2.1
================

General

	* Fixed libglade dependency to 2.3.6.

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

Session Properties Capplet

	* Capplet ported to new code base with several code cleanups.

Translators

	* Jorge Gonzalez (es)
	* Yair Hershkovitz (he)
	* Ignacio Casal Quinteiro (gl)
	* Yavor Doganov (bg)

================
Version 2.23.1.1
================

General

	* Don't install any files on old default-session directories anymore 
          in order to avoid installation problems.

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

General

	* First development version with the brand-new code base. It completes 
          the first milestone which is to have a default session running. To know 
          more about the new architecture: 

            http://live.gnome.org/SessionManagement/NewGnomeSession.

          For now, the new code base still has quite a lot of regressions which
          we plan to fix during the 2.23/2.24 development cycle.

Translators

	* Daniel Nylander (sv)
	* Jorge Gonzalez (es)
	* Kjartan Maraas (nb)
	* Marcel Telka ()
	* Eskild Hustvedt (nn)
	* Nguyễn Thái Ngọc Duy (vi)

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

Translators

	* Alexander Nyakhaichyk (be)
	* Kenneth Nielsen (da)
	* NikosCharonitakis (el)
	* Gabor Kelemen (hu)
	* Vasiliy Faronov (ru)
	* Marcel Telka (sk)

===============
Version 2.21.93
===============

Misc

	* Remove hard dependency on esound, this is handled by
	  gnome-settings-daemon now (Bastien Nocera)

Session Manager

	* Don't start the sound server, and play the login sound when
	  gnome-settings-daemon tells us the sound server has started (Bastien
	  Nocera)

Translators

	* Khaled Hosny (ar)
	* Runa Bhattacharjee (bn_IN)
	* David Lodge (en_GB)
	* Jorge González (es)
	* Stéphane Raimbault (fr)
	* Luca Ferretti (it)
	* Takeshi AIHANA (ja)
	* Žygimantas Beručka (lt)
	* sandeep shedmake (mr)

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

Misc

	* Require gnome-keyring >= 2.21.92 (Stef Walter)

Session Manager

	* Correctly handle the environment variables given by gnome-keyring to
	  make it work in the whole session (Stef Walter)

Translators

	* Ihar Hrachyshka (be@latin)
	* Jordi Mallach (ca)
	* Ilkka Tuohela (fi)
	* Claude Paroz (fr)
	* Changwoo Ryu (ko)
	* Nabin Gautam (ne)
	* Wouter Bolsterlee (nl)
	* Yannig Marchegay (Kokoyaya) (oc)
	* Matej Urbančič (sl)
	* Yang Zhang (zh_CN)


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

Session Manager

	* Make login sound work again (Bastien Nocera)

Translators

	* Khaled Hosny (ar)
	* Andre Klapper (de)
	* Massimo Furlani (fur)
	* Ignacio Casal Quinteiro (gl)
	* Arangel Angov (mk)
	* Tomasz Dominikowski (pl)
	* Leonardo Ferreira Fontenelle (pt_BR)
	* Duarte Loreto (pt)
	* Daniel Nylander (sv)
	* Theppitak Karoonboonyanan (th)
	* Baris Cicek (tr)
	* Woodman Tuen (zh_HK)
	* Woodman Tuen (zh_TW)

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

Session Manager

	* Use max dithering again for splash (Frederic Crozat)
	* Change capplet title (Luca Ferretti)
	* HIG fixes in the capplet (Luca Ferretti)

Translators

	* Khaled Hosny (ar)
	* Petr Kovar (cs)
	* Jorge González (es)
	* Ivar Smolin (et)
	* Iñaki Larrañaga Murgoitio (eu)
	* Luca Ferretti (it)
	* Kjartan Maraas (nb)

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

Session Manager

	* Set orientation with randr too (Luca Cavalli)
	* Fix warnings and plug leaks (Kjartan Maraas, Matthias Clasen,
	  Vincent)
	* HIG fixes (Dennis Cranston)
	* Remove randr calls, they are done by gnome-settings-daemon now
	  (Lucas Rocha)

Misc

	* Add session .desktop file (William Jon McCann)

Translators

	* Anas Husseini (ar)
	* Ihar Hrachyshka (be@latin)
	* Petr Kovar (cs)
	* Jorge González (es)
	* Ivar Smolin (et)
	* Iñaki Larrañaga Murgoitio (eu)
	* Claude Paroz (fr)
	* Seán de Búrca (ga)
	* Yair Hershkovitz (he)
	* Gabor Kelemen (hu)
	* Kjartan Maraas (nb)
	* Yannig Marchegay (Kokoyaya) (oc)
	* Vladimir Melo (pt_BR)
	* Vasiliy Faronov (ru)
	* Matej Urbančič (sl)
	* Daniel Nylander (sv)
	* Clytie Siddall (vi)

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

Misc

	* Require GTK+ >= 2.11.1 (Sebastian Dröge)

Translators

	* Ihar Hrachyshka (be@latin)
	* Alexander Shopov (bg)
	* Ilkka Tuohela (fi)
	* Changwoo Ryu (ko)

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

Translators

	* Anas Husseini (ar)
	* Jordi Mallach (ca)
	* Ask Hjorth Larsen (da)
	* NikosCharonitakis (el)
	* Stéphane Raimbault (fr)
	* Luca Ferretti (it)
	* Artur Flinta (pl)
	* Nickolay V. Shmyrev (ru)
	* Peter Tuhársky (sk)
	* Горан Ракић (sr)

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

Misc

	* Fix compiz support in gnome-wm (Kristian Hoegsberg)

Translators

	* Andre Klapper (de)
	* NikosCharonitakis (el)
	* Adam Weinberger (en_CA)
	* Ivar Smolin (et)
	* Žygimantas Beručka (lt)
	* Duarte Loreto (pt)

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

Translators

	* Inaki Larranaga Murgoitio (eu)
	* Ankit Patel (gu)
	* Andre Klapper (de) 
	* Jovan Naumovski (mk)
	* Vladimir Melo (pt_BR)
	* I. Felix (ta)

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

Misc

	* Have a better/smoother fadeout animation for logout dialog when
	  there's a compositing manager (Travis Watkins, Vincent)
	* Add gnome-breakpad to GTK_MODULES if bug-buddy is present
	  (Fernando Herrera)

Translators

	* Ilkka Tuohela (fi)
	* Gabor Kelemen (hu)
	* Takeshi AIHANA (ja)
	* Wouter Bolsterlee (nl)
	* Bharat Kumar (te)
	* Yang Zhang (zh_CN)

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

Misc

	* Use g_option_context_set_translation_domain() (Vincent)
	* Fix compilation not working on some dates... (Vincent)

Translators

	* Tomasz Dominikowski (pl)
	* Danishka Navin (si)
	* Pavan Kumar (te)
	* Clytie Siddall (vi)

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

Session Manager

	* Use g_timeout_add_seconds() when possible (Vincent)
	* Improve a bit "wrong clock" check when the user has reconfigured his
	  clock (Vincent)
	* Fix crash when icons on the splash screen needs to be relayout-ed
	  (Vincent)
	* Fix compilation issue on Solaris (Vincent)

Session Properties Dialog

	* Fix a crash when the comment for a .desktop file is not defined and a
	  startup program is disabled (Vincent)

Misc

	* Require glib 2.13.0

Translators

	* Tshewang Norbu (dz)

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

Session Manager

	* Don't do logout fade if there's a compositing manager running
	  (Ray Strode, Bastien Nocera)
	* Start accessibility if GNOME_ACCESSIBILITY is set (Wouter Bolsterlee,
	  Vincent)

Session Properties Dialog

	* Small code cleanup (Vincent)

Translators

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

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

Session Manager

	* Use g_usleep() instead of usleep() (Bastien Nocera)
	* Don't hardcode start of assistive technologies software (Ariel Rios,
	  Vincent)
	* Fix splash screen in RTL environments (Yair Hershkovitz)
	* Improve splash screen on old displays (Fedora patch)
	* Make it possible to use a shaped window for the splash screen
	  (Fedora patch, Vincent)
	* Display the name of the started application in splash screen even if
	  there's no icon (Vincent)
	* Don't use deprecated functions (Christian Persch, Vincent)
	* Don't hardcode esound for the sound daemon (Matthias Clasen, Vincent)
	* Make the fade on logout faster (Christof Krüger)
	* Plug leaks (Vincent)
	* Warn the user if he logs in as root (Vincent, Dan Winship)
	* Warn the user if the clock is totally wrong and let him launch a
	  config tool (Vincent, Dan Winship)
	* Change strings about saving the session to be more user-friendly
	  (Vincent)
	* Remove workaround that chrooted esd to / (fixed in esd) (Vincent)
	* Make it possible to save a session with multiple clients that are the
	  same program (Hans de Goede, Dan Winship)
	* Use the new socket path for GDM (Loïc Minier)

Session Properties Dialog

	* Use Add/Remove instead of New/Delete for handling startup programs
	  (Luca Ferretti)
	* Show the comments in the startup programs list (Vincent)
	* Change strings about saving the session to be more user-friendly
	  (Vincent)
	* Make it possible to sort the program lists by clicking on the headers
	  (Vincent)
	* Create a non-localized version of the Comment field in .desktop files
	  if necessary (Vincent)

Misc

	* Remove xrdb check (Andreas Hanke)
	* Build fixes (Andreas Hanke, Christian Persch)
	* Require glib 2.12.0 (Vincent)
	* Add --with-time-utility configure flag to set the executable that is
	  used to configure the time of the computer (Vincent)
	* Don't require libgnome-desktop anymore (Vincent)
	* Add support for beryl in gnome-wm (Alex)

Translators

	* Peter Bach (da)
	* Jorge González (es)
	* Ivar Smolin (et)
	* Iñaki Larrañaga Murgoitio (eu)
	* Ignacio Casal Quinteiro (gl)
	* Yair Hershkovitz (he)
	* Espen Stefansen (nb)
	* Yannig MARCHEGAY (Kokoyaya) (oc)
	* Yang Zhang (zh_CN)

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

Session Manager

	* Drop legacy http_proxy support entirely since it is causing too
	  many issues (Ray Strode)

Session Properties Dialog

	* Remove invalid category in .desktop file (Christian Kirbach)

Translators

	* norbu (dz)
	* Ankit Patel (gu)
	* Luca Ferretti (it)
	* Takeshi AIHANA (ja)
	* Erdal Ronahi (ku)
	* Gintautas Miliauskas (lt)
	* Jovan Naumovski (mk)
	* wadim dziedzic (pl)
	* Og Maciel (pt_BR)
	* Leonid Kanter (ru)
	* Laurent Dhima (sq)
	* Горан Ракић (sr)
	* Maxim Dziumanenko (uk)
	* Woodman Tuen (zh_HK)

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

Session Manager

	* Use the correct rate when a X resolution is configured
	  (Jens Granseuer)
	* Don't exit when there's an unexpected dbus disconnection
	  (Jan de Groot)

Session Properties Dialog

	* Update the category for the .desktop file

Misc

	* Distribute MAINTAINERS (Kjartan Maraas)

Translators

	* Alexander Shopov (bg)
	* Jordi Mallach (ca)
	* Hendrik Richter (de)
	* Ivar Smolin (et)
	* Ilkka Tuohela (fi)
	* Gabor Kelemen (hu)
	* Kjartan Maraas (nb)
	* Wouter Bolsterlee (nl)
	* Duarte Loreto (pt)
	* Maxim Dziumanenko (uk)
	* Funda Wang (zh_CN)

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

Session Manager

	* Increase timeout for starting at-spi-registryd. This should prevent
	  showing a window warning that accessibility won't work on slow
	  machines. (Frédéric Crozat)
	* Hardcode start of assistive technologies software again since the
	  control center won't be ready for this in 2.18 (Vincent)

Translators

	* Khaled Hosny (ar)
	* Ihar Hrachyshka (be)
	* Lasse Bang Mikkelsen (da)
	* David Lodge (en_GB)
	* Ivar Smolin (et)
	* Ilkka Tuohela (fi)
	* Claude Paroz (fr)
	* Young-Ho Cha (ko)
	* Kjartan Maraas (nb)
	* Tino Meinen (nl)
	* Og Maciel (pt_BR)
	* Clytie Siddall (vi)

=================
Version 2.17.90.1
=================

Misc

	* Fix installation of default.session (Vincent)

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

Session Manager

	* Kill the clients in reverse order of priority, which makes logging
	  out a better experience (metacity is killed last) (Tom Tromey)
	* Remove useless code (Claudio Saavedra)

Session Properties Dialog

	* Update categories in the .desktop file for the new control center
	  (Vincent)
	* Use new icon (Vincent)

Misc

	* Remove useless files and move some files in the module (Vincent)
	* New session properties icon (Jakub Steiner)

Translators

	* Khaled Hosny (ar)
	* Hendrik Richter (de)
	* David Lodge (en_GB)
	* Daniel Nylander (sv)
	* Theppitak Karoonboonyanan (th)

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

Misc

	* Add a configure option to specify the directory of at-spi-registryd
	  (Ariel Rios, Vincent)
	* Build improvements (Vincent)
	* Remove spec file (Vincent)

Session Manager

	* Warn the user about more fatal errors (Tom Tromey)
	* Use gtk-window-decorator for compiz (Vincent)
	* Fix crash when two at-spi-registryd are running (Li Yuan)
	* Don't hardcode start of assistive technologies software (Ariel Rios,
	  Vincent)
	* Start the dbus daemon if it's not running (Julio M. Merino Vidal)
	* Kill esd on exit (Loïc Minier)
	* Fix priority order of autostart desktop files with the same name
	  (Vincent)
	* Fix invalid use of memory (Tom Tromey)
	* Fix quoting of commands when migration to new autostart system
	  (Tom Tromey)

Session Properties Dialog

	* Fix priority order of autostart desktop files with the same name
	  (Vincent)
	* Report connection errors more gracefully (Tom Tromey)
	* Use GOption (Vincent)
	* Reuse existing desktop files instead of overwriting them (Vincent)
	* Rework code of edition of startup programs so that it actually works
	  well and comply with the freedesktop spec (Vincent)
	* Use a toggle button to enable/disable startup programs (Vincent)
	* Add a "Save current session" button (Josselin Mouette)
	* Remove "ask to save" toggle button (Josselin Mouette)
	* Remove edition of session names (Vincent)
	* Remove splash screen toggle button (Vincent)
	* Change order of the tabs (Vincent)
	* Fix desktop file to use a correct icon (Vincent)
	* Improve default size of the dialog (Vincent)
	* Show names instead of commands for the startup programs (Vincent)
	* HIGify quit dialog (Michael Terry, Vincent)

Translators

	* Khaled Hosny (ar)
	* Ihar Hrachyshka (be)
	* Adam Weinberger (en_CA)
	* David Lodge (en_GB)
	* Francisco Javier F. Serrador (es)
	* Ivar Smolin (et)
	* Raivis Dejus (lv)
	* Kjartan Maraas (nb)
	* Eddy Petrișor (ro)
	* Theppitak Karoonboonyanan (th)
	* Clytie Siddall (vi)

==============
Version 2.17.3
==============

Misc

	* Make it build on older distros (Vincent)
	* Allow enabling/disabling tcpwrappers (Saleem Abdulrasool)
	* Update man pages (Vincent)

Session Manager

	* Fix bug where clicking logout button doesn't work if
          mouse pointer happens to be on top of the button when
          the window is mapped (bug 52047) (Ray Strode)
	* Make treview searching search the right column
	  (Brent Smith)
	* Get rid of init as the parent of all processes
	  (Tom Tromey)
	* Add fading effect for the splash screen icons
	  (Daniel Godás)
	* Add command line option to avoid confirmation dialog
	  on kill (William McCann)
	* Add fvwm support (Ken Deeter)
	* Add support for compiz (Vincent)
	* Do less work if $WINDOW_MANAGER is set (Vincent)
	* Set http_proxy variable correctly (Ray Strode)
	* Don't set http_proxy variable at all if the proxy
	  requires authentication (Ray Strode)

Translators

	* Daniel Nylander (sv)

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

  Session Manager

	* Don't pop up useless dialog when saving session (Tom Tromey)
	* Accept Enter key to close dialog when editing a session/startup
	  program (Tom Tromey)
	* Set http_proxy environment variable based on GNOME settings
	  for legacy apps (Ray Strode)
	* Launch at-spi-registryd for accessibility (Ariel Ros)
	* Improve gnome-session-remove command line handling (Tom Tromey)
	* Use Program instead of Command in the capplet (Tom Tromey)

  Misc

	* Check for libXau existence (Vincent, Frederic Peters)
	* Add configure switch to disable esd support (Leonardo Boshell)

  Translators

	* Djihed Afifi (ar)
	* Guillaume Savaton (eo)
	* Ignacio Casal Quinteiro (gl)
	* Åsmund Skjæveland (nn)

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

  Misc

	* Updated man pages from Debian (Kjartan Maraas)

  Translators

	* Rostislav "zbrox" Raykov (bg)
	* David Lodge (en_GB)
	* Ivar Smolin (et)
	* Luca Ferretti (it)

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

  Misc

	* Updated splash screen (Andreas Nilsson, Vincent)

  Translators

	* Jordi Mallach (ca)
	* Kostas Papadimas (el)
	* Robert-André Mauchin (fr)
	* Rajesh Ranjan (hi)
	* Gabor Kelemen (hu)
	* Gintautas Miliauskas (lt)
	* Raivis Dejus (lv)
	* Duarte Loreto (pt)
	* Vasiliy Faronov (ru)
	* Felix (ta)

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

  Session Manager

	* Fix crash caused by debug output on Solaris (Brian Cameron)

  Translators

	* Rostislav "zbrox" Raykov (bg)
	* Khandakar Mujahidul Islam (bn)
	* Mindu Dorji (dz)
	* Mate ORY (hu)
	* Satoru SATOH (ja)
	* Young-Ho Cha (ko)
	* Artur Flinta (pl)
	* Matic Žgur (sl)
	* Daniel Nylander (sv)
	* Maxim Dziumanenko (uk)
	* Clytie Siddall (vi)
	* Funda Wang (zh_CN)

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

  Session Manager

	* Fix leaks (Rodrigo Moya, Vincent)
	* Use GOption (Michael Terry)
	* Make it possible to really disable the login sound (Vincent)
	* Set the right parent window for an error dialog (Vincent)
	* Update keyring daemon DISPLAY environment variable if it's already
	  running (Jon Nettleton)
	* Fix sensitivity of edit/delete buttons when editing sessions
	  (Don Scorgie, Vincent)
	* Add support for e16 window manager in gnome-wm (Kim Woelders)
	* Fix edition of startup programs containing a space in a command line
	  argument (Vincent)
	* Fix warning (Kjartan Maraas)
	* Backward compatibility to run orca if gnopernicus is not available
	  and the gconf key is set to gnopernicus (Bill Haneman, Willie Walker)

  Misc

	* Add gnome-keyring dependency (Vincent)

  Translators

	* Runa Bhattacharjee (bn_IN)
	* Rhys Jones (cy)
	* Jochen Skulj (de)
	* Francisco Javier F. Serrador (es)
	* Priit Laes (et)
	* Iñaki Larrañaga Murgoitio (eu)
	* Ilkka Tuohela (fi)
	* Ankit Patel (gu)
	* Fano Rajaonarisoa (mg)
	* Jovan Naumovski (mk)
	* Ani Peter (ml)
	* Kjartan Maraas (nb)
	* Tino Meinen (nl)
	* Subhransu Behera (or)
	* A S Alam (pa)
	* Evandro Fernandes Giovanini (pt_BR)
	* Duarte Loreto (pt)
	* Leonid Kanter (ru)
	* Marcel Telka (sk)
	* Jayaradha N (ta)
	* Theppitak Karoonboonyanan (th)
	* Woodman Tuen (zh_HK)
	* Woodman Tuen (zh_TW)

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

  Translators

	* Subhransu Behera (or)

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

  Session Manager

	* Improve verbosity string (Glynn Foster)
	* Fix critical warning when removing a client (Kjartan Maraas)
	* Create autostart directory if it doesn't exist (Ray Strode)
	* Give generated desktop filenames .desktop extension when encountering
	  naming conflicts (Ray Strode)
	* Launch gnome-settings-daemon through dbus (Sergey Udaltsov)

  Misc

	* Use po/LINGUAS (Claudio Saavedra)
	* Require intltool 0.35.0 (Vincent)
	* Add gnome-settings-daemon (from gnome-control-center) dependency
	  (Sergey Udaltsov)
	* Add dbus dependency (Vincent)

  Translators

	* Khandakar Mujahidul Islam (bn_IN)
	* Guillaume Savaton (eo)
	* Laurent Richard (fr)
	* Young-Ho Cha (ko)
	* Rahul Bhalerao (mr)
	* Pablo Saratxaga (wa)

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

  Session Manager

	* Use libgnomeui functions instead of libegg (Vincent)
	* Fix "try again" dialog never disappearing (Frédéric Crozat)
	* Fix crash in 64 bits computers (Joe Marcus Clarke)
	* Reduce default verbosity (Fryderyk Dziarmagowski)

  Translators

	* Mindu Dorji (dz)

==============
Version 2.14.1
==============

  Session Manager

	* Share one GConfClient (Rodrigo Moya)
	* Plug leaks (Kjartan Maraas)

  Translators

	* Ales Nyakhaychyk (be)
	* Pema Geyleg (dz)
	* Kostas Papadimas (el)
	* Laurent Richard (fr)
	* Gil Osher (he)

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

  Session Manager

	* Support old directory for autostart .desktop files (Rodrigo)
	* Fix leak (Rodrigo)
	* Fix enabling/disabling of autostart services (Vincent)

  Misc
	* New splash screen (Thomas Wood)

  Translators

	* Petr Tomeš (cs)
	* Rhys Jones (cy)
	* Martin Willemoes Hansen (da)
	* Hendrik Richter (de)
	* Ivar Smolin (et)
	* Elnaz Sarbar (fa)
	* Raivis Dejus (lv)
	* Sebastian Ivan (ro)
	* Daniel Nylander (sv)
	* Maxim Dziumanenko (uk)

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

  Session Manager

	* Fixes for writing the list of startup applications (Rodrigo Moya)
	* Start gnome-settings-daemon as early as possible (Rodrigo Moya)
	* Use $datadir/gnome/autostart for autostart .desktop file
	  (Rodrigo Moya)

  Translators

	* Ivar Smolin (et)
	* Iñaki Larrañaga (eu)
	* Mate ORY (hu)
	* Luca Ferretti (it)
	* Takeshi AIHANA (ja)
	* Vladimer Sichinava (ka)
	* Žygimantas Beručka (lt)
	* Duarte Loreto (pt)
	* Leonid Kanter (ru)
	* Laurent Dhima (sq)
	* Woodman Tuen (zh_HK)
	* Woodman Tuen (zh_TW)

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

  Session Manager

	* Really start vino asynchronously (Michael Meeks)

  Translators

	* Miloslav Trmac (cs)
	* Ivar Smolin (et)
	* Слободан Д. Средојевић (sr)
	* Theppitak Karoonboonyanan (th)
	* Wang Jian (zh_CN)

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

  Session Manager

	* Add program autostart with .desktop files in known directories,
	  like /usr/share/autostart (Rodrigo Moya, Ray Strode)

  Misc

	* Depends on gnome-desktop-2.0

  Translators

	* Rostislav "zbrox" Raykov (bg)
	* Jordi Mallach (ca)
	* Adam Weinberger (en_CA)
	* Francisco Javier F. Serrador (es)
	* Ivar Smolin (et)
	* Ilkka Tuohela (fi)
	* Ignacio Casal Quinteiro (gl)
	* Ankit Patel (gu)
	* Luca Ferretti (it)
	* Kjartan Maraas (nb)
	* Tino Meinen (nl)
	* Kjartan Maraas (no)
	* Evandro Fernandes Giovanini (pt_BR)
	* Marcel Telka (sk)
	* Theppitak Karoonboonyanan (th)
	* Clytie Siddall (vi)

==============
Version 2.13.5
==============

  Misc

	* Set GTK+ modules to load so that all programs, even those started
	  early, use them (Muktha Narayan)

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

  Misc

	* Make GNOME crash on critical warnings (Kjartan Maraas, Vincent Untz,
	  Federico Mena Quintero, Elijah Newren)
	* Only run the reverse DNS check if necessary (Rodrigo Moya)
	* Login speed improvements (Rodrigo Moya)
	* New splash screen (Thomas Wood)

  Translators

	* Rostislav "zbrox" Raykov (bg)
	* Khandakar Mujahidul Islam (bn)
	* Kostas Papadimas (el)
	* Priit Laes (et)
	* Iñaki Larrañaga Murgoitio (eu)
	* Erdal Ronahi (ku)
	* Christian Rose (sv)
	* Theppitak Karoonboonyanan (th)
	* Clytie Siddall (vi)

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