summaryrefslogtreecommitdiff
path: root/ChangeLog
blob: ceb6545fba02a69eceb378a8fd6b12414a4a6ee9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
2004-10-30 16:00  pollux

	* po/: lt.gmo, lt.po: update LT translations

2004-10-28 13:55  pollux

	* po/he.gmo, po/he.po,
	  settings/session/xfce-session-settings.desktop,
	  settings/splash/xfce-splash-settings.desktop: update HE
	  translations

2004-10-24 12:59  benny

	* README: Add example for sudoers.

2004-10-23 22:36  benny

	* xfce4-session/xfsm-manager.h: Further increase the SaveYourself
	  timeout.

2004-10-23 22:23  benny

	* xfce4-session/xfsm-manager.h: Increase SaveYourself timeout for
	  very slow starting apps (KDE, OO.org, ...).

2004-10-23 16:45  olivier

	* ChangeLog: Update ChangeLog

2004-10-22 22:38  olivier

	* ChangeLog, configure, configure.ac, ltmain.sh: Updated versions
	  and change logs

2004-10-21 00:06  pollux

	* po/: et.gmo, et.po: update ET translations

2004-10-20 14:43  benny

	* xfce4-session/xfce4-session.1: Fix session data location and
	  update email address.

2004-10-17 22:34  pollux

	* configure, configure.ac, po/ar.gmo, po/az.gmo, po/be.gmo,
	  po/ca.gmo, po/de.gmo, po/es.gmo, po/es_MX.gmo, po/et.gmo,
	  po/eu.gmo, po/fi.gmo, po/fi.po, po/fr.gmo, po/gu.gmo, po/he.gmo,
	  po/hi.gmo, po/it.gmo, po/ja.gmo, po/ko.gmo, po/lt.gmo, po/ms.gmo,
	  po/nl.gmo, po/no.gmo, po/pa.gmo, po/pl.gmo, po/pt_BR.gmo,
	  po/ru.gmo, po/sk.gmo, po/sv.gmo, po/ta.gmo, po/tr.gmo, po/vi.gmo,
	  po/zh_CN.gmo, po/zh_TW.gmo,
	  settings/session/xfce-session-settings.desktop,
	  settings/splash/xfce-splash-settings.desktop: update FI
	  translations

2004-10-11 18:30  benny

	* po/: ar.po, az.po, be.po, ca.po, de.po, es.po, es_MX.po, et.po,
	  eu.po, fr.po, gu.po, he.po, hi.po, it.po, ja.po, ko.po, lt.po,
	  ms.po, nl.po, no.po, pa.po, pl.po, pt_BR.po, ru.po, sk.po, sv.po,
	  ta.po, tr.po, vi.po, xfce4-session.pot, zh_CN.po, zh_TW.po:
	  update-po for Moe.

2004-10-11 18:13  benny

	* ChangeLog, docs/xfce-nochunk.xsl, docs/C/xfce4-session.html,
	  docs/C/xfce4-session.xml, docs/C/images/xfsm-advanced.png,
	  docs/C/images/xfsm-general.png, docs/C/images/xfsm-splash.png:
	  Update docs, ChangeLog.

2004-10-10 13:52  pollux

	* configure, configure.ac, po/pt_PT.gmo, po/pt_PT.po: update pt_PT
	  translations

2004-10-09 16:20  pollux

	* configure, configure.ac, po/fa.gmo, po/fa.po, po/fa_IR.gmo,
	  po/fa_IR.po: update FA translations

2004-10-09 15:48  pollux

	* po/: es.gmo, es_MX.gmo, pa.gmo, pa.po: Punjabi translations
	  update from jaswinderlinux@netscape.net

2004-10-08 16:55  edscott

	* po/: es.po, es_MX.po: update translations. Note to Benny: there
	  are too many "starting this-or-that" while a "starting %s" is
	  also provided.

2004-10-08 14:17  pollux

	* po/: ru.gmo, ru.po: fix #375

2004-10-07 22:35  benny

	* configure, m4/debug.m4: Added --enable-final (-O1 for GNU ld) as
	  per Jaspers request. Added missing m4 files.

2004-10-06 16:03  benny

	* AUTHORS, ChangeLog, Makefile.am, Makefile.in, configure,
	  configure.ac, xfce4-session.rc, xfce4-session.spec.in,
	  docs/Makefile.in, docs/C/Makefile.in, docs/C/images/Makefile.in,
	  engines/Makefile.in, engines/balou/Makefile.am,
	  engines/balou/Makefile.in, engines/balou/scripts/Makefile.in,
	  engines/balou/themes/Makefile.in,
	  engines/balou/themes/Default/Makefile.in,
	  engines/mice/Makefile.am, engines/mice/Makefile.in,
	  engines/simple/Makefile.am, engines/simple/Makefile.in,
	  icons/Makefile.in, icons/128x128/Makefile.in,
	  icons/48x48/Makefile.in, icons/64x64/Makefile.in,
	  icons/72x72/Makefile.in, icons/scalable/Makefile.in,
	  settings/Makefile.in, settings/session/Makefile.am,
	  settings/session/Makefile.in, settings/splash/Makefile.am,
	  settings/splash/Makefile.in, xfce4-session/Makefile.am,
	  xfce4-session/Makefile.in, xfce4-session/xfce4-session-1.0.pc.in,
	  xfce4-session/xfsm-splash-rc.def,
	  xfsm-shutdown-helper/Makefile.in: Workaround cygwin splash engine
	  problem by installing libxfsm as a shared library. Maarten,
	  please verify that this actually works.

2004-10-05 14:54  benny

	* config.h.in, configure, xfce4-session/xfsm-manager.c: Indent and
	  autogen for Maarten.

2004-10-05 14:50  boekhold

	* xfce4-session/xfsm-manager.c: cygwin: replace : with # in the
	  session file name

2004-10-05 14:49  boekhold

	* configure.ac: define HAVE_OS_CYGWIN if we are on cygwin

2004-10-05 13:27  benny

	* settings/splash/Makefile.in: autogen for Maarten.

2004-10-05 13:24  boekhold

	* settings/splash/Makefile.am: Cygwin link flags...

2004-10-04 15:17  benny

	* configure, xfce4-session/Makefile.am, xfce4-session/Makefile.in:
	  Applied patch from David Fraser <davidf@sjsoft.com>, this fixes
	  bug #304.

2004-10-03 18:14  pollux

	* configure, configure.ac, ltmain.sh, po/pa.gmo, po/pa.po: Punjabi
	  translations (PA) from jaswinderlinux@netscape.net

2004-10-03 17:43  pollux

	* settings/: session/xfce-session-settings.desktop,
	  splash/xfce-splash-settings.desktop: zh_TW translations of
	  desktop files from Ambrose Li <acli@ada.dhs.org>

2004-10-03 01:22  olivier

	* xfce4-session.spec.in: Missing files from spec file

2004-10-02 15:28  olivier

	* ChangeLog, ltmain.sh, po/xfce4-session.pot: Update all files for
	  4.2 beta 1

2004-09-30 17:48  pollux

	* po/: it.gmo, it.po: updated Italian translations from Luca
	  Marrocco <buildup@libero.it>

2004-09-30 17:17  jasper

	* Makefile.am, Makefile.in, configure, docs/Makefile.am,
	  docs/Makefile.in, docs/C/Makefile.am, docs/C/Makefile.in,
	  docs/C/xfce4-session.html, engines/balou/Makefile.am,
	  engines/balou/Makefile.in, engines/mice/Makefile.am,
	  engines/mice/Makefile.in, engines/simple/Makefile.am,
	  engines/simple/Makefile.in, settings/session/Makefile.am,
	  settings/session/Makefile.in, settings/splash/Makefile.am,
	  settings/splash/Makefile.in, xfce4-session/Makefile.am,
	  xfce4-session/Makefile.in, xfsm-shutdown-helper/Makefile.am,
	  xfsm-shutdown-helper/Makefile.in: Don't build docs by default and
	  fix make distcheck target.

2004-09-30 14:59  benny

	* configure, configure.ac, xfce4-session.rc, docs/C/.cvsignore,
	  docs/C/images/.cvsignore, icons/scalable/.cvsignore,
	  xfce4-session/Makefile.in: Update version to 4.1.90.

2004-09-29 10:22  pollux

	* po/: zh_TW.gmo, zh_TW.po: updated zh_TW translations from Ambrose
	  Li <acli@ada.dhs.org>

2004-09-29 09:59  pollux

	* po/: zh_CN.gmo, zh_CN.po: updated zh_CN translations from yongtao
	  yang <yongtao.yang@gmail.com>

2004-09-27 16:39  boekhold

	* xfce4-session/Makefile.am: Change library order for cygwin

2004-09-26 15:40  benny

	* AUTHORS, BUGS, NEWS, configure, configure.ac,
	  xfce4-session/shutdown.c, xfce4-session/xfsm-fadeout.c: Don't
	  grab display on logout to make xfce4-session work with
	  compositors.

2004-09-23 23:36  pollux

	* configure, configure.ac, po/gu.gmo, po/gu.po, po/nl.gmo: add
	  Gujarati translations (GU) from Ankit Patel <ankit@redhat.com>

2004-09-23 11:09  jasper

	* settings/session/xfce-session-settings.desktop,
	  settings/splash/xfce-splash-settings.desktop, po/nl.po: Better
	  translation

2004-09-23 10:22  jasper

	* settings/: session/xfce-session-settings.desktop,
	  splash/xfce-splash-settings.desktop: Add nl translations

2004-09-22 05:18  kelnos

	* settings/: session/xfce-session-settings.desktop,
	  splash/xfce-splash-settings.desktop: add GenericName tags to
	  settings .desktop files

2004-09-21 13:51  jasper

	* po/: ar.gmo, ar.po, az.gmo, az.po, be.gmo, be.po, ca.gmo, ca.po,
	  de.gmo, de.po, es.gmo, es.po, es_MX.gmo, es_MX.po, et.gmo, et.po,
	  eu.gmo, eu.po, fa_IR.gmo, fa_IR.po, fr.gmo, fr.po, he.gmo, he.po,
	  hi.gmo, hi.po, it.gmo, it.po, ja.gmo, ja.po, ko.gmo, ko.po,
	  lt.gmo, lt.po, ms.gmo, ms.po, nl.gmo, nl.po, no.gmo, no.po,
	  pl.gmo, pl.po, pt_BR.gmo, pt_BR.po, ru.gmo, ru.po, sk.gmo, sk.po,
	  sv.gmo, sv.po, ta.gmo, ta.po, tr.gmo, tr.po, vi.gmo, vi.po,
	  zh_CN.gmo, zh_CN.po, zh_TW.gmo, zh_TW.po: Run make update-po at
	  Moe's request.

2004-09-21 00:22  olivier

	* ChangeLog, po/xfce4-session.pot: Update all ChangeLogs

2004-09-19 21:40  moe

	* engines/mice/Makefile.am, engines/simple/Makefile.am,
	  settings/session/Makefile.am: Fixing this too

2004-09-19 21:39  moe

	* engines/balou/Makefile.am: Making this work again

2004-09-19 16:47  jasper

	* settings/: session/session.c, splash/splash.c: i18n fixes

2004-09-18 20:27  jasper

	* Makefile.in, configure, docs/Makefile.in, docs/C/Makefile.in,
	  docs/C/images/Makefile.in, engines/Makefile.in,
	  engines/balou/Makefile.in, engines/balou/scripts/Makefile.in,
	  engines/balou/themes/Makefile.in,
	  engines/balou/themes/Default/Makefile.in,
	  engines/mice/Makefile.in, engines/simple/Makefile.in,
	  icons/Makefile.in, icons/128x128/Makefile.in,
	  icons/48x48/Makefile.in, icons/64x64/Makefile.in,
	  icons/72x72/Makefile.in, icons/scalable/Makefile.in,
	  settings/Makefile.in, settings/session/Makefile.in,
	  settings/splash/Makefile.in, xfce4-session/Makefile.in,
	  xfsm-shutdown-helper/Makefile.in: autogen for Maarten + basedir
	  tweaks

2004-09-18 20:08  boekhold

	* configure.ac, engines/balou/Makefile.am,
	  engines/mice/Makefile.am, engines/simple/Makefile.am,
	  settings/session/Makefile.am, xfce4-session/xfsm-splash-rc.def,
	  xfce4-session/xfsm-splash-rc.h: Allows building on cygwin
	  platform

2004-09-18 18:41  pollux

	* po/: de.gmo, eu.gmo, eu.po: update EU translations

2004-09-18 10:56  moe

	* po/de.po: bleh .. no comment

2004-09-18 02:02  moe

	* po/de.po: Updating these for alpha release. Not yet finished ..
	  but I'm just too tired to continue. Needs extensive spell
	  checking and approvement (Note to myself: Write mail to the
	  list!).

2004-09-17 00:10  pollux

	* configure, configure.ac, po/be.gmo, po/be.po: add BE translations
	  from Ales Nyakhaychyk <nab@mail.by>

2004-09-14 22:19  fleclainche

	* icons/: 48x48/xfce4-session.png, 128x128/xfce4-session.png:
	  Updated png icon

2004-09-10 22:49  pollux

	* po/: he.gmo, he.po: HE translations update from Yuval Tanny
	  <tanai@int.gov.il>

2004-09-09 20:51  pollux

	* configure, configure.ac, po/vi.gmo, po/vi.po: update VI
	  translations

2004-09-06 16:08  pollux

	* configure, configure.ac, po/et.gmo, po/et.po, po/nl.gmo: ET
	  translations from Peeter Vois <Peeter.Vois@proekspert.ee>

2004-08-29 18:03  pollux

	* po/: az.gmo, az.po: AZ translations update from Metin Amiroff
	  <metin@karegen.com>

2004-08-28 21:20  pollux

	* configure, configure.ac, po/sk.gmo, po/sk.po: add Slovak
	  translations from Juraj Brosz <Juraj.Brosz@pobox.sk>

2004-08-25 20:34  jasper

	* po/nl.po: Update dutch translations, only po files for now

2004-08-24 14:39  benny

	* BUGS, ChangeLog, Makefile.in, aclocal.m4, configure,
	  configure.ac, docs/Makefile.in, docs/C/Makefile.in,
	  docs/C/images/Makefile.in, engines/Makefile.in,
	  engines/balou/Makefile.in, engines/balou/balou.c,
	  engines/balou/scripts/Makefile.in,
	  engines/balou/scripts/balou-export-theme,
	  engines/balou/scripts/balou-install-theme,
	  engines/balou/themes/Makefile.in,
	  engines/balou/themes/Default/Makefile.in,
	  engines/balou/themes/Default/themerc, engines/mice/Makefile.in,
	  engines/mice/mice.c, engines/simple/Makefile.in,
	  engines/simple/simple.c, icons/Makefile.in,
	  icons/128x128/Makefile.in, icons/48x48/Makefile.in,
	  icons/64x64/Makefile.in, icons/72x72/Makefile.in,
	  icons/scalable/Makefile.in, m4/glib-gettext.m4, m4/pkg.m4,
	  po/POTFILES.in, po/ar.gmo, po/ar.po, po/az.gmo, po/az.po,
	  po/ca.gmo, po/ca.po, po/de.gmo, po/de.po, po/es.gmo, po/es.po,
	  po/es_MX.gmo, po/es_MX.po, po/eu.gmo, po/eu.po, po/fa_IR.gmo,
	  po/fa_IR.po, po/fr.gmo, po/fr.po, po/he.gmo, po/he.po, po/hi.gmo,
	  po/hi.po, po/it.gmo, po/it.po, po/ja.gmo, po/ja.po, po/ko.gmo,
	  po/ko.po, po/lt.gmo, po/lt.po, po/ms.gmo, po/ms.po, po/nl.gmo,
	  po/nl.po, po/no.gmo, po/no.po, po/pl.gmo, po/pl.po, po/pt_BR.gmo,
	  po/pt_BR.po, po/ru.gmo, po/ru.po, po/sv.gmo, po/sv.po, po/ta.gmo,
	  po/ta.po, po/tr.gmo, po/tr.po, po/xfce4-session.pot,
	  po/zh_CN.gmo, po/zh_CN.po, po/zh_TW.gmo, po/zh_TW.po,
	  settings/Makefile.in, settings/session/Makefile.in,
	  settings/session/xfce-session-settings.desktop,
	  settings/splash/Makefile.in,
	  settings/splash/xfce-splash-settings.desktop,
	  xfce4-session/Makefile.in, xfce4-session/xfsm-chooser-trash.c,
	  xfce4-session/xfsm-chooser-trash.h,
	  xfsm-shutdown-helper/Makefile.in: Cleanups. 'gmake dist' checked.
	  Added all required M4 files. Removed obsolete files. Updated
	  several documents. Updated german translations.  Version 4.1.15.

2004-08-24 12:04  pollux

	* configure, configure.ac, po/ru.gmo, po/ru.po: RU translations
	  update from Anthony Ivanoff <a-i@bk.ru>

2004-08-22 17:03  benny

	* xfce4-session/xfsm-manager.c: Fix crash reported by
	  bile@landofbile.com.

2004-08-15 21:39  olivier

	* po/fr.gmo, po/fr.po,
	  settings/session/xfce-session-settings.desktop,
	  settings/splash/xfce-splash-settings.desktop: Resync with
	  repository, most notably: - libxfcegui4 fixes with gtk 2.2 -
	  xfwm4 updates - Present panel plugins in alphabetical order - Fix
	  add plugin dialog being placed over the panel when using SM -
	  French po updates - Other various small bug fixes

2004-08-15 11:02  pollux

	* aclocal.m4, configure, configure.ac, po/he.gmo, po/he.po: Hebrew
	  translations from Yuval Tanny <tanai@int.gov.il>

2004-08-08 15:54  benny

	* docs/xfce-nochunk.xsl: Missing from the previous commit.

2004-08-08 15:54  benny

	* configure, configure.ac, docs/Makefile.am, docs/Makefile.in,
	  docs/C/Makefile.am, docs/C/Makefile.in,
	  docs/C/xfce4-session.html, docs/C/xfce4-session.xml,
	  docs/C/images/Makefile.am, docs/C/images/Makefile.in,
	  docs/C/images/xfsm-advanced.png, docs/C/images/xfsm-general.png,
	  docs/C/images/xfsm-splash.png: Added html documentation, thanks
	  to Francois.

2004-07-28 23:22  benny

	* m4/depends.m4: Fixed (module)_FOUND bug reported by brian.
	  Hopefully nothing else broke this time.

2004-07-27 20:25  benny

	* configure, configure.ac, icons/Makefile.am, icons/Makefile.in,
	  icons/scalable/Makefile.am, icons/scalable/Makefile.in,
	  icons/scalable/xfce4-session.svg,
	  icons/scalable/xfsm-shutdown.svg: Added scalable icons from
	  Francois.

2004-07-26 21:03  benny

	* docs/README.Kiosk: typo

2004-07-26 20:46  benny

	* configure, configure.ac, docs/README.Kiosk, po/ar.gmo, po/az.gmo,
	  po/ca.gmo, po/es.gmo, po/es_MX.gmo, po/eu.gmo, po/fa_IR.gmo,
	  po/fr.gmo, po/hi.gmo, po/it.gmo, po/ja.gmo, po/ko.gmo, po/lt.gmo,
	  po/ms.gmo, po/nl.gmo, po/no.gmo, po/pl.gmo, po/pt_BR.gmo,
	  po/sv.gmo, po/ta.gmo, po/tr.gmo, po/zh_CN.gmo, po/zh_TW.gmo,
	  settings/session/session.c, settings/splash/splash.c,
	  xfce4-session/shutdown.c: Added KIOSK mode functionality.

2004-07-26 19:07  benny

	* xfce4-session/main.c: Place Xfce version in --version output.

2004-07-24 20:52  benny

	* m4/depends.m4: Readded XFCE_MCS_PLUGIN() again, dunno how I
	  manage to remove it everytime I edit depends.m4!

2004-07-24 19:30  benny

	* m4/depends.m4: XFCE_PANEL_PLUGIN had wrong panel version for the
	  threaded test.

2004-07-24 19:28  benny

	* m4/depends.m4: Extended the XFCE_PANEL_PLUGIN macro to include
	  some magic for threaded panels.

2004-07-23 22:11  benny

	* po/: ar.po, az.po, ca.po, de.gmo, de.po, es.po, es_MX.po, eu.po,
	  fa_IR.po, fr.po, hi.po, it.po, ja.po, ko.po, lt.po, ms.po, nl.po,
	  no.po, pl.po, pt_BR.po, sv.po, ta.po, tr.po, xfce4-session.pot,
	  zh_CN.po, zh_TW.po: update-po.

2004-07-23 19:17  benny

	* COPYING, ChangeLog, configure, configure.ac, xfce4-session.rc,
	  engines/balou/config.c, settings/session/session.c,
	  settings/splash/splash.c: Updated ChangeLog. Bumped version to
	  4.1.13. Fix balou config treeview drag icon. Added several
	  tooltips. Added scrolled window and frames to the splash mcs
	  dialog.

2004-07-23 19:09  benny

	* xfce4-session.spec.in: Fixed .spec file.

2004-07-23 18:31  benny

	* xfce4-session.rc: AlwaysDisplay is now false by default.

2004-07-23 17:46  benny

	* xfce4-session/xfsm-fadeout.c: Use single-colored fadeout screen,
	  faster on remote displays.

2004-07-23 16:47  benny

	* settings/session/session.c, xfce4-session/main.c,
	  xfce4-session/shutdown.c: Implemented PromptOnLogout.

2004-07-23 15:09  benny

	* configure, xfce4-session/shutdown.c,
	  xfce4-session/xfsm-shutdown-helper-sudo.c: Reap the shutdown
	  helper, so no zombies are created if the user cancels the
	  shutdown attempt.

2004-07-23 14:33  benny

	* configure, configure.ac: Disabled redhat shutdown code for now,
	  until I can be sure, that it works.

2004-07-22 01:00  benny

	* m4/depends.m4: Readded the XFCE_MCS_PLUGIN macro. I didn't ment
	  to remove it, tho.

2004-07-20 22:58  benny

	* m4/depends.m4: Modifed panel plugin check, so one (the installer)
	  can choose to install into a different plugin dir.

2004-07-16 16:08  benny

	* Makefile.am, Makefile.in, config.h.in, configure, configure.ac,
	  defaults/Makefile.am, defaults/Makefile.in,
	  defaults/xinitrc.xfce4-session, engines/.cvsignore,
	  engines/balou/.cvsignore, engines/balou/scripts/.cvsignore,
	  engines/balou/themes/.cvsignore,
	  engines/balou/themes/Default/.cvsignore, engines/mice/.cvsignore,
	  engines/simple/.cvsignore, engines/simple/simple.c,
	  icons/.cvsignore, icons/128x128/.cvsignore,
	  icons/48x48/.cvsignore, icons/64x64/.cvsignore,
	  icons/72x72/.cvsignore, settings/.cvsignore,
	  settings/scripts/.cvsignore, settings/session/.cvsignore,
	  settings/splash/.cvsignore, xfce4-session/.cvsignore,
	  xfce4-session/Makefile.am, xfce4-session/Makefile.in,
	  xfce4-session/xfsm-shutdown-helper-none.c,
	  xfce4-session/xfsm-shutdown-helper-redhat.c,
	  xfce4-session/xfsm-shutdown-helper-sudo.c,
	  xfce4-session/xfsm-shutdown-helper.c: Added simple redhat
	  shutdown code (dunno if this works actually, copied from
	  gnome-session) per botsie's request. Added lots of .cvsignore
	  files. Use Brians XfceColorButton instead of the 2.4-only
	  GtkColorButton widget.  Removed the custom xinitrc script, its no
	  longer required, since xinitrc starts xfce4-session
	  automatically.

2004-07-15 22:37  benny

	* engines/simple/simple.c: Use clipping to avoid drawing the layout
	  to the window border.

2004-07-15 22:27  benny

	* xfce4-session/: Makefile.am, Makefile.in, chooser-icon.h,
	  xfsm-manager.c: Use GdkPixdata instead of raw pixbuf data.

2004-07-15 22:17  benny

	* ChangeLog, configure, engines/mice/mice.c,
	  xfce4-session/xfsm-compat-gnome.c, xfce4-session/xfsm-fadeout.c,
	  xfce4-session/xfsm-splash-screen.c: Updated ChangeLog. Removed
	  useless debug message and changed fadeout color.

2004-07-15 19:55  benny

	* engines/simple/simple.c: Fix rendering bug with small images and
	  added text shadow.

2004-07-14 22:17  benny

	* configure, configure.ac, engines/balou/Makefile.am,
	  engines/balou/Makefile.in, engines/balou/balou-theme.c,
	  engines/balou/balou-theme.h, engines/balou/config.c,
	  engines/balou/engine.c, engines/balou/gnome-uri.c,
	  engines/balou/scripts/balou-export-theme,
	  engines/balou/scripts/balou-install-theme,
	  engines/balou/themes/Default/themerc, settings/looknfeel.c,
	  settings/looknfeel.h, settings/settings.h,
	  settings/splash/module.c, settings/splash/module.h,
	  settings/splash/splash.c: Implemented "Test" for splash engines.
	  Added configure dialog for the balou engine.

2004-07-14 20:26  benny

	* configure, configure.ac, engines/mice/mice.c,
	  engines/simple/Makefile.am, engines/simple/Makefile.in,
	  engines/simple/preview.h, engines/simple/preview.png,
	  engines/simple/simple.c, po/POTFILES.in, po/ar.gmo, po/ar.po,
	  po/az.gmo, po/az.po, po/ca.gmo, po/ca.po, po/de.gmo, po/de.po,
	  po/es.gmo, po/es.po, po/es_MX.gmo, po/es_MX.po, po/eu.gmo,
	  po/eu.po, po/fa_IR.gmo, po/fa_IR.po, po/fr.gmo, po/fr.po,
	  po/hi.gmo, po/hi.po, po/it.gmo, po/it.po, po/ja.gmo, po/ja.po,
	  po/ko.gmo, po/ko.po, po/lt.gmo, po/lt.po, po/ms.gmo, po/ms.po,
	  po/nl.gmo, po/nl.po, po/no.gmo, po/no.po, po/pl.gmo, po/pl.po,
	  po/pt_BR.gmo, po/pt_BR.po, po/sv.gmo, po/sv.po, po/ta.gmo,
	  po/ta.po, po/tr.gmo, po/tr.po, po/xfce4-session.pot,
	  po/zh_CN.gmo, po/zh_CN.po, po/zh_TW.gmo, po/zh_TW.po,
	  settings/splash/splash.c, xfce4-session/xfsm-splash-engine.h:
	  Added configure dialog for the simple engine, currently Gtk 2.4
	  only because of missing GtkColorButton in 2.2 *argh*.

2004-07-14 18:16  benny

	* settings/splash/module.c, xfce4-session/xfsm-compat-kde.c,
	  xfce4-session/xfsm-splash-screen.c: Glib 2.2.x fixes.

2004-07-14 17:40  benny

	* configure, configure.ac, xfce4-session.rc, engines/Makefile.am,
	  engines/Makefile.in, engines/mice/Makefile.am,
	  engines/mice/Makefile.in, engines/mice/generate.c,
	  engines/mice/mice.c, engines/mice/preview.h,
	  engines/mice/preview.png, engines/mice/slide.h,
	  engines/mice/slide.png, icons/48x48/xfce4-splash.png,
	  settings/splash/Makefile.am, settings/splash/Makefile.in,
	  settings/splash/nopreview.h, settings/splash/nopreview.png,
	  settings/splash/splash.c: New (fast!) default splash engine ready
	  for import. Fixes to the splash  settings dialog. And new splash
	  screen icon from Francois.

2004-07-14 17:15  benny

	* xfce4-session/xfsm-compat-kde.c: Don't block for KDE processes,
	  run them async instead.

2004-07-14 08:30  benny

	* Makefile.in, README, configure, configure.ac,
	  engines/balou/gnome-uri.c, engines/balou/gnome-uri.h,
	  settings/gnome-uri.c, settings/gnome-uri.h,
	  xfce4-session/xfce4-session-1.0.pc.in,
	  xfce4-session/xfsm-splash-screen.c: Make this compile, now that
	  dbguin is back on stage.

2004-07-14 00:37  benny

	* Makefile.am, Makefile.in, TODO, configure, configure.ac,
	  xfce4-session.rc, engines/Makefile.am, engines/Makefile.in,
	  engines/balou/Makefile.am, engines/balou/Makefile.in,
	  engines/balou/TODO, engines/balou/balou-theme.c,
	  engines/balou/balou-theme.h, engines/balou/balou.c,
	  engines/balou/balou.h, engines/balou/config.c,
	  engines/balou/engine.c, engines/balou/scripts/Makefile.am,
	  engines/balou/scripts/Makefile.in,
	  engines/balou/scripts/balou-export-theme,
	  engines/balou/scripts/balou-install-theme,
	  engines/balou/themes/Makefile.am,
	  engines/balou/themes/Makefile.in,
	  engines/balou/themes/Default/Makefile.am,
	  engines/balou/themes/Default/Makefile.in,
	  engines/balou/themes/Default/logo.png,
	  engines/balou/themes/Default/themerc, engines/simple/Makefile.am,
	  engines/simple/Makefile.in, engines/simple/fallback.h,
	  engines/simple/fallback.png, engines/simple/simple.c,
	  icons/48x48/Makefile.am, icons/48x48/Makefile.in,
	  icons/48x48/xfce4-splash.png, settings/Makefile.am,
	  settings/Makefile.in, settings/session.c,
	  settings/xfce-session-settings.desktop,
	  settings/scripts/Makefile.am, settings/scripts/Makefile.in,
	  settings/scripts/xfsm-export-theme,
	  settings/scripts/xfsm-install-theme,
	  settings/session/Makefile.am, settings/session/Makefile.in,
	  settings/session/session.c,
	  settings/session/xfce-session-settings.desktop,
	  settings/splash/Makefile.am, settings/splash/Makefile.in,
	  settings/splash/module.c, settings/splash/module.h,
	  settings/splash/splash.c,
	  settings/splash/xfce-splash-settings.desktop, themes/Makefile.am,
	  themes/Makefile.in, themes/Default/Makefile.am,
	  themes/Default/Makefile.in, themes/Default/chooser_icon.png,
	  themes/Default/chooser_icon.svg, themes/Default/logo.png,
	  themes/Default/skip_icon.png, themes/Default/skip_icon.svg,
	  themes/Default/themerc, xfce4-session/Makefile.am,
	  xfce4-session/Makefile.in, xfce4-session/main.c,
	  xfce4-session/shutdown.c, xfce4-session/xfsm-chooser.c,
	  xfce4-session/xfsm-chooser.h, xfce4-session/xfsm-compat-gnome.c,
	  xfce4-session/xfsm-compat-kde.c, xfce4-session/xfsm-dns.c,
	  xfce4-session/xfsm-fadeout.c, xfce4-session/xfsm-fadeout.h,
	  xfce4-session/xfsm-manager.c, xfce4-session/xfsm-properties.c,
	  xfce4-session/xfsm-splash-engine.h,
	  xfce4-session/xfsm-splash-rc.c, xfce4-session/xfsm-splash-rc.h,
	  xfce4-session/xfsm-splash-screen.c,
	  xfce4-session/xfsm-splash-screen.h,
	  xfce4-session/xfsm-splash-theme.c,
	  xfce4-session/xfsm-splash-theme.h, xfce4-session/xfsm-startup.c:
	  Separate the splash screen engine code to put the user in
	  control. Not yet finished, but working.

2004-06-22 18:42  benny

	* xfce4-session/main.c: Fixed session manager "crash" on linux.

2004-06-17 07:48  benny

	* xfce4-session.rc: xfwm4 now multiscreen safe.

2004-06-14 23:09  benny

	* settings/session.c: Fix positioning bug.

2004-06-14 21:00  benny

	* settings/session.c: Xinerama centering fix.

2004-06-14 20:54  benny

	* aclocal.m4, config.h.in, configure, configure.ac,
	  xfce4-session/Makefile.am, xfce4-session/Makefile.in,
	  xfce4-session/main.c, xfce4-session/shutdown.c,
	  xfce4-session/xfsm-chooser.c, xfce4-session/xfsm-dns.c,
	  xfce4-session/xfsm-dns.h, xfce4-session/xfsm-manager.c,
	  xfce4-session/xfsm-splash-screen.c, xfce4-session/xfsm-util.c,
	  xfce4-session/xfsm-util.h: Use Gtk/Gdk functions from
	  libxfcegui4.

2004-06-13 23:18  pollux

	* Makefile.in, aclocal.m4, config.guess, config.sub, configure,
	  configure.ac, install-sh, ltmain.sh, mkinstalldirs,
	  defaults/Makefile.in, docs/Makefile.in, icons/Makefile.in,
	  icons/128x128/Makefile.in, icons/48x48/Makefile.in,
	  icons/64x64/Makefile.in, icons/72x72/Makefile.in, po/lt.gmo,
	  po/lt.po, settings/Makefile.in, settings/scripts/Makefile.in,
	  themes/Makefile.in, themes/Default/Makefile.in,
	  xfce4-session/Makefile.in, xfsm-shutdown-helper/Makefile.in:
	  Updated lt translations from Mantas Zapolskas

2004-06-13 11:40  pollux

	* po/zh_CN.gmo: .gmo files updated

2004-06-11 22:13  benny

	* configure, xfce4-session.spec.in, settings/Makefile.am,
	  settings/Makefile.in, settings/scripts/Makefile.am,
	  settings/scripts/Makefile.in, xfce4-session/xfsm-compat-kde.c:
	  Fixed "make dist"/rpm issues reported by Frank Schmitt.

2004-06-11 22:09  benny

	* xfce4-session/xfsm-shutdown-helper.c: FreeBSD requires
	  <sys/time.h> prior to <sys/resource.h>, thanks to Josh Howard.

2004-06-11 21:59  pollux

	* po/zh_CN.po: Update zh_CN translations

2004-06-11 18:02  benny

	* icons/48x48/xfsm-shutdown.png: Added shutdown icon from Francois.

2004-06-08 19:09  benny

	* xfce4-session/xfsm-startup.c: Try to treat non-executable files
	  in ~/Desktop/Autostart/ as shell scripts.

2004-06-08 18:57  benny

	* xfce4-session/: xfsm-manager.c, xfsm-manager.h: Lower SAVE
	  YOURSELF timeout and add workaround for broken xterm.

2004-06-07 13:54  pollux

	* po/: POTFILES.in, fr.gmo, fr.po, xfce4-session.pot: - fix
	  POTFILES.in for missing settings/old-session.c - update French
	  translations

2004-06-06 14:13  benny

	* BUGS, configure, configure.ac, icons/Makefile.am,
	  icons/Makefile.in, icons/xfsm-shutdown.png,
	  icons/xfsm-trash-hilight.png, icons/xfsm-trash-normal.png,
	  icons/128x128/Makefile.am, icons/128x128/Makefile.in,
	  icons/128x128/xfce4-session.png, icons/48x48/Makefile.am,
	  icons/48x48/Makefile.in, icons/48x48/xfce4-session.png,
	  icons/48x48/xfsm-shutdown.png, icons/64x64/Makefile.am,
	  icons/64x64/Makefile.in, icons/64x64/xfsm-gnome-kde-logo.png,
	  icons/72x72/Makefile.am, icons/72x72/Makefile.in,
	  icons/72x72/xfsm-trash-hilight.png,
	  icons/72x72/xfsm-trash-normal.png, settings/Makefile.am,
	  settings/Makefile.in, settings/gnome-kde-logo.h,
	  settings/gnome-kde-logo.png, settings/session-icon.h,
	  settings/session.c, settings/session.png: All icons are now
	  themable and will be installed to the hicolor theme.

2004-06-06 13:52  benny

	* settings/: session-icon.h, session.png: Added new icon from
	  Francois.

2004-06-05 23:19  benny

	* BUGS, ChangeLog, Makefile.in, config.h.in, configure,
	  configure.ac, defaults/Makefile.in, docs/Makefile.in,
	  icons/Makefile.am, icons/Makefile.in, icons/xfsm-shutdown.png,
	  po/ar.gmo, po/az.gmo, po/ca.gmo, po/de.gmo, po/de.po, po/es.gmo,
	  po/es_MX.gmo, po/eu.gmo, po/fa_IR.gmo, po/fr.gmo, po/hi.gmo,
	  po/it.gmo, po/ja.gmo, po/ko.gmo, po/ms.gmo, po/nl.gmo, po/no.gmo,
	  po/pl.gmo, po/pt_BR.gmo, po/sv.gmo, po/ta.gmo, po/tr.gmo,
	  po/zh_CN.gmo, po/zh_TW.gmo, settings/Makefile.am,
	  settings/Makefile.in, settings/gnome-kde-logo.h,
	  settings/gnome-kde-logo.png, settings/looknfeel.c,
	  settings/session.c, settings/xfsm-install-theme,
	  settings/scripts/Makefile.am, settings/scripts/Makefile.in,
	  settings/scripts/xfsm-export-theme,
	  settings/scripts/xfsm-install-theme, themes/Makefile.in,
	  themes/Default/Makefile.in, xfce4-session/Makefile.in,
	  xfce4-session/main.c, xfce4-session/shutdown.c,
	  xfce4-session/xfsm-manager.c, xfce4-session/xfsm-splash-theme.h,
	  xfsm-shutdown-helper/Makefile.in: Added popup menu to the splash
	  theme list, also added the possiblity to do XDS (XDirectSave) w/
	  rox (and probably other fms) to export themes.  Logout icon is
	  now themable. Added KDE/Gnome icon to the settings dialog.  Other
	  fixes.

2004-06-05 15:49  benny

	* xfce4-session/xfsm-manager.c: Backup old session file prior to
	  writing the new one.

2004-06-05 15:38  benny

	* xfce4-session/xfsm-manager.c: Don't display chooser if no
	  sessions have been saved.

2004-06-05 14:46  benny

	* Makefile.am, Makefile.in, config.h.in, configure, configure.ac,
	  xfce4-session.rc, defaults/Makefile.in, docs/Makefile.in,
	  icons/Makefile.am, icons/Makefile.in,
	  icons/xfsm-trash-hilight.png, icons/xfsm-trash-normal.png,
	  po/POTFILES.in, po/ar.po, po/az.po, po/ca.po, po/de.po, po/es.po,
	  po/es_MX.po, po/eu.po, po/fa_IR.po, po/fr.gmo, po/fr.po,
	  po/hi.po, po/it.po, po/ja.po, po/ko.po, po/ms.po, po/nl.po,
	  po/no.po, po/pl.po, po/pt_BR.po, po/sv.po, po/ta.po, po/tr.po,
	  po/xfce4-session.pot, po/zh_CN.po, po/zh_TW.po,
	  settings/Makefile.in, themes/Makefile.in,
	  themes/Default/Makefile.in, xfce4-session/Makefile.am,
	  xfce4-session/Makefile.in, xfce4-session/ice-layer.c,
	  xfce4-session/xfsm-chooser-trash.c,
	  xfce4-session/xfsm-chooser-trash.h, xfce4-session/xfsm-chooser.c,
	  xfce4-session/xfsm-chooser.h, xfce4-session/xfsm-manager.c,
	  xfce4-session/xfsm-splash-screen.c,
	  xfce4-session/xfsm-splash-screen.h, xfce4-session/xfsm-startup.c,
	  xfce4-session/xfsm-util.c, xfce4-session/xfsm-util.h,
	  xfsm-shutdown-helper/Makefile.in: Added ability to remove
	  sessions (using the session chooser). New ca translations from
	  Carles Muñoz Gorriz. Updated po files. Check for iceauth in
	  configure. Warn the user if iceauth failes to create
	  authentication data.

2004-06-04 21:45  pollux

	* po/fr.po: french translations update

2004-06-01 17:58  benny

	* xfce4-session/xfsm-manager.c: Fix #212.

2004-05-30 19:49  benny

	* xfce4-session/xfsm-properties.c: Verify properties after
	  restoring, might fix the crash reported by olivier.

2004-05-30 19:42  benny

	* xfce4-session/xfsm-startup.c: Code block moved to xfsm-manager.c
	  in previous commit.

2004-05-30 19:40  benny

	* xfce4-session/: xfsm-client.c, xfsm-manager.c, xfsm-manager.h:
	  Run discard command for apps that failed to start.

2004-05-30 15:36  benny

	* xfce4-session/: sm-layer.c, sm-layer.h, xfsm-compat-gnome.c,
	  xfsm-legacy.c, xfsm-legacy.h, xfsm-manager.c: Added a work-around
	  to get broken CDE apps working with legacy session management and
	  set GNOME_SM_PROXY on startup, some apps - like OOo - rely on
	  this to be set.

2004-05-28 00:16  benny

	* BUGS, configure, settings/looknfeel.c, xfce4-session/main.c,
	  xfce4-session/xfsm-chooser.c, xfce4-session/xfsm-splash-screen.c,
	  xfce4-session/xfsm-splash-theme.c, xfce4-session/xfsm-util.h:
	  Cache splash theme previews, so the settings dialog starts up
	  faster (the second time :). Fix a few bugs (e.g. PangoContext's
	  weren't freed properly).

2004-05-26 18:47  benny

	* BUGS, config.h.in, configure, configure.ac,
	  xfce4-session/chooser-icon.h, xfce4-session/chooser-icon.png,
	  xfce4-session/shutdown.c, xfce4-session/xfsm-chooser.c,
	  xfce4-session/xfsm-chooser.h, xfce4-session/xfsm-legacy.c,
	  xfce4-session/xfsm-manager.c, xfce4-session/xfsm-properties.c,
	  xfce4-session/xfsm-splash-screen.c: Fixed legacy check for XSMP
	  support. Added support for session screenshots, if enabled, a
	  screenshot of your session will be shot on logout and displayed
	  in the chooser on next login (disabled by default, since its a
	  bit expensive to transfer large root window screenshots, enable
	  with --enable-session-screenshots at compile time).

2004-05-26 15:29  benny

	* configure, xfce4-session/xfsm-legacy.c: Workaround xmms bug.

2004-05-26 14:56  benny

	* AUTHORS, BUGS, ChangeLog, README, config.h.in, configure,
	  configure.ac, xfce4-session/Makefile.am,
	  xfce4-session/Makefile.in, xfce4-session/main.c,
	  xfce4-session/shutdown.c, xfce4-session/shutdown.h,
	  xfce4-session/xfsm-compat-kde.c, xfce4-session/xfsm-compat-kde.h,
	  xfce4-session/xfsm-legacy.c, xfce4-session/xfsm-legacy.h,
	  xfce4-session/xfsm-manager.c: Renamed shutdown() ->
	  xfsm_shutdown(), since it causes trouble with functions, that use
	  the libc shutdown(), like XCloseDisplay, really a weird bug.

	  Added legacy session management based upon the one found in
	  ksmserver. So from now on, do NOT EVER run smproxy, or you will
	  be assimilated :-).

2004-05-25 23:29  benny

	* Makefile.in, config.h.in, configure, configure.ac,
	  xfce4-session.spec.in, defaults/Makefile.in, docs/Makefile.in,
	  settings/Makefile.in, settings/looknfeel.c, settings/session.c,
	  themes/Makefile.in, themes/Default/Makefile.in,
	  xfce4-session/Makefile.am, xfce4-session/Makefile.in,
	  xfce4-session/main.c, xfce4-session/shutdown.c,
	  xfce4-session/xfsm-compat-gnome.c,
	  xfce4-session/xfsm-compat-gnome.h,
	  xfce4-session/xfsm-compat-kde.c, xfce4-session/xfsm-compat-kde.h,
	  xfce4-session/xfsm-global.c, xfce4-session/xfsm-global.h,
	  xfce4-session/xfsm-splash-screen.c, xfce4-session/xfsm-startup.c,
	  xfsm-shutdown-helper/Makefile.in: Added Gnome compatibility.
	  Improved KDE compatibility (Konqueror seems somewhat broken,
	  though, dunno why). Some cosmetic fixes on the splash screen
	  (avoid flicker, same y pos for all texts).

2004-05-25 20:07  benny

	* TODO, settings/Makefile.am, settings/Makefile.in,
	  settings/gnome-uri.c, settings/gnome-uri.h, settings/looknfeel.c,
	  settings/looknfeel.h, settings/session.c, settings/settings.h,
	  settings/xfce-session-settings.desktop,
	  settings/xfsm-install-theme, xfce4-session/xfsm-startup.c: Enable
	  installation of new themes by dragging&dropping a theme from a
	  file manager (tested with rox so far) to the theme treeview,
	  currently only theme directories (that are directories that
	  contain a subdir "xfsm4" and atleast a file "xfsm4/themerc") and
	  theme tarballs (actuall .tar.gz, which contents match the theme
	  directory layout described above) are supported.  The
	  "installation" of the theme is done using the xfsm-install-theme
	  script, so it should be easy to add support for further "file
	  formats", just send me a patch (but remember that the stuff has
	  to be plattform-independend, so no bashism or GNUism).

2004-05-25 14:27  pollux

	* settings/session.c: when enlarging settings window, the Security
	  frame stay close to the Compatibility one

2004-05-25 00:34  benny

	* xfce4-session/xfsm-startup.c: Added some KDE application names.

2004-05-25 00:25  benny

	* settings/session.c, xfce4-session/xfsm-manager.c,
	  xfce4-session/xfsm-splash-screen.c, xfce4-session/xfsm-startup.c,
	  xfce4-session/xfsm-startup.h: Initial KDE support, will be
	  improved further soon.

2004-05-24 23:57  benny

	* BUGS, settings/Makefile.am, settings/Makefile.in,
	  settings/session.c, themes/Default/skip_icon.png,
	  themes/Default/skip_icon.svg, themes/Default/themerc,
	  xfce4-session/main.c, xfce4-session/shutdown.c,
	  xfce4-session/xfsm-splash-theme.c,
	  xfce4-session/xfsm-splash-theme.h: Mo[e]dified the settings
	  dialog based on some ideas I discussed with Moe.  Changed the
	  skip icon to the new icon from Francois.

2004-05-24 19:25  benny

	* themes/Default/themerc: Francois prefers this gradient :-)

2004-05-24 18:12  benny

	* BUGS, ChangeLog, themes/Default/Makefile.am,
	  themes/Default/Makefile.in, themes/Default/chooser_icon.png,
	  themes/Default/chooser_icon.svg, themes/Default/logo.png,
	  themes/Default/skip_icon.png, themes/Default/skip_icon.svg,
	  themes/Default/themerc, xfce4-session/xfsm-fadeout.c,
	  xfce4-session/xfsm-splash-screen.c,
	  xfce4-session/xfsm-splash-theme.c,
	  xfce4-session/xfsm-splash-theme.h: New splash theme file format.
	  Added gradient option for bgcolor and focolor, as per Francois'
	  request. New default theme based on the one by Francois.

2004-05-22 08:52  benny

	* xfce4-session/shutdown.c: Fix #200, using the gtk auth icon only
	  with gtk >= 2.4.

2004-05-21 22:06  benny

	* xfce4-session/xfsm-shutdown-helper.c: FreeBSD requires
	  sys/types.h before including sys/resource.h, thanks to Pawel
	  Worach.

2004-05-21 09:54  benny

	* xfce4-session/xfsm-manager.c: Fix for systems where g_malloc !=
	  malloc.

2004-05-20 23:53  benny

	* AUTHORS, xfce4-session.spec.in, xfce4-session/xfsm-global.c,
	  xfce4-session/xfsm-global.h, xfce4-session/xfsm-manager.c,
	  xfce4-session/xfsm-startup.c: Fix a nasty bug. Until now each
	  application was assigned a new session id, regardless of whether
	  the application was freshly started or restored. This fixes the
	  problem, that xfwm4 wasn't able to restore window attributes on
	  startup. When updating, you need to rm -f
	  ~/.cache/xfce4-session/xfce4-session* to get it fixed.

2004-05-20 23:16  benny

	* xfce4-shutdown/.cvsignore: Plop.

2004-05-20 23:04  benny

	* BUGS, ChangeLog, README, defaults/Makefile.am,
	  defaults/Makefile.in, defaults/shutdown.allow: Remove obsolete
	  file. Updated ChangeLog.

2004-05-20 22:51  benny

	* configure, themes/.cvsignore, themes/Default/.cvsignore,
	  xfsm-shutdown-helper/.cvsignore: Some more cvsignore files.

2004-05-20 22:45  benny

	* BUGS, Makefile.am, Makefile.in, README, config.h.in, configure,
	  configure.ac, xfce4-session.spec.in, defaults/Makefile.in,
	  docs/FAQ, docs/Makefile.in, settings/Makefile.in,
	  themes/Makefile.in, themes/Default/Makefile.in,
	  xfce4-session/Makefile.am, xfce4-session/Makefile.in,
	  xfce4-session/shutdown.c, xfce4-session/xfsm-shutdown-helper.c,
	  xfce4-session/xfsm-shutdown-helper.h, xfce4-session/xfsm-util.c,
	  xfce4-session/xfsm-util.h, xfce4-shutdown/Makefile.am,
	  xfce4-shutdown/Makefile.in, xfce4-shutdown/main.c,
	  xfce4-shutdown/xfce4-shutdown.1,
	  xfsm-shutdown-helper/Makefile.am,
	  xfsm-shutdown-helper/Makefile.in, xfsm-shutdown-helper/main.c:
	  New shutdown code, is now sudo(8) only. Bumped version to 4.1.5.
	  Several bugfixes.

2004-05-19 23:37  benny

	* xfce4-session/: xfsm-fadeout.c, xfsm-fadeout.h: cut&paste error,
	  no gnome code in here.

2004-05-19 23:28  benny

	* xfce4-session/: Makefile.am, Makefile.in, shutdown.c,
	  xfsm-fadeout.c, xfsm-fadeout.h: Cleanup the shutdown dialog.

2004-05-19 22:28  benny

	* BUGS, xfce4-session.rc, settings/session.c, xfce4-session/main.c,
	  xfce4-session/xfsm-splash-screen.c,
	  xfce4-session/xfsm-splash-screen.h,
	  xfce4-session/xfsm-splash-theme.c,
	  xfce4-session/xfsm-splash-theme.h: Make the timeout configurable
	  and added two buttons to the splash window that allow the user to
	  run the chooser or skip the timeout (these two must be explicitly
	  set by the theme).

2004-05-19 01:28  benny

	* xfce4-session/xfce4-splash.png: Moved to the Default theme.

2004-05-19 01:25  benny

	* BUGS, ChangeLog, configure, settings/Makefile.am,
	  settings/Makefile.in, themes/Default/themerc,
	  xfce4-session/Makefile.am, xfce4-session/Makefile.in,
	  xfce4-session/main.c, xfce4-session/shutdown.c,
	  xfce4-session/xfsm-splash-theme.c,
	  xfce4-session/xfsm-splash-theme.h, xfce4-session/xfsm-util.c,
	  xfce4-session/xfsm-util.h: Further tweaks to the theming stuff,
	  the fadeout color is now configurable as well.

2004-05-19 00:41  benny

	* BUGS, Makefile.am, Makefile.in, configure, configure.ac,
	  themes/Makefile.am, themes/Makefile.in,
	  themes/Default/Makefile.am, themes/Default/Makefile.in,
	  themes/Default/logo.png, themes/Default/themerc,
	  xfce4-session/Makefile.am, xfce4-session/Makefile.in,
	  xfce4-session/main.c, xfce4-session/xfsm-splash-screen.c,
	  xfce4-session/xfsm-splash-screen.h,
	  xfce4-session/xfsm-splash-theme.c,
	  xfce4-session/xfsm-splash-theme.h: Added theme support.
	  Suggestings for things that are required to create nice splash
	  themes are welcome.

2004-05-18 23:06  benny

	* xfce4-session/xfsm-startup.c: Added Autostart support.

2004-05-18 20:07  benny

	* BUGS, COPYING, xfce4-session.spec.in, settings/session.c,
	  xfce4-session/ice-layer.c, xfce4-session/ice-layer.h,
	  xfce4-session/main.c, xfce4-session/shutdown.c,
	  xfce4-session/shutdown.h, xfce4-session/sm-layer.c,
	  xfce4-session/sm-layer.h, xfce4-session/xfce_trayicon.c,
	  xfce4-session/xfce_trayicon.h, xfce4-session/xfsm-chooser.c,
	  xfce4-session/xfsm-chooser.h, xfce4-session/xfsm-client.c,
	  xfce4-session/xfsm-client.h, xfce4-session/xfsm-global.c,
	  xfce4-session/xfsm-global.h, xfce4-session/xfsm-manager.c,
	  xfce4-session/xfsm-manager.h, xfce4-session/xfsm-properties.c,
	  xfce4-session/xfsm-properties.h,
	  xfce4-session/xfsm-splash-screen.c,
	  xfce4-session/xfsm-splash-screen.h, xfce4-session/xfsm-startup.c,
	  xfce4-session/xfsm-startup.h, xfce4-session/xfsm-util.c,
	  xfce4-session/xfsm-util.h, xfce4-shutdown/main.c: Changed license
	  to GPL. Added Jaspers border to the chooser window (looks way
	  better). Removed the "Confirm logout" option, its more or less
	  useless. Use g_spawn_sync() in xfce4-shutdown redirecting all fds
	  to /dev/null, that should shutdown every machine correctly now.
	  Save SmEnvironment for clients. Simplify the SmDiscardCommand
	  handling a bit. Fixed broken gdk_pointer_ungrab(). Reset input
	  focus handling in shutdown dialog to RevertToParent. Ensure that
	  the sessions rc file is really closed in all cases. Remove some
	  C++ comments. Fixed some memory leaks.

2004-05-18 17:18  benny

	* xfce4-session/: main.c, shutdown.c, xfsm-splash-screen.c: Fix
	  indentation. Check for access to ~/.ICEauthority on startup.

2004-05-18 12:42  benny

	* xfce4-session/: shutdown.c, xfsm-splash-screen.c: Set event_mask
	  for the new windows!

2004-05-18 12:26  benny

	* xfce4-session/shutdown.c: Use TOPLEVEL window instead of TEMP
	  window, maybe that fixes the bug reported by brian.

2004-05-18 00:31  benny

	* xfce4-session/: xfsm-client.c, xfsm-client.h, xfsm-manager.c,
	  xfsm-util.c, xfsm-util.h: Run DiscardCommand if it changes during
	  a SAVE YOURSELF to cleanup unneeded session files.

	  Remember ActiveWorkspace for all Screens and restore it after the
	  session is restored.

2004-05-17 23:32  benny

	* xfce4-session/shutdown.c: Added border patch from jasper.

2004-05-17 23:02  benny

	* xfce4-session/xfsm-splash-screen.c: Keep the window above at any
	  rate!

2004-05-17 22:45  benny

	* xfce4-session/: xfsm-client.c, xfsm-client.h: Inline func ->
	  func.

2004-05-17 22:39  benny

	* po/ar.gmo, po/ar.po, po/az.gmo, po/az.po, po/ca.gmo, po/ca.po,
	  po/de.gmo, po/de.po, po/es.gmo, po/es.po, po/es_MX.gmo,
	  po/es_MX.po, po/eu.gmo, po/eu.po, po/fa_IR.gmo, po/fa_IR.po,
	  po/fr.gmo, po/fr.po, po/hi.gmo, po/hi.po, po/it.gmo, po/it.po,
	  po/ja.gmo, po/ja.po, po/ko.gmo, po/ko.po, po/ms.gmo, po/ms.po,
	  po/nl.gmo, po/nl.po, po/no.gmo, po/no.po, po/pl.gmo, po/pl.po,
	  po/pt_BR.gmo, po/pt_BR.po, po/sv.gmo, po/sv.po, po/ta.gmo,
	  po/ta.po, po/tr.gmo, po/tr.po, po/xfce4-session.pot,
	  po/zh_CN.gmo, po/zh_CN.po, po/zh_TW.gmo, po/zh_TW.po,
	  xfce4-session/xfsm-splash-screen.c: Use new gettext, reverted
	  broken .po files.

2004-05-17 21:24  benny

	* configure, xfce4-session/Makefile.am, xfce4-session/Makefile.in,
	  xfce4-session/chooser-icon.h, xfce4-session/chooser-icon.png,
	  xfce4-session/xfsm-chooser.c, xfce4-shutdown/main.c: Add nice
	  icon to the session chooser dialog.

2004-05-17 20:52  benny

	* Makefile.am, Makefile.in, configure, configure.ac:	       (__)
		    (oo)
	      /------\/
	     / |    ||
	    *  /\---/\
	       ~~   ~~
	  ...."Have you mooed today?"...

2004-05-17 20:44  benny

	* Makefile.am, Makefile.in, config.h.in, configure, configure.ac:
	  Why wasn't this committed, when I said it? I want SVN now!

2004-05-17 20:40  benny

	* xfce4-session.rc: Correct wrong count.

2004-05-17 20:39  benny

	* docs/.cvsignore, po/.cvsignore: Additional .cvsignore's

2004-05-17 20:36  benny

	* config.h.in, configure, configure.ac: One should not skip
	  configure tests :)

2004-05-17 20:33  benny

	* .cvsignore, settings/.cvsignore, xfce4-session/.cvsignore,
	  xfce4-shutdown/.cvsignore: Shut up CVS!

2004-05-17 20:30  benny

	* Makefile.in, aclocal.m4, config.guess, config.sub, configure,
	  configure.ac, install-sh, ltmain.sh, defaults/Makefile.am,
	  defaults/Makefile.in, defaults/default.session, docs/FAQ,
	  docs/Makefile.am, docs/Makefile.in, docs/SessionFileFormat.txt,
	  docs/SplashThemes.txt, po/POTFILES.in, po/ar.gmo, po/ar.po,
	  po/az.gmo, po/az.po, po/ca.gmo, po/ca.po, po/de.gmo, po/de.po,
	  po/es.gmo, po/es.po, po/es_MX.gmo, po/es_MX.po, po/eu.gmo,
	  po/eu.po, po/fa_IR.gmo, po/fa_IR.po, po/fr.gmo, po/fr.po,
	  po/hi.gmo, po/hi.po, po/it.gmo, po/it.po, po/ja.gmo, po/ja.po,
	  po/ko.gmo, po/ko.po, po/ms.gmo, po/ms.po, po/nl.gmo, po/nl.po,
	  po/no.gmo, po/no.po, po/pl.gmo, po/pl.po, po/pt_BR.gmo,
	  po/pt_BR.po, po/sv.gmo, po/sv.po, po/ta.gmo, po/ta.po, po/tr.gmo,
	  po/tr.po, po/xfce4-session.pot, po/zh_CN.gmo, po/zh_CN.po,
	  po/zh_TW.gmo, po/zh_TW.po: Updated po files, removed further
	  obsolete files.

2004-05-17 20:26  benny

	* xfce4-session/: session-control.c, session-control.h: Obsolete.

2004-05-17 20:25  benny

	* xfce4-session/: Makefile.am, Makefile.in, client.c, client.h,
	  ice-layer.c, ice-layer.h, main.c, manager.c, manager.h,
	  shutdown.c, sm-layer.c, sm-layer.h, splash-fallback.h,
	  splash-fallback.png, splash-screen.c, splash-screen.h, startup.c,
	  startup.h, util.c, util.h, xfce4-splash.png, xfsm-chooser.c,
	  xfsm-chooser.h, xfsm-client.c, xfsm-client.h, xfsm-global.c,
	  xfsm-global.h, xfsm-manager.c, xfsm-manager.h, xfsm-marshal.c,
	  xfsm-marshal.h, xfsm-marshal.list, xfsm-properties.c,
	  xfsm-properties.h, xfsm-splash-screen.c, xfsm-splash-screen.h,
	  xfsm-startup.c, xfsm-startup.h, xfsm-util.c, xfsm-util.h: Remark:
	  One should not ever commit from a dirty sandbox!

2004-05-17 20:07  benny

	* BUGS, TODO, mkinstalldirs, xfce4-session.rc,
	  settings/Makefile.in, settings/session.c,
	  xfce4-shutdown/Makefile.in, xfce4-shutdown/main.c: New session
	  manager code, version is now 4.1.5

2004-05-03 23:44  olivier

	* Makefile.in, aclocal.m4, config.guess, config.sub, configure,
	  install-sh, ltmain.sh, mkinstalldirs, defaults/Makefile.in,
	  docs/Makefile.in, xfce4-session/Makefile.in,
	  xfce4-shutdown/Makefile.in: Update zh_TW translations from umm
	  <umm@pchome.com.tw>

2004-05-03 22:21  kelnos

	* settings/: Makefile.am, Makefile.in: EXTRA_DIST

2004-04-30 06:13  kelnos

	* settings/: Makefile.am, Makefile.in,
	  xfce-session-settings.desktop: session settings .desktop file

2004-03-18 00:17  olivier

	* configure: The configure script got updated for some reason.

2004-03-18 00:13  olivier

	* configure, configure.ac, xfce4-session/shutdown.c: Use dynamic
	  detection of gtk version

2004-03-15 08:36  olivier

	* aclocal.m4, configure, configure.ac, ltmain.sh, po/ar.gmo,
	  po/ar.po: Add/update i18n for: Bulgarian from Miroslav Yordanov
	  <miordanov@i-space.org> and Peter Slavov <peshka@i-space.org>
	  Italian from Alex Dupre <ale@FreeBSD.org> Arabic from Saleh
	  Hathal <hathalsal@hotmail.com>

2004-03-13 19:09  benny

	* xfce4-session/shutdown.c: Fixed problem with gtk2.3.

2004-03-11 22:29  benny

	* TODO: Note about Shutdown Screen freeze bug.

2004-03-01 22:09  benny

	* m4/debug.m4: Added --enable-gcov to compile xfce with support for
	  coverage tests. Very useful.

2004-02-27 18:19  benny

	* xfce4-session/main.c: Make gcc happy about the cast :)

2004-02-20 22:43  benny

	* TODO: Next round in the "Linux don't like my xterms" course as
	  requested by Olivier :-)

2004-02-17 20:36  jasper

	* aclocal.m4, configure, configure.ac, po/ms.gmo, po/ms.po: Update
	  Malay translations

2004-02-15 10:36  benny

	* configure, configure.ac: "eu"-commit missed configure.ac.

2004-02-15 10:33  benny

	* autogen.sh, configure, po/fr.gmo, po/fr.po: Updated french
	  translation, thanks to Jean-François Wauthy <pollux@castor.be>.
	  Make --enable-maintainer-mode default for autogen.sh.

2004-02-11 21:44  jasper

	* configure, po/eu.gmo, po/eu.po: Add Basque (eu) translations

2004-02-03 14:42  benny

	* xfce4-session/main.c: Present about dialog to the user in any
	  case.

2004-02-03 12:31  benny

	* NEWS, TODO, configure, configure.ac, xfce4-session/main.c: Added
	  About dialog. Icon changes in the tray icon menu. Version 4.1.2.

2004-01-29 23:52  benny

	* config.h.in, configure, configure.ac, po/xfce4-session.pot,
	  xfce4-shutdown/main.c: Removed unnecessary configure checks and
	  use xfce_{set,put}env() in xfce4-shutdown as well! Now all thats
	  unclear is the call to clearenv(). I don't like itsudo gmake
	  install

2004-01-29 23:36  benny

	* AUTHORS, COPYING, NEWS, aclocal.m4, configure, configure.ac,
	  ltmain.sh, settings/session.c, xfce4-session/client.c,
	  xfce4-session/client.h, xfce4-session/ice-layer.c,
	  xfce4-session/ice-layer.h, xfce4-session/main.c,
	  xfce4-session/manager.c, xfce4-session/manager.h,
	  xfce4-session/session-control.c, xfce4-session/session-control.h,
	  xfce4-session/shutdown.c, xfce4-session/shutdown.h,
	  xfce4-session/splash-screen.c, xfce4-session/splash-screen.h,
	  xfce4-session/startup.c, xfce4-session/startup.h,
	  xfce4-session/util.c, xfce4-session/util.h,
	  xfce4-session/xfce_trayicon.c, xfce4-session/xfce_trayicon.h,
	  xfce4-shutdown/main.c: Version 4.1.1 (indeed a huge jump).
	  Working setenv()/putenv() stuff moved to libxfce4util. Cleanups
	  and Updates.

2004-01-29 16:51  jasper

	* po/: fa_IR.gmo, fa_IR.po: Update Persian translations

2004-01-28 22:41  benny

	* xfce4-session/shutdown.c: Try to fallback to using "halt" if
	  "poweroff" didn't do the job. That should fix the problem
	  reported by Francois, telling that halting the machine does not
	  work.

2004-01-25 11:35  olivier

	* aclocal.m4, configure, ltmain.sh: Fix auto* tools for
	  xfce4-session

2004-01-25 10:55  benny

	* aclocal.m4, configure, ltmain.sh: Hm, previous autogen run used
	  wrong libtool binary.

2004-01-25 10:40  benny

	* ChangeLog, NEWS, aclocal.m4, configure, configure.ac, ltmain.sh,
	  po/xfce4-session.pot, xfce4-session/xfce4-session.1: Version
	  0.2.1

2004-01-25 01:07  olivier

	* Makefile.in, aclocal.m4, compile, config.guess, config.sub,
	  configure, depcomp, install-sh, ltmain.sh, missing,
	  mkinstalldirs, defaults/Makefile.in, docs/Makefile.in,
	  settings/Makefile.in, xfce4-session/Makefile.in,
	  xfce4-shutdown/Makefile.in: Update libtool and other automake,
	  autoconf and gettext packages

2004-01-23 14:19  benny

	* xfce4-session/manager.c: Ooops.

2004-01-23 14:00  benny

	* xfce4-session/manager.c: Fixes Solaris problem with
	  SESSION_MANAGER not set (indeed a weird problem on Slowlaris).

2004-01-21 14:43  jasper

	* configure, configure.ac, po/es.gmo, po/es.po, po/fa_IR.gmo,
	  po/fa_IR.po, po/ja.gmo, po/ja.po, po/ko.gmo, po/ko.po,
	  po/pt_BR.gmo, po/pt_BR.po: Translations added/updated for
	  spanish, persian, japanese, korean, brasilian and chinese

2004-01-17 19:14  benny

	* TODO, configure, configure.ac, xfce4-session/manager.c: Make this
	  depend on libxfce4util >= 4.1.0!

2004-01-15 23:53  benny

	* xfce4-session/manager.c: Bugfix: Session wasn't saved correctly
	  under certain conditions. Added new code to handle timeouts of
	  bogus session clients (not yet enabled by default)

2004-01-15 22:47  benny

	* TODO, xfce4-session/session-control.h: Note problem with
	  xfce4-session on Solaris as reported by Chris Greenman on
	  xfce4-dev at 20030115

2004-01-13 23:07  benny

	* NEWS, TODO, config.h.in, configure, configure.ac,
	  xfce4-session/client.c, xfce4-session/client.h,
	  xfce4-session/main.c, xfce4-session/manager.c,
	  xfce4-session/manager.h: Added --disable-tcp command line option

2004-01-13 20:42  benny

	* xfce4-session/main.c, xfce4-session/shutdown.c,
	  xfce4-shutdown/main.c: Fix missing string.h includes.

2004-01-10 19:43  benny

	* NEWS, TODO, config.h.in, configure, configure.ac,
	  xfce4-session/util.c, xfce4-session/util.h,
	  xfce4-shutdown/main.c: Imported patches from Brian J. Tarricone
	  regarding custom halt/poweroff/reboot commands with some
	  modifications and bumped version to 0.2.0

2004-01-05 13:33  benny

	* ChangeLog, Makefile.in, aclocal.m4, config.guess, config.sub,
	  configure, configure.ac, depcomp, install-sh, ltmain.sh,
	  defaults/Makefile.in, docs/Makefile.in, po/fr.gmo, po/fr.po,
	  settings/Makefile.in, xfce4-session/Makefile.in,
	  xfce4-session/shutdown.c, xfce4-shutdown/Makefile.in: Added
	  french translations, thanks to Jean-François Wauthy
	  <pollux@castor.be>. Make "poweroff" the default shutdown
	  operation

2003-12-29 16:18  olivier

	* po/: no.gmo, no.po: Fix missing CHARSET in potfiles

2003-12-29 11:56  jasper

	* configure, configure.ac, po/no.gmo, po/no.po, po/tr.gmo,
	  po/tr.po: Update Norwegian and Turkish translations

2003-12-27 20:46  jasper

	* configure, configure.ac, po/pl.gmo, po/pl.po: Update Polish
	  translations

2003-12-24 07:54  jasper

	* Makefile.in, aclocal.m4, config.guess, config.sub, configure,
	  configure.ac, depcomp, install-sh, ltmain.sh,
	  defaults/Makefile.in, docs/Makefile.in, po/xfce4-session.pot,
	  settings/Makefile.in, xfce4-session/Makefile.in,
	  xfce4-session/splash-fallback.h, xfce4-shutdown/Makefile.in: Bump
	  version number for tarball release

2003-12-15 21:56  jasper

	* configure, configure.ac, po/az.gmo, po/az.po: Add Azerbaijani
	  translations

2003-12-13 18:16  benny

	* ChangeLog: ChangeLog update.

2003-12-13 17:33  benny

	* xfce4-session/xfce4-session.1, xfce4-shutdown/xfce4-shutdown.1:
	  Remove unneccessary Debian stuff from the manual pages.

2003-12-13 12:25  benny

	* xfce4-session.spec.in: Added Manual pages to RPM spec.

2003-12-13 12:23  benny

	* ChangeLog: ChangeLog update.

2003-12-13 12:00  benny

	* AUTHORS, ChangeLog, xfce4-session/Makefile.am,
	  xfce4-session/Makefile.in, xfce4-session/xfce4-session.1,
	  xfce4-shutdown/Makefile.am, xfce4-shutdown/Makefile.in,
	  xfce4-shutdown/xfce4-shutdown.1: Imported the manual pages
	  written by Oliver M. Bolzer.

2003-12-11 18:09  benny

	* xfce4-session/manager.c: Added check to see if another session is
	  already running.

2003-12-11 10:54  benny

	* TODO: New TODO item.

2003-11-21 08:33  benny

	* TODO: Additional TODO item.

2003-11-20 22:21  benny

	* configure, configure.ac, po/it.gmo, po/it.po: Added italian
	  translation, thanks to Eduard Roccatello.

2003-11-20 18:57  benny

	* Makefile.in, aclocal.m4, config.guess, config.sub, configure,
	  configure.ac, depcomp, install-sh, ltmain.sh,
	  defaults/Makefile.in, docs/Makefile.in, po/ko.gmo, po/ko.po,
	  settings/Makefile.in, xfce4-session/Makefile.in,
	  xfce4-shutdown/Makefile.in: Added korean translations, thanks to
	  byunghyunchoi@hotmail.com.

2003-11-16 22:49  olivier

	* settings/session-icon.h: Fix 64bit/endianess problem

2003-11-12 19:34  jasper

	* configure, configure.ac, po/sv.gmo, po/sv.po: Add swedish
	  translations

2003-11-02 09:22  olivier

	* configure, configure.ac, po/hi.gmo, po/hi.po: Add hi.po

2003-10-22 09:49  jasper

	* po/: ta.gmo, ta.po, zh_TW.gmo, zh_TW.po: Add missing po/gmo files

2003-10-22 09:47  jasper

	* configure, configure.ac: Update tamil and chinese traditional
	  translations

2003-10-13 20:51  jasper

	* ChangeLog: Update ChangeLog's after syncing with SF. Everything
	  should now be up-to-date.

2003-09-22 00:19  xfce

	* aclocal.m4, configure, configure.ac: Update version number to
	  4.0.0 Improve focus change for modal dialogs in xfwm4

2003-09-15 00:07  xfce

	* ChangeLog: Update ChangeLog

2003-09-14 01:13  xfce

	* ChangeLog: Update ChangeLog

2003-08-10 21:54  huysmans

	* po/: zh_CN.gmo, zh_CN.po: Update chinese translations

2003-08-08 00:09  huysmans

	* configure, configure.ac, po/ca.gmo, po/ca.po: Update catalan
	  translations

2003-08-03 20:50  bmeurer

	* Makefile.in, aclocal.m4, configure, ltcf-c.sh: Removed obsolete
	  ltcf-c.sh leftover from libtool 1.4

2003-08-03 20:45  bmeurer

	* ChangeLog: Updated ChangeLogs

2003-08-03 20:37  bmeurer

	* m4/X11.m4: grep -q does not work with Solaris grep, fixed it.

2003-08-03 18:55  bmeurer

	* xfce4-session/util.c: Fix stupid typo: #ifdef -> #ifndef

2003-07-24 18:30  bmeurer

	* TODO: Added note about Autostart with default.session (thanks to
	  Bernhard).

2003-07-23 18:00  bmeurer

	* xfce4-session/: xfsm-marshal.c, xfsm-marshal.h,
	  xfsm-marshal.list: Added initial marshallers stuff.

2003-07-22 13:07  bmeurer

	* xfce4-session/xfsm-marshal.list: Added a dummy file to get it
	  working again.

2003-07-21 23:23  bmeurer

	* ChangeLog, NEWS, configure, configure.ac,
	  xfce4-session/Makefile.am, xfce4-session/Makefile.in,
	  xfce4-session/ice-layer.c, xfce4-session/main.c,
	  xfce4-session/manager.c: Use mcs_setting_free() where appriotate.

2003-07-19 13:16  bmeurer

	* po/POTFILES.in, po/de.gmo, po/de.po, po/es.gmo, po/es.po,
	  po/es_MX.gmo, po/es_MX.po, po/nl.gmo, po/nl.po, po/tr.gmo,
	  po/tr.po, po/xfce4-session.pot, po/zh_CN.gmo, po/zh_CN.po,
	  xfce4-session/ice-layer.c: Fixed broken POTFILES.in

2003-07-18 23:09  bmeurer

	* ChangeLog, TODO: Add note about Autostart option

2003-07-18 21:45  bmeurer

	* xfce4-session/main.c: Fixes: "the xfce4-session trayicon is off
	  by default, but the settings dialog says it's on"

2003-07-18 12:05  bmeurer

	* configure, configure.ac, xfce4-session/Makefile.am,
	  xfce4-session/Makefile.in, xfce4-session/client-list.c,
	  xfce4-session/client-list.h, xfce4-session/ice-layer.c,
	  xfce4-session/main.c, xfce4-session/manager.c,
	  xfce4-session/session-control.c, xfce4-session/session-control.h:
	  Renamed ClientList to SessionControl, since the old name was
	  confusing.

2003-07-18 09:46  huysmans

	* configure, configure.ac, po/tr.gmo, po/tr.po: Update turkish
	  translations

2003-07-16 20:01  huysmans

	* po/: nl.gmo, nl.po: Update dutch translations

2003-07-16 00:06  bmeurer

	* ChangeLog, NEWS, xfce4-session/client-list.c,
	  xfce4-session/xfce_trayicon.c: XfceTrayIcon now provides both
	  "clicked" and "double_clicked" signals.  "clicked" is used for
	  the session tray icon.

2003-07-15 18:23  bmeurer

	* NEWS, configure, configure.ac, po/de.gmo, po/de.po, po/es.gmo,
	  po/es.po, po/es_MX.gmo, po/es_MX.po, po/nl.gmo, po/nl.po,
	  po/xfce4-session.pot, po/zh_CN.gmo, po/zh_CN.po,
	  settings/session.c, xfce4-session/client-list.c,
	  xfce4-session/main.c, xfce4-session/xfce_trayicon.c,
	  xfce4-session/xfce_trayicon.h: Many improvements on the
	  XfceTrayIcon class (will be moved to libxfcegui4 soon). Session
	  managers tray icon can now be enabled/disabled from the settings
	  dialog. Added more helpful tooltips to the settings dialog
	  (translations needs to be updated). Make "session control" sticky
	  again, since the xfwm4 problem with sticky windows seems to be
	  fixed.

2003-07-14 20:31  bmeurer

	* xfce4-session.spec.in: Fixed spec file.

2003-07-13 18:18  bmeurer

	* NEWS, TODO, config.h.in, configure, configure.ac, po/de.gmo,
	  po/de.po, po/es.gmo, po/es.po, po/es_MX.gmo, po/es_MX.po,
	  po/nl.gmo, po/nl.po, po/xfce4-session.pot, po/zh_CN.gmo,
	  po/zh_CN.po, settings/session.c, xfce4-session/client-list.c,
	  xfce4-session/client.h, xfce4-session/manager.c,
	  xfce4-session/splash-screen.c, xfce4-session/util.c,
	  xfce4-session/util.h: Several updates and fixes. Version is now
	  0.1.0. See NEWS for details.

2003-07-13 16:44  bmeurer

	* xfce4-session/client-list.c: Do not make "session control"
	  sticky. That fixes the withdrawn issue.

2003-07-13 13:54  bmeurer

	* ChangeLog, settings/session.c: Create users splash themes dir
	  upon install theme request.

2003-07-13 10:43  huysmans

	* ChangeLog: Update ChangeLogs for release

2003-07-13 10:13  bmeurer

	* TODO, po/POTFILES.in, po/de.gmo, po/de.po, po/es.gmo, po/es.po,
	  po/es_MX.gmo, po/es_MX.po, po/nl.gmo, po/nl.po,
	  po/xfce4-session.pot, po/zh_CN.gmo, po/zh_CN.po,
	  xfce4-session/xfce_trayicon.c: Fixed wrong POTFILES.in. Fixed
	  gtk2.0 compat.

2003-07-12 21:03  bmeurer

	* ChangeLog, NEWS: Fixed typo.

2003-07-12 20:41  bmeurer

	* ChangeLog, Makefile.am, Makefile.in, NEWS, TODO, configure,
	  configure.ac, xfce4-session.spec.in, po/POTFILES.in, po/de.gmo,
	  po/de.po, po/es.gmo, po/es.po, po/es_MX.gmo, po/es_MX.po,
	  po/nl.gmo, po/nl.po, po/xfce4-session.pot, po/zh_CN.gmo,
	  po/zh_CN.po, xfce4-session/Makefile.am,
	  xfce4-session/Makefile.in, xfce4-session/main.c,
	  xfce4-session/manager.c, xfce4-session/tray-icon.c,
	  xfce4-session/tray-icon.h, xfce4-session/xfce_trayicon.c,
	  xfce4-session/xfce_trayicon.h: Fixed tray icon problem, using new
	  XfceTrayIcon class.

2003-07-11 20:41  huysmans

	* xfce4-session.spec, po/de.gmo, po/de.po: update German
	  translations and remove spec file (it is generated)

2003-07-11 15:56  huysmans

	* configure, configure.ac: Hmm, chinese translation updates that
	  didn't get picked up by my previous commit. Should have been in
	  rc1, sorry.

2003-07-11 09:33  huysmans

	* ChangeLog: Update ChangeLog's for release

2003-07-11 09:17  huysmans

	* po/: zh_CN.gmo, zh_CN.po: Update Chinese translations (2)

2003-07-11 01:02  bmeurer

	* ChangeLog, NEWS, TODO, po/de.gmo, po/de.po, po/es.gmo, po/es.po,
	  po/es_MX.gmo, po/es_MX.po, po/nl.gmo, po/nl.po,
	  po/xfce4-session.pot, xfce4-session/main.c,
	  xfce4-session/manager.c, xfce4-session/tray-icon.c: Fixed some
	  problems with the tray-icon (also fixed stuff in libxfcegui4).
	  The g_object_unref() error message was caused by the menu:
	  gtk_menu_new() -> g_object_ref() -> g_object_unref() ->
	  g_object_unref() *PLONK*

2003-07-10 11:56  huysmans

	* ChangeLog: Update ChangeLog's for release

2003-07-10 01:15  bmeurer

	* ChangeLog, TODO, xfce4-session/startup.c: Give clients more time
	  to restart: g_idle_add(..) -> g_timeout_add(50,..) This fixes
	  some problems with clients being restarted too fast and xfwm4
	  failing to restore window properties correct.

2003-07-10 00:50  bmeurer

	* ChangeLog, po/de.gmo, po/de.po, po/es.gmo, po/es.po,
	  po/es_MX.gmo, po/es_MX.po, po/nl.gmo, po/nl.po: Updated po's

2003-07-10 00:46  bmeurer

	* ChangeLog, Makefile.am, Makefile.in, NEWS, TODO, config.h.in,
	  configure, configure.ac, xfce4-session.spec,
	  xfce4-session.spec.in, po/de.gmo, po/de.po, po/es.gmo, po/es.po,
	  po/es_MX.gmo, po/es_MX.po, po/nl.gmo, po/nl.po,
	  po/xfce4-session.pot, xfce4-session/client-list.c,
	  xfce4-session/main.c, xfce4-session/manager.c,
	  xfce4-session/manager.h, xfce4-shutdown/Makefile.am,
	  xfce4-shutdown/Makefile.in, xfce4-shutdown/main.c: Added spec
	  file. 2 Solaris fixes. State is now displayed in session control.
	  Added Quit and Save entries to the tray menu. Fixed bug in
	  SaveYourselfDone.  Added UNIX signals support. Added security
	  check to xfce4-shutdown.

2003-07-09 09:28  bmeurer

	* ChangeLog, TODO: Added .spec file to TODO list, updated
	  ChangeLog.

2003-07-09 00:37  bmeurer

	* ChangeLog, configure, configure.ac, po/POTFILES.in, po/de.gmo,
	  po/de.po, po/es.po, po/es_MX.po, po/nl.po, po/xfce4-session.pot:
	  Depend on fixed xfce-mcs-manager and updated translation
	  (german).

2003-07-09 00:30  bmeurer

	* ChangeLog, NEWS, TODO, defaults/default.session,
	  po/xfce4-session.pot, xfce4-session/main.c,
	  xfce4-session/manager.c, xfce4-session/manager.h,
	  xfce4-session/tray-icon.c, xfce4-session/tray-icon.h: Additional
	  notes and ChangeLog updated.

2003-07-08 23:20  bmeurer

	* ChangeLog, po/xfce4-session.pot, xfce4-session/ice-layer.c:
	  Client was not removed from "session control" if an ICE error
	  occurred.

2003-07-08 23:05  bmeurer

	* NEWS, configure, configure.ac, xfce4-session/Makefile.am,
	  xfce4-session/Makefile.in, xfce4-session/client-list.c,
	  xfce4-session/client-list.h, xfce4-session/client.c,
	  xfce4-session/client.h, xfce4-session/main.c,
	  xfce4-session/manager.c, xfce4-session/splash-screen.c,
	  xfce4-session/tray-icon.c, xfce4-session/tray-icon.h,
	  xfce4-session/util.c, xfce4-session/util.h: Several updates. See
	  NEWS file for details.

2003-07-08 18:14  bmeurer

	* NEWS, docs/FAQ: Added notes about Oliviers recent changes to
	  startxfce4.

2003-07-08 15:08  huysmans

	* po/es.gmo, po/es.po, po/es_MX.gmo, po/es_MX.po, po/nl.gmo,
	  po/nl.po, configure, configure.ac: Add Dutch translations and fix
	  Spanish ones

2003-07-08 04:40  edscott

	* po/: es.po, es_MX.po: specify utf-8 charset in spanish files

2003-07-08 04:36  edscott

	* configure.ac, po/es.po: european spanish (initial)

2003-07-08 04:34  edscott

	* configure.ac, po/es_MX.po: spanish

2003-07-07 23:33  bmeurer

	* ChangeLog, ltmain.sh: Trying Olivier's special MacOSX compat
	  libtool.

2003-07-07 23:26  bmeurer

	* aclocal.m4, configure, po/de.gmo, po/de.po, po/xfce4-session.pot:
	  Strings changed (due to tooltips being added).

2003-07-07 23:19  bmeurer

	* ChangeLog: Updated ChangeLog.

2003-07-07 23:18  bmeurer

	* ChangeLog, settings/session.c: Added tooltips and improved the
	  "Install theme" dialog handling.

2003-07-07 22:12  bmeurer

	* NEWS, TODO, configure, configure.ac, docs/FAQ, docs/Makefile.am,
	  docs/Makefile.in, po/de.gmo, po/de.po: Added FAQ. Updated german
	  translation again. version to 0.0.21.

2003-07-07 21:35  bmeurer

	* po/: de.gmo, de.po: Updated German translation, thanks to Moritz
	  Heiber.

2003-07-07 20:07  bmeurer

	* ChangeLog, Makefile.am, Makefile.in: Added
	  ChangeLog.pre-xfce-devel to Makefile.am.

2003-07-07 19:36  bmeurer

	* ChangeLog, Makefile.in, ltconfig: Remove ltconfig script. Its
	  autogenerated.

2003-07-07 19:27  bmeurer

	* AUTHORS, README, TODO, aclocal.m4, autogen.sh, compile,
	  config.guess, config.h.in, config.sub, configure, configure.ac,
	  depcomp, install-sh, ltcf-c.sh, ltconfig, INSTALL, Makefile.am,
	  Makefile.in, ltmain.sh, missing, mkinstalldirs, COPYING,
	  ChangeLog, ChangeLog.pre-xfce-devel, NEWS, defaults/Makefile.am,
	  defaults/Makefile.in, defaults/default.session,
	  defaults/shutdown.allow, defaults/xinitrc.xfce4-session,
	  docs/Makefile.am, docs/Makefile.in, docs/SessionFileFormat.txt,
	  docs/SplashThemes.txt, xfce4-session/Makefile.in,
	  xfce4-session/client.c, xfce4-session/client.h,
	  xfce4-session/ice-layer.c, xfce4-session/ice-layer.h,
	  xfce4-session/main.c, xfce4-session/manager.c,
	  xfce4-session/manager.h, xfce4-session/util.h,
	  xfce4-session/shutdown.c, xfce4-session/shutdown.h,
	  xfce4-session/splash-fallback.h, settings/Makefile.am,
	  xfce4-session/Makefile.am, xfce4-session/splash-fallback.png,
	  xfce4-session/splash-screen.c, xfce4-session/splash-screen.h,
	  xfce4-session/startup.c, xfce4-session/startup.h,
	  xfce4-session/util.c, settings/Makefile.in,
	  settings/session-icon.h, settings/session.c, m4/X11.m4,
	  m4/debug.m4, m4/depends.m4, m4/i18n.m4, po/ChangeLog,
	  po/Makefile.in.in, po/POTFILES.in, po/de.gmo, po/de.po,
	  po/xfce4-session.pot, settings/session.png,
	  xfce4-shutdown/Makefile.am, xfce4-shutdown/Makefile.in,
	  xfce4-shutdown/main.c: Initial revision