~ubuntu-branches/ubuntu/natty/sawfish/natty

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
2009-10-09  Christopher Bratusek <zanghar@freenet.de>
	* src/windows.c: fixed a race condition which may lead to a crash, if
	                 a window is mapped and immediately unmapped
			 -- [Janek Kozicki, Timo Korvola]

2009-09-20  Christopher Bratusek <zanghar@freenet.de>
	* themes/Crux/theme.jl: make default text-color of inactive frames black
	                          for better readability

	* configure.in: post-release version bump to 1.5.3 ("24 hours a day - 12 months a year")

2009-09-15  Christopher Bratusek <zanghar@freenet.de>
	* scripts/Makefile.in: also expand REP_ENVIRON here [Luis Rodrigo Gallardo Cruz]

	* man/Makefile.in: actually build FAQ
	                   removed sawfish.dvi target
			   removed sawfish.ps target
			   removed man target

2009-09-14  Christopher Bratusek <zanghar@freenet.de>
	* man/news.texi: 1.5.0 section rewritten [Teika Kazura]

	* configure.in: bump minimum rep-gtk to 0.90.0

	* lisp/sawfish/gtk/color-preview.jl
	* lisp/sawfish/gtk/widgets/color.jl: removed GtkButton + GtkPreview + GtkColorSelection by GtkColorButton
	                                     makes 1.5s sawfish-ui compatible with rep-gtk 0.90.0

	* man/news.texi: updated

2009-09-05  Christopher Bratusek <zanghar@freenet.de>
	* configure.in: bump version to 1.5.2 ("Save The Robots")

	* sawfish.spec.in: improved [Kim B. Heino]

2009-07-28  Christopher Bratusek <zanghar@freenet.de>
	* configure.in: bump version to 1.5.1 ("Great")
	                small fixup in x11r7 checks regarding SMlib and libICE
	                non-bash compatibility
	
	* lisp/sawfish/wm/tabs/tab.jl
	* lisp/sawfish/wm/tabs/tabgroup.jl
	* lisp/sawfish/wm/util/marks.jl: fixed license header	
	
	* po/Makefile.in: renamed realclean rule to distclean rule
	
	* lisp/sawfish/wm/placement/stagger.jl: fix group of stagger option
	
	* sawfish.desktop
	* sawfish-wm.dektop: fixed a typo, removed unneeded entries
	
	* lisp/sawfish/wm/ext/infinite-desktop.jl: fixed cursor warping [Jeremy Hankins]
	
	* lisp/sawfish/gtk/widget.jl: connect spinbuttons to value-changed signal (allows typing in the value manually)
	
	* src/Makefile.in: add --tag=CC there necessary on some systems [Gentoo]
	                   include $CFLAGS in gtk-style rule

	* sawfish-ksm.desktop: make sawfish appear in the KDE4 Windowselector

2009-07-02  Christopher Bratusek <zanghar@freenet.de>
	* po/*
	* configure.in: de-intltoolize sawfish ... is breaking current
	sawfish-ui badly, preparative tasks for tommorows 1.5.0 release

2009-06-26  Christopher Bratusek <zanghar@freenet.de>
	* configure.in: added --with/without-nls option [disable installing
	translations files, default=enabled]

	* scripts/Makefile.in
	* lisp/Makefile.in
	* lisp/sawfish/ui/Makefile.in
	* lisp/sawfish/gtk/Makefile.in: expand REP_ENVIRON

	* lisp/sawfish/wm/session/init.jl: set RestartStyleHint to 2
	[Christian Marillat]

	* lisp/sawfish/wm/session/load.jl: when matching window to alist try
	to match according WM_NAME if there's no WM_CLASS [Christian Marillat]

	* README.IMPORTANT
	* man/news.texi: updated

2009-06-19  Christopher Bratusek <zanghar@freenet.de>
	* themes/microGUI/theme.jl: fixed a speed-issue

	* themes/Elberg-tabbed/theme.jl: make properly use of WM_NAME

	* lisp/sawfish/wm/ext/match-window.jl: expose fixed-position,
	never-iconify, never-maximize in the Window-Matcher UI

	* lisp/sawfish/wm/focus.jl
	* lisp/sawfish/wm/state/transient.jl: improve kde3 integration
	and new focus-revert logic [Timo Korvola]

	* README.IMPORTANT: Note about double-click in UI

	* man/sawfish.texi: updated doc for focus-revert [Timo Korvola]

	* man/news.texi: updated

2009-06-01  Christopher Bratusek <zanghar@freenet.de>
	* lisp/sawfish/gtk/widget.jl: UTF-8 Support

2009-05-31  Christopher Bratusek <zanghar@freenet.de>
	* lisp/sawfish/wm/goups.jl
	* lisp/sawfish/wm/ext/beos-window-menu.jl: UTF-8 Support [Wang Diancheng]

	* configure.in: bump minimum librep to 0.90.0 for UTF-8 Support
		        small fixup in rep-gtk check

2009-05-27  Christopher Bratusek <zanghar@freenet.de>
	* lisp/sawfish/wm/util/prompt.jl: fixed typo

2009-05-25  Christopher Bratusek <zanghar@freenet.de>
	* lisp/sawfish/wm/commands/move-cursor.jl: export all functions

2009-05-16  Christopher Bratusek <zanghar@freenet.de>
	* lisp/sawfish/wm/util/prompt.jl: improved prompt.jl [Sergey I. Sharybi]

	* OPTIONS: updated

2009-05-08  Christopher Bratusek <zanghar@freenet.de>
	* lisp/sawfish/wm/placement.jl: interactive placement mode now also for dialogs

	* OPTIONS: updated

2009-05-07  Christopher Bratusek <zanghar@freenet.de>
	* COPYING.SOUNDS: added

	* lisp/sawfish/wm/autoload.jl
	* lisp/sawfish/wm/commands/x-cycle.jl: added cycle-among-groups{,-backwards} [Fernando Carmano Varo]

	* lisp/sawfish/wm/autoload.jl: autoload Tabs-group

	* lisp/sawfish/wm/tabs/tab.jl: Tabbed Windowing Support: Raise Tabs on hover

	* lisp/sawfish/wm/keymaps.jl
	* lisp/sawfish/wm/tab.jl: rename add-to-group to tab-add-to-group

2009-05-06  Christopher Bratusek <zanghar@freenet.de>
	* sawfish.spec.in: don't re-define %{_host} [Ritz]

	* */ChangeLog.pre-1.5.0: remove old ChangeLog files

2009-05-05  Christopher Bratusek <zanghar@freenet.de>
	* lisp/sawfish/wm/util/window-outline.jl: some fixups for the draft animator [Teika]

2009-05-04  Christopher Bratusek <zanghar@freenet.de>
	* configure.in: - fix the last incomplete AC_DEFINE
			- remove unsed configure flags
			- don't add CFLAGS if non given
			- check for intltool 0.40.0

	* autogen.sh: run intltoolize

	* po/POTFILES.in: updated

	* sawfish.ebuild.in: updated

	* po/LINGUAS: added

	* po/sawfish.pot
	* po/make-pot
	* po/sawfish-xgettext
	* po/update.sh: removed, using intltool instead

	* lisp/sawfish/ui/frame-style.jl: make frame-style string translatable

2009-05-03  Christopher Bratusek <zanghar@freenet.de>
	* lisp/sawfish/ui/slot.jl: make defcustoms strings translatable [Alexey I. Froloff]

2009-04-20  Christopher Bratusek <zanghar@freenet.de>
	* src/keys.c: - AltGR is not always Mod5

2009-04-14  Christopher Bratusek <zanghar@freenet.de>
	* src/keys.c : - added AltGR as synonyme for Mod5
	               - make sure we don't mix Super and Hyper [Denis Barbier]

2009-04-05  Christopher Bratusek <zanghar@freenet.de>
	* lisp/sawfish/wm/ext/match-window.jl
	* lisp/sawfish/wm/windows.jl: Make Sawfish more error-tolerant if an app has an icomplete WM_CLASS (Martin Mares)

	* src/events.c
	* src/windows.c: Fix for iconify issue (improved solution) [Teika]

	* CONTRIBUTING
	* man/news.texi: updated

	* man/news.texi: removed dupped entries, fixed typos

	* sounds/Makefile.in
	* po/Makefile.in	
	* src/Makefile.in: fix uninstall target

	* Makefile.in: uninstall all .desktop files

2009-04-04  Christopher Bratusek <zanghar@freenet.de>
	* BUGS
	* HACKING
	* THANKS
	* TREE: removed

	* CONTRIBUTING: the file replacing BUGS HACKING THANKS

	* README.IMPORTNAT: major update

	* README: updated

	* sawfish.ebuild.in
	* sawfish.spec.in: updated for doc file changes

2009-04-03  Christopher Bratusek <zanghar@freenet.de>
	* lisp/sawfish/wm/autoload.jl
	* lisp/sawfish/wm/ext/window-history.jl: make window-history options appear in Sawfish-UI

	* man/news.texi: updated

2009-04-02  Christopher Bratusek <zanghar@freenet.de>
	* man/faq.texi: major update [Teika]

	* man/sawfish.texi: major update [Teika]
                            bump EDITION to 0.14
			    bump VERSION to 1.5.0
			    update UPDATED and UPDATE-MONTH

	* configure.in: don't run build-info

	* */ChangeLog: renamed to */ChangeLog.pre-1.5.0

2009-04-01  Christopher Bratusek <zanghar@freenet.de>
	* lisp/sawfish/wm/ext/match-window.jl: move 'avoid' from placement to state [Teika]

	* lisp/sawfish/wm/state/maximize.jl: fixed position of a comment [Teika]

	* lisp/sawfish/wm/viewport.jl
	* lisp/sawfish/wm/focus.jl
	* lisp/sawfish/wm/windows.jl: replace several Wether by Whether [Teika]

	* lisp/sawfish/wm/util/compat.jl: maximize-always-expands, maximize-ignore-when-filling and
	                                  maximize-avoid-avoided are not obosolete [Teika]

	* lisp/sawfish/ui/layouts/keymaps.jl
	* lisp/sawfish/ui/layout.jl: replace several defvar with define [Teika]
	                             some indention improvements [Teika]

	* man/news.texi: improvements [Teika]
                         updated [Chris]

2009-03-24  Christopher Bratusek <zanghar@freenet.de>
	* lisp/sawfish/wm/viewport.jl
	* lisp/sawfish/wm/autoload.jl: make viewport commands appear in sawfish-ui

	* configure.in: changed appearance of ending message a bit
	                display additional infos
			added codename field
			re-ordered some checks
	                only display cairo version if it exists
			put all AC_SUBST at the end of the file

	* Makedefs.in: remove nokogiridir (not beeing used)
	               first define host_type then stuff that refers to it
		       first define datarootdir then stuff that refers to it

	* man/news.texi: updated

2009-03-15  Christopher Bratusek <zanghar@freenet.de>
	* KEYBINDINGS: added description of several extra keys

2009-03-06  Christopher Bratusek <zanghar@freenet.de>
	* configure.in
	* Makedefs.in: don't ignore datarootdir setting

2009-03-05  Christopher Bratusek <zanghar@freenet.de>
	* HACKING: updated

	* sawfish.ebuild.in
	* sawfish.spec.in: add HACKING, COYPING, COPYING.SOUNDS to doc-files

	* sawfish.spec.in: package sawfish xsession file

	* autogen.sh
	* configure.in: de-intltoolize sawfish ... not working properly

	* po/LINGUAS
	* po/Makefile.in.in: removed

	* po/update.sh
	* po/make-pot
	* po/sawfish.pot
	* po/Makefile.in
	* po/sawfish-xgettext: added back

	* po/*.po
	* po/sawfish.pot: updated

	* COPYING.SOUNDS: license for the sounds is Artistic2.0beta4

	* THANKS: updated

	* sounds/focused.wav
	* sounds/iconify.wav
	* sounds/map-transient.wav
	* sounds/map.wav
	* sounds/maximize.wav
	* sounds/move-viewport.wav
	* sounds/shade.wav
	* sounds/unfocused.wav
	* sounds/uniconify.wav
	* sounds/unmap-transient.wav
	* sounds/unmap.wav
	* sounds/unmaximize.wav
	* sounds/unshade.wav: added new sounds, by glh Pimenta, taken from his Feather/Needle Soundthemes

	* sounds/activate.wav
	* sounds/clicked.wav
	* sounds/gameover.wav
	* sounds/slide.wav
	* sounds/toggled.wav: removed old sounds

	* lisp/sawfish/wm/ext/audio-events.jl: use new sounds

	* KEYBINDINGS: add how to remove keybindings manually

2009-03-04  Christopher Bratusek <zanghar@freenet.de>
	* KEYBINDINGS: - added description of ISO_Left_Tab
	               - mention Alt Gr
		       - mention Buttons 4 and 5
		       - add how to add keybindings manually

2009-03-03  Christopher Bratusek <zanghar@freenet.de>
	* man/user-doc.texi: fixed a typo

	* sawfish.ebuild.in
	* sawfish.spec.in: add USERDOC to doc-files

2009-03-01  Guillermo S. Romero <gsromero@svn.gnome.org>
	* man/user-doc.texi: on going work on user docs.

2009-02-19  Christopher Bratusek <zanghar@freenet.de>
	* sawfish.desktop
	* sawfish-wm.desktop
	* sawfish-session.desktop: remove useless translations, which are equal to the original string

	* lisp/sawfish/wm/ext/infinite-desktop.jl: update file-header

	* lisp/sawfish/wm/tabs/tab.jl
	* lisp/sawfish/wm/tabs/tabgroup.jl: update file-headers

	* man/news.texi: better description for infinite-desktop.jl

	* themes/*/.jl: s/sawmill/sawfish/g

2009-02-17  Christopher Bratusek <zanghar@freenet.de>
	* Makefile.in
	* sawfish-session.desktop: added session desktop file

	* configure.in: don't just read README.IMPORTANT if this is an upgrade

	* lisp/sawfish/wm/ext/3d-hack.jl: remove annotate-points - not beeing used

	* man/sawfish.texi: Major Documentation updated [Derek Upham]

2009-02-16  Christopher Bratusek <zanghar@freenet.de>
	* lisp/sawfish/wm/animation/outline.jl: load sawfish.wm.gaol for screen-width/height to be set

	* man/news.texi: updated

2009-02-15  Christopher Bratusek <zanghar@freenet.de>
	* configure.in: print message at the end that README.IMPORTANT should be read

	* lisp/sawfish/wm/viewport.jl: changed a string

2009-02-15  Guillermo S. Romero <gsromero@svn.gnome.org>
	* man/faq.texi: more s/sawmill/sawfish/ clean up
	                also explained rc duality (~/.sawfish[/]rc).

	* KEYBINDINGS: Suggest xmodmap and xev. Super (not s) is Super

	* man/user-doc.texi: brain backup about workspaces, viewports, etc

2009-02-14  Christopher Bratusek <zanghar@freenet.de>
	* man/user-doc.texi: added introduction

	* KEYBINDINGS: fixed some misstakes

2009-02-12  Christopher Bratusek <zanghar@freenet.de>
	* man/user-doc.texi: added uniconify, maximize, unmaximize, delete, shade, unshade, raise, lower, cycle
	                     nicer formatting

2009-02-11  Christopher Bratusek <zanghar@freenet.de>
	* man/user-doc.texi
	* man/Makefile.in: add intial try of a user-doc

2009-02-09  Christopher Bratusek <zanghar@freenet.de>
	* KEYBINDINGS: S is Super not Shift
	               W is Modifier and M is Alt
	               s/take place/are active/g

	* lisp/sawfish/wm/commands/shrink-yank: Don't forget to load sawfish.wm.custom

	* po/POTFILES.in: marks.jl is now in .util

	* lisp/sawfish/wm/animation/outline.jl
	* lisp/sawfish/wm/frames.jl
	* lisp/sawfish/wm/ext/edge-flip.jl
	* lisp/sawfish/wm/ext/infinite-desktop.jl
	* lisp/sawfish/wm/ext/tooltips.jl
	* lisp/sawfish/wm/ext/match-window.jl
	* lisp/sawfish/wm/ext/audio-events.jl
	* lisp/sawfish/wm/ext/error-handler.jl
	* lisp/sawfish/wm/ext/shade-hover.jl
	* lisp/sawfish/wm/ext/window-history.jl
	* lisp/sawfish/wm/ext/auto-raise.jl
	* lisp/sawfish/wm/workspace.jl
	* lisp/sawfish/wm/placement.jl
	* lisp/sawfish/wm/custom.jl
	* lisp/sawfish/wm/state/iconify.jl
	* lisp/sawfish/wm/state/maximize.jl
	* lisp/sawfish/wm/state/transient.jl
	* lisp/sawfish/wm/focus.jl
	* lisp/sawfish/wm/viewport.jl
	* lisp/sawfish/wm/tabs/tab.jl
	* lisp/sawfish/wm/menus.jl
	* lisp/sawfish/wm/window-anim.jl
	* lisp/sawfish/wm/windows.jl
	* lisp/sawfish/wm/commands/move-cursor.jl
	* lisp/sawfish/wm/commands/grow-pack.jl
	* lisp/sawfish/wm/commands/shrink-yank.jl
	* lisp/sawfish/wm/commands/xterm.jl
	* lisp/sawfish/wm/commands/x-cycle.jl
	* lisp/sawfish/wm/commands/move-resize.jl
	* lisp/sawfish/wm/stacking.jl
	* lisp/sawfish/wm/placement/stagger.jl
	* lisp/sawfish/wm/autoload.jl
	* lisp/sawfish/wm/keymaps.jl
	* lisp/sawfish/wm/util/prompt.jl
	* lisp/sawfish/wm/util/stacking.jl
	* lisp/sawfish/wm/util/play-audio.jl
	* lisp/sawfish/wm/util/display-window.jl: temporarly remove translatable strings

2009-02-08  Christopher Bratusek <zanghar@freenet.de>
	* lisp/sawfish/wm/ext/infinite-desktop.jl: remove dtm. prefix from functions

	* lisp/sawfish/wm/frames.jl: fix an issue, that broke sawfish-ui

2009-02-07  Christopher Bratusek <zanghar@freenet.de>
        * configure.in: use POSIX code [Mark Diekhans]

2009-02-07  Guillermo S. Romero <gsromero@svn.gnome.org>
        * lisp/sawfish/wm/tabs/marks.jl
        * lisp/sawfish/wm/util/marks.jl: move marks from tabs to util

        * lisp/sawfish/wm/tabs/tab.jl: update accordingly

2009-02-05  Christopher Bratusek <zanghar@freenet.de>
	* lisp/sawfish/wm/keymaps.jl
	* KEYBINDINGS: move tab-raising bindings from global to window keymap

	* po/POTFILES.in: updated for tab and shrink/yank files

	* OPTIONS: updated

	* man/news.texi: updated

	* lisp/sawfish/wm/commands/shrink-yank.jl: Shrinking/Yanking Support [Timo Korvola]

	* configure.in: bump minimum intltool version to 0.40.0

	* lisp/sawfish/wm/ext/infinite-desktop.jl : Added [David T. McWherter]

2009-02-04  Christopher Bratusek <zanghar@freenet.de>
	* lisp/sawfish/wm/keymaps.jl: remove tab-keymap, add grouping to Button2-Off on titlebar

	* KEYBINDINGS: complete list of default keybindings

	* OPTIONS: added new options coming from tabs

	* sawfish.spec.in: add KEYBINDINGS to %doc

	* sawfish.ebuild.in: add KEYBINDINGS README.IMPORTANT to %doc

	* README.IMPORTANT: changed syntax

2009-02-03  Christopher Bratusek <zanghar@freenet.de>
	* configure.in: - re-add checks for XFree86 (add --without-xorg-x11r7 flag)
                        - fixed a typo

	* README.IMPORTANT: updated

	* install-sh: added for libtool < 2.2

	* librep.spec.in: don't call make-pot (deprecated)
	                  don't %doc deprecated files

	* lisp/sawfish/wm/keymaps.jl: - merged tab-keymap.jl
	                              - add keymap for tabs (tab-keymap)

	* lisp/sawfish/wm/tabs/tab.jl
	* lisp/sawfish/wm/tabs/tabgroup.jl
	* lisp/sawfish/wm/tabs/marks.jl: Merged tab-system [Yann Hodique, Scott Scriven, Nathan Froyd, Christopher Bratusek]

	* lisp/Makefile.in: install tabbing code

	* po/Makefile.in.in: remove file, add symlink instead (fixes issue with older intltool)

	* autogen.sh: remove --copy flag from intltoolize

2009-02-02  Christopher Bratusek <zanghar@freenet.de>
	* Makefile.in: create $DESTDIR$datadir/applications before
	               installing desktop file into it

	* */Makefile.in: add distclean rule to all subdir Makefiles

	* autogen.sh: - make sure we check if intltoolize successfully exited
		      - make sure we don't use bash-specific syntax [Mark Diekhans]
		      - don't -I /usr/share/aclocal/ [Mark Diekhans]

	* configure.in: print usefull stuff at the end of configure

2009-02-01  Christopher Bratusek <zanghar@freenet.de>
	* MAINTAINERS: updated my mail address

	* autogen.sh
	* configure.in: intltoolize sawfish

	* po/LINGUAS: added

	* po/POTFILES.in: updated

	* po/Makefile.in
	* po/make-pot
	* po/sawfish.pot
	* po/sawfish-xgettext
	* po/update.sh
	* po/README: removed

	* lisp/sawfish/wm/animation/outline.jl
	* lisp/sawfish/wm/frames.jl
	* lisp/sawfish/wm/ext/edge-flip.jl
	* lisp/sawfish/wm/ext/tooltips.jl
	* lisp/sawfish/wm/ext/match-window.jl
	* lisp/sawfish/wm/ext/audio-events.jl
	* lisp/sawfish/wm/ext/error-handler.jl
	* lisp/sawfish/wm/ext/shade-hover.jl
	* lisp/sawfish/wm/ext/window-history.jl
	* lisp/sawfish/wm/ext/auto-raise.jl
	* lisp/sawfish/wm/workspace.jl
	* lisp/sawfish/wm/placement.jl
	* lisp/sawfish/wm/custom.jl
	* lisp/sawfish/wm/state/iconify.jl
	* lisp/sawfish/wm/state/maximize.jl
	* lisp/sawfish/wm/state/transient.jl
	* lisp/sawfish/wm/focus.jl
	* lisp/sawfish/wm/viewport.jl
	* lisp/sawfish/wm/window-anim.jl
	* lisp/sawfish/wm/windows.jl
	* lisp/sawfish/wm/commands/move-cursor.jl
	* lisp/sawfish/wm/commands/grow-pack.jl
	* lisp/sawfish/wm/commands/xterm.jl
	* lisp/sawfish/wm/commands/x-cycle.jl
	* lisp/sawfish/wm/commands/move-resize.jl
	* lisp/sawfish/wm/stacking.jl
	* lisp/sawfish/wm/placement/stagger.jl
	* lisp/sawfish/wm/autoload.jl
	* lisp/sawfish/wm/util/prompt.jl
	* lisp/sawfish/wm/util/stacking.jl
	* lisp/sawfish/wm/util/play-audio.jl
	* lisp/sawfish/wm/util/display-window.jl
	* lisp/sawfish/wm/keymaps.jl: mark all translatable strings with (_ )

	* po/ne.po
	* po/sr@Latn.po
	* po/bs.po
	* po/cs.po
	* po/pt_BR.po
	* po/mk.po
	* po/es.po
	* po/wa.po
	* po/ko.po
	* po/eu.po
	* po/en_GB.po
	* po/hu.po
	* po/no.po
	* po/sk.po
	* po/vi.po
	* po/uk.po
	* po/ms.po
	* po/ro.po
	* po/ru.po
	* po/rw.po
	* po/nb.po
	* po/el.po
	* po/ar.po
	* po/gl.po
	* po/en_CA.po
	* po/fr.po
	* po/et.po
	* po/nl.po
	* po/az.po
	* po/nn.po
	* po/pl.po
	* po/it.po
	* po/dz.po
	* po/sl.po
	* po/lv.po
	* po/ca.po
	* po/pt.po
	* po/da.po
	* po/sr.po
	* po/tr.po
	* po/be.po
	* po/ga.po
	* po/bg.po
	* po/de.po
	* po/sv.po
	* po/ja.po
	* po/zh_TW.po
	* po/am.po
	* po/fi.po
	* po/pa.po
	* po/oc.po
	* po/zh_CN.po: make -C po update-po

2009-01-25  Daniel Nylander <po@danielnylander.se>

        * po/sv.po: Updated Swedish translation

2009-01-18  Christopher Bratusek <zanghar@freenet.de>
	* OPTIONS
	* lisp/sawfish/wm/animation/outline.jl
	* lisp/sawfish/wm/window-anim.jl
	* lisp/sawfish/wm/commands/move-resize.jl
	* lisp/sawfish/wm/autoload.jl
	* lisp/sawfish/wm/util/window-outline.jl: added 3 new animators (cross, elliptical and draft)

	* src/events.c: Iconify before repyfying (as requested by WM_HINTS) [Ian Zimmerman]

	* sawfish.spec.in: - fixed download location
			   - changed extension to .tar.bz2
			   - don't require rep-gtk-libglade
			   - don't require control-center-devel
			   - don't create unused directories
			   - package sawfish.desktop
			   - package sawfish-wm.desktop
			   - package sawfish.pc
			   - package README.IMPORTANT
			   - let configure create librep/rep-gtk minimum requirement
			   - use _tmppath instead of /var/tmp
			   - merge changes from Michal Jaegermann's spec-file

2009-01-17  Christopher Bratusek <zanghar@freenet.de>
	* OPTIONS: fixed a typo

2009-01-14  Christopher Bratusek <zanghar@freenet.de>
	* lisp/sawfish/wm/commands/slide-window.jl: merge changes from sawfish-pager

	* lisp/sawfish/wm/state/shading.jl: merge changes from sawfish-pager

	* lisp/sawfish/wm/swapper
	* lisp/sawfish/wm/windows
	* lisp/sawfish/wm/util/display-window.jl: replace "librep"/"Jade" by "sawfish" in the copyright header

	* lisp/gtk/stock.jl: Added. (Why has it been missing?)

	* sawfish.pc.in: add libexecdir and sawfishhosttype

2009-01-11  Mario Blättermann  <mariobl@svn.gnome.org>
	* po/de.po: Updated German translation.

2009-01-06  Christopher Bratusek <nano-master@gmx.de>
	* Makefile.in: don't forget to uninstall sawfish.pc upon "make uninstall"

2009-01-03  Christopher Bratusek <nano-master@gmx.de>
	* po/sawfish.pot: updated .pot file

	* po/*.po: updated all .po files

2009-01-01  Christopher Bratusek <nano-master@gmx.de>
	* autogen.sh: small rework

	* config.h.in
	* configure.in
	* Makedefs.in: new configure.in working now (some necassary #define have not been created)

	* build-info: create ./src/build.h instead of ./build.in

	* configure.in: execute build-info, since some .c files include it, but it hasn't been there before

	* lisp/sawfish/wm/viewport.jl: move viewport-boundary-mode and scroll-viewport-steps from Workspace
				       to Workspace/Viewport in Sawfish-UI

	* m4: add that directory to make libtool 1.x shut up

	* lisp/sawfish/wm/gnome/menus.jl
	* lisp/sawfish/wm/util/display-wininfo.jl
	* lisp/sawfish/gtk/Makefile.in
	* lisp/sawfish/ui/Makefile.in
	* lisp/sawfish/ui/widgets/workspace-geometry.jl
	* lisp/sawfish/ui/widgets/icon.jl
	* configure.in: dropped libgnome|gnomeui|gnomecanvas related widgets, use pure-gtk instead

	* src/Makefile.in: make uninstall target work again

	* README.IMPORTANT: added

2008-12-31  Christopher Bratusek <nano-master@gmx.de>
	* config.h.in
	* configure.in
	* Makedefs.in: temporarily revert configure.in rework, since pango checks seem to not work

2008-12-30  Christopher Bratusek <nano-master@gmx.de>
	* Makedefs.in
	* configure.in: Major rework of configure.in [breaks build with XFree86 atm]

	* config.h.in: regenerated

	* sawmill.h
	* sawfish.h: renamed sawmill.h to sawfish.h

	* sawmill_subrs.h
	* sawfish_subrs.h: renamed sawmill_subrs.h to sawfish_subrs.h

	* src/*.[ch]: include sawfish.h/sawfish_subrs.h from now on
		      replace any occurence of sawmill with sawfish

	* etc/config.guess
	* etc/config.sub
	* etc/install-sh: don't ship those files

	* man/Makefile
	* man/sawmill.texi
	* man/sawfish.texi: renamed sawmill.texi to sawfish.texi

	* sawfish.ebuild.in: don't leak copyright info
			     more configure magic
			     don't apply libtool.patch -> obsolete
			     don't mark ppc64 as ~ since librep(svn) does now compile on ppc64

	* lisp/sawfish/wm/defaults.jl: renamed alias to sawfish-defaults

	* lisp/sawfish/wm/animation/outline.jl
	* lisp/sawfish/wm/frames.jl
	* lisp/sawfish/wm/custom-defaults.jl
	* lisp/sawfish/wm/gaol.jl
	* lisp/sawfish/wm/customize.jl
	* lisp/sawfish/wm/theming/make-theme-preview.jl
	* lisp/sawfish/wm/theming/make-theme.jl
	* lisp/sawfish/wm/ext/edge-flip.jl
	* lisp/sawfish/wm/ext/tooltips.jl
	* lisp/sawfish/wm/ext/beos-window-menu.jl
	* lisp/sawfish/wm/ext/match-window.jl
	* lisp/sawfish/wm/ext/audio-events.jl
	* lisp/sawfish/wm/ext/error-handler.jl
	* lisp/sawfish/wm/ext/old-window-menu.jl
	* lisp/sawfish/wm/ext/shade-hover.jl
	* lisp/sawfish/wm/ext/window-history.jl
	* lisp/sawfish/wm/ext/auto-raise.jl
	* lisp/sawfish/wm/ext/hide-dialogs.jl
	* lisp/sawfish/wm/ext/3d-hack.jl
	* lisp/sawfish/wm/workspace.jl
	* lisp/sawfish/wm/placement.jl
	* lisp/sawfish/wm/custom.jl
	* lisp/sawfish/wm/state/wm-spec.jl
	* lisp/sawfish/wm/state/shading.jl
	* lisp/sawfish/wm/state/iconify.jl
	* lisp/sawfish/wm/state/mwm.jl
	* lisp/sawfish/wm/state/configure.jl
	* lisp/sawfish/wm/state/maximize.jl
	* lisp/sawfish/wm/state/open-look.jl
	* lisp/sawfish/wm/state/gnome.jl
	* lisp/sawfish/wm/state/ignored.jl
	* lisp/sawfish/wm/state/transient.jl
	* lisp/sawfish/wm/user.jl
	* lisp/sawfish/wm/viewport.jl
	* lisp/sawfish/wm/focus.jl
	* lisp/sawfish/wm/session/save.jl
	* lisp/sawfish/wm/session/load.jl
	* lisp/sawfish/wm/session/init.jl
	* lisp/sawfish/wm/menus.jl
	* lisp/sawfish/wm/window-anim.jl
	* lisp/sawfish/wm/misc.jl
	* lisp/sawfish/wm/commands/size-window.jl
	* lisp/sawfish/wm/commands/groups.jl
	* lisp/sawfish/wm/commands/describe.jl
	* lisp/sawfish/wm/commands/move-cursor.jl
	* lisp/sawfish/wm/commands/viewport-linear.jl
	* lisp/sawfish/wm/commands/help.jl
	* lisp/sawfish/wm/commands/cycle.jl
	* lisp/sawfish/wm/commands/raise-commands.jl
	* lisp/sawfish/wm/commands/x-cycle.jl
	* lisp/sawfish/wm/commands/slide-window.jl
	* lisp/sawfish/wm/commands/move-resize.jl
	* lisp/sawfish/wm/commands/gnome.jl
	* lisp/sawfish/wm/cursors.jl
	* lisp/sawfish/wm/gnome/match-window.jl
	* lisp/sawfish/wm/gnome/integration.jl
	* lisp/sawfish/wm/gnome/menus.jl
	* lisp/sawfish/wm/stacking.jl
	* lisp/sawfish/wm/placement/smart.jl
	* lisp/sawfish/wm/server.jl
	* lisp/sawfish/wm/defaults.jl
	* lisp/sawfish/wm/autoload.jl
	* lisp/sawfish/wm/util/groups.jl
	* lisp/sawfish/wm/util/window-order.jl
	* lisp/sawfish/wm/util/rects.jl
	* lisp/sawfish/wm/util/compat.jl
	* lisp/sawfish/wm/util/window-outline.jl
	* lisp/sawfish/wm/util/decode-events.jl
	* lisp/sawfish/wm/util/prompt-extras.jl
	* lisp/sawfish/wm/util/keymap.jl
	* lisp/sawfish/wm/util/edges.jl
	* lisp/sawfish/wm/util/prompt-wm.jl
	* lisp/sawfish/wm/util/play-audio.jl
	* lisp/sawfish/wm/util/with-output.jl
	* lisp/sawfish/wm/util/gtkrc.jl
	* lisp/sawfish/wm/keymaps.jl
	* lisp/sawfish/wm.jl: replaced any occurence of sawmill with sawfish

	* sawfish.spec.in
	* scripts/sawfish-about.jl.in: corrected homepage

	* lisp/sawfish/wm/user.jl: remove ~/.sawmillrc from list of config files

	* lisp/sawfish/wm/animation/outline.jl
	* lisp/sawfish/wm/frames.jl
	* lisp/sawfish/wm/ext/edge-flip.jl
	* lisp/sawfish/wm/ext/tooltips.jl
	* lisp/sawfish/wm/ext/window-history.jl
	* lisp/sawfish/wm/workspace.jl
	* lisp/sawfish/wm/placement.jl
	* lisp/sawfish/wm/custom.jl
	* lisp/sawfish/wm/focus.jl
	* lisp/sawfish/wm/viewport.jl
	* lisp/sawfish/wm/window-anim.jl
	* lisp/sawfish/wm/windows.jl
	* lisp/sawfish/wm/commands/move-cursor.jl
	* lisp/sawfish/wm/commands/x-cycle.jl
	* lisp/sawfish/wm/commands/move-resize.jl
	* lisp/sawfish/wm/util/compat.jl
	* lisp/sawfish/ui/main.jl.in
	* lisp/sawfish/ui/shell.jl: Reworked Sawfish-UI

2008-12-28 Christopher Bratusek <nano-master@gmx.de>
	* src/server.c: fixed an "unknown remote error", that might appear [Alexey I. Froloff]

2008-12-27  Christopher Bratusek <nano-master@gmx.de>
	* lisp/sawfish/wm/commands/x-cycle.jl: Warp pointer to windows when cycling, if warp-cursor is enabled

	* lisp/sawfish/wm/state/maximize.jl: Warp pointer to windows when unmaximizing, if warp-cursor is enabled
					     [Fernando Carmona Varo]

2008-12-24  Christopher Bratusek <nano-master@gmx.de>
	* autogen.sh: fixed for libtool >2.2

2008-12-23  Christopher Bratusek <nano-master@gmx.de>
	* Makedefs.in: workaround an compilation-error caused by glib [Michal Jaegermann]

	* src/images.c: make building with imlib1 instead of gdk-pixbuf work again [Michal Jaegermann]

	* man/news.texi: updated

	* Makefile.in: improved distclean rule

2008-12-22  Christopher Bratusek <nano-master@gmx.de>
	* sawfish.ebuild.in: forgot to add this file

	* configure.in: improved [ALT-Linux]

	* man/news.texi: updated

	* sawfish.desktop
	* sawfish-wm.desktop: added sawfish-wm.desktop
			      updated content to make it possible for gnome-session >=2.23 to auto-start sawfish

	* Makefile.in: updated to install both .desktop files into correct directory

	* src/Makefile.in: remove a "." by $(srcdir)

	* OPTIONS: added viewport-boundary-mode, error-handler -> both, focus-mode -> enter-click
		   and scroll-viewport-steps

	* sawfish.desktop
	* sawfish-wm.desktop: different files. drop unused stuff from both.

2008-12-20  Christopher Bratusek <nano-master@gmx.de>
	* configure.in: 1.3.5 released, bump to 1.5.0
			bumped minimum librep to 0.17.3 and rep-gtk to 0.18.4,
			since rep.m4 has been removed in favour of an improved librep.pc/rep-gtk.pc

	* configure.in
	* sawfish.ebuild.in: Added ebuild [Harald van Dijk]

	* man/news.texi: Updated

	* configure.in
	* Makefile.in
	* sawfish.pc.in: Added pc file for sawfish

	* Makefile.in: Improved distclean rule

2008-12-18  Christopher Bratusek <nano-master@gmx.de>
	* lisp/sawfish/wm/gnome/integration.jl: invoke x-terminal-emulator instead of gnome-terminal [Christian Marillat]

	* lisp/sawfish/wm/gnome/menus.jl: invoke x-terminal-emulator instead of gnome-terminal
	and add /usr/share/applications aswell as /var/lib/menu-xdg/applications/menu-xdg to the menu-paths [Christian Marillat]

	* lisp/sawfish/wm/gnome/integration.jl: add gnome-menu to sawfish-menu [Christian Marillat]

	* lisp/sawfish/ui/widgets/workspace-geometry.jl: does not require gdk-pixbuf

	* man/news.texi: Updated NEWS

2008-12-17  Christopher Bratusek <nano-master@gmx.de>
	* man/news.texi: Updated NEWS

	* lisp/sawfish/wm/commands/slide-window.jl: Add the "before-slide-hook" [Andrea Vettorello]

	* man/sawmill.texi: added documentation for the "before-slide-hook" [Andrea Vettorello]

	* lisp/sawfish/wm/placement/smart.jl
	* lisp/sawfish/wm/autoload.jl: Expose the smart placement modes

2008-12-16  Christopher Bratusek <nano-master@gmx.de>

	* lisp/sawfish/wm/placement/stagger.jl
	* lisp/sawfish/wm/placement/off-center.jl
	* lisp/sawfish/wm/autoload.jl: Re-expose the Stagger and Off-Center Placement Modes in Sawfish-ui [Andrea Vettorello]

2008-11-28  Christopher Bratusek <nano-master@gmx.de>
	* themes/Makefile.in: Fix installation of mxflat [Michal Jagermann]

	* lisp/sawfish/wm/state/wm-spec.jl
	* lisp/sawfish/wm/state/transient.jl: Suppert _NET_WM_USER_TIME [Helmut Eller]

	* sawfish/lisp/sawfish/ui/layouts/keymaps.jl
	* sawfish/lisp/sawfish/ui/layout.jl
	* lisp/sawfish/ui/widgets/frame-style.jl: Added ATK-A11Y Support [Shobbit Marthur]

	* configure.in: bump librep req to 0.17, rep-gtk req to 0.18.3 and version to 1.3.5

2008-11-20  Christopher Bratusek <nano-master@gmx.de>
	* lisp/sawfish/wm/autoload.jl: load all keybindings

	* lisp/sawfish/wm/viewport.jl: forgot one hunk of the viewport scroll feature

	* lisp/sawfish/wm/viewport.jl: added viewport boundary

	* lisp/sawfish/wm/ext/error-handler.jl: added error-handler "both"

2008-11-19  Christopher Bratusek <nano-master@gmx.de>
	* man/sawmill.texi: Updated Documentation [Derek Upham]

	* */*: remove ^L [Teika Kazura]

	* MAINTAINERS: updated

	* theme/Crux/theme.jl: Added two new button layouts:
	Complete and Complete-Inverse

2008-11-18  Christopher Bratusek <nano-master@gmx.de>
	* config.sub
	* config.guess: updated both files

	* src/windows.c: another small clean-up

	* lisp/sawfish/wm/windows.jl
	* lisp/sawfish/wm/commands/move-resize.jl: Honour ICCCM Aspect Ratio [Andrea Vetorello]

	* lisp/sawfish/wm/viewport.jl: Added Animated Viewport Scrolling [Fernando Carmona Varo]

2008-11-03  Christopher Bratusek <nano-master@gmx.de>
	* configure.in: minimum pango version is 1.8.0

2008-08-29  Janek Kozicki <cosurgi@gmail.com>
	* lisp/sawfish/wm/commands/grow-pack.jl
	* lisp/sawfish/wm/stacking.jl
	* lisp/sawfish/wm/util/rects.jl: Add stacking visibility patch by Timo
	Korvola. This fixes raise-lower window problems with xcomposite
	extension.

	* lisp/sawfish/wm/state/maximize.jl: Add maximize fullscreen xinerama
	patch by Jonathan Sambrook (Uploaded by Christopher Bratusek)

2008-08-07  Christopher Bratusek <nano-master@gmx.de>
	* themes/Makefile.in: install Elberg-tabbed

2008-08-07  Scott Scriven <sawfish@toykeeper.net>
	* themes/Elberg-tabbed/: added Elberg-tabbed theme

2008-08-06  Guillermo S. Romero <gsromero@svn.gnome.org>
	* lisp/sawfish/wm/commands/x-cycle.jl
	* man/sawmill.texi: added after-cycle-step-hook and related docs,
	originally by Teika kazura. Changed some white space in the
	process.

2008-08-05  Timo Korvola <tkorvola@svn.gnome.org>
	* src/windows.c, man/sawmill.texi: Call property
	handlers in window-remprop. Make window-plist return
	the list itself not a copy

2008-08-05  Christopher Bratusek <nano-master@gmx.de>
	* themes/Makefile.in: actually install get-S-tabbed

	* themes/mxflat
	* themes/Makefile.in: add the mxflat theme

2008-08-05  Scott Scriven <sawfish@toykeeper.net>
	* themes/get-S-tabbed/: added get-S-tabbed theme

2008-08-05  Christopher Bratusek <nano-master@gmx.de>
	* configure.in
	* po/POTFILES.in
	* capplet/*
	* Makefile.in
	* sawfish.spec.in: removed the capplet

2008-08-04  Guillermo S. Romero <gsromero@svn.gnome.org>
	* lisp/sawfish/wm/menus.jl: added some missing accelerators in
	window-ops-menu as well as Move and Resize entries, issue reported
	by Fernando Carmona Varo. Also removed tabs in the affected
	defvar.

2008-08-04  Timo Korvola <tkorvola@svn.gnome.org>
	* src/windows.c, src/sawmill_subrs.h, man/sawmill.texi: Rename
	window-prop-del to window-remprop.

2008-08-04  Christopher Bratusek <nano-master@gmx.de>
	* Makefile.in
	* sawfish.spec.in: Sawfish.desktop is now sawfish.desktop

	* po/sawfish.pot
	* po/*.po: updated the pot file and all po files
		- removed deprecated strings
		- removed executable bits from po files

2008-08-04  Janek Kozicki <cosurgi@gmail.com>
	* mark all subdir */Changelog as deprecated

	* lisp/sawfish/wm/focus.jl: add Enter-Click Focus Mode by
	Dagfinn I. Mannsåke (Original Author), Christopher Bratusek
	and Timo Korvola (Simplyfied Code)

	* themes/Crux/theme.jl: Refresh icons patch by Timo Korvola

	* Sawfish.desktop: Update desktop file (again) by Christopher Bratusek

	* configure.in: Bump version requirements: pango 1.16, gtk 2.6, gdk 2.6
	Christopher Bratusek.

	*  src/keys.c, src/frames.c, src/windows.c, src/sawmill_subrs.h,
	man/sawmill.texi: Added Negative-property-p by Teika Kazura
	NOTE: we also need window-setplist

	* src/windows.c, src/sawmill_subrs.h, man/sawmill.texi: Add Window
	prop list & prop del by Teika Kazura.

	* lisp/sawfish/wm/frames.jl: Decorations toolbar windows by Andrea
	Vettorello. This was actually applied in revision 4229.

	* Major C part clean up by Christopher Bratusek

	* Remove .cvsignore files by Christopher Bratusek

	* lisp/sawfish/wm/viewport.jl: Keep Focus on move-window-direction by
	Mark Schreiber.

	* Sawfish.desktop: renamed to sawfish.desktop

2008-07-29  Christopher Bratusek <nano-master@gmx.de>
	* po/make-pot: make this script work again

	* po/POTFILES.in: added. needed by the new make-pot

	* sawfish.spec.in: spec file did use deprecated keywords,
		this patch by Ian Dall fix that.

	* lisp/sawfish/wm/commands/help.jl: the "xterm" command for
		viewing the info file is still hardcoded, instead
		use the user-defined "xterm" command - patch by
		Dagfinn I. Mannsåker.

	* src/Makefile.in: Fix build with -j2 or higher - patch
		by Harald van Dijk

2008-07-28  Christopher Bratusek <nano-master@gmx.de>
	* themer/ : remove the themer from trunk and move
		it to the sawfish-themer branch. The reason
		for doing so, is that rep-glade is not yet
		ported to glade2, therefore the themer does
		not work.

	* configure.in
	* Makefile.in
	* TODO
	* OPTIONS: remove references to the themer

2008-02-18  Janek Kozicki <cosurgi@gmail.com>
	* configure.in: version 1.3.3

	* "Utf 8 names fix" by Timo Korvola: window titles with UTF-8 working
	and no openoffice crashes

	* "Pango draw() ignores font" by Yuuki Harano and Rodrigo Gallardo:
	allows using pango fonts correctly.

	* "Titlebar updates" by Harald van Dijk and Timo Korvola: don't forget
	to tell the running theme that window title length has changed.

	* "KDE tray fix 2" by Timo Korvola: KDE is not always using
	freedesktop.org protocol so we need to adjust a few glitches.

2008-01-20  Janek Kozicki <cosurgi@gmail.com>
	* configure.in: version 1.3.2

	* documentation from Derek Upham v0.12

	* Updated Occitan translation (Yannig Marchegay)

	* patch by Luis Rodrigo Gallardo Cruz taken upstream from debian:
	http://sawfish.wikia.com/wiki/Noprop_desktop_save
	Sawfish saves the size of the desktop window, and although nautilus
	requests the widget to be the same size as your screen it's forced to
	the size that sawfish saved.

	* patch by Rodrigo Gallardo: http://sawfish.wikia.com/wiki/Update_desktop_file
	The current Sawfish.desktop file did not comply with the
	freedesktop.org standard.

	* patch by GSR: http://sawfish.wikia.com/wiki/Fix_select_workspace
	fix-select-workspace, Fixes select-workspace in
	lisp/sawfish/wm/workspace.jl to make sure it uses key params in its
	call to select-workspace*

	* patch by Thadeu Lima de Souza Cascardo:
	http://sawfish.wikia.com/wiki/Fix_Xlib_client_message
	sawfish had problems with 64 bit client messages.

	* patch by Sven Schoenung: http://sawfish.wikia.com/wiki/Blank_lines_in_prompt
	The window opened by the prompt function shows two blank lines before
	the prompt even when they aren't needed.

	* patch by Timo Korvola: http://sawfish.wikia.com/wiki/Reparenting_cleanup
	This fixes reparenting fights that occur between Sawfish and the KDE
	system tray. Both try to reparent system tray icons as they are
	mapped, leading to a lot of flicker and an unpredictable end result.

	* patch by Rodrigo Gallardo: http://sawfish.wikia.com/wiki/Net_wm_properties
	strings are re-encoded in UTF8
	window titles will be set correctly regardless of title encoding
	(useful when browsing foreign pages).

	* patch by Timo Korvola: http://sawfish.wikia.com/wiki/KDE_system_tray_fix
	With this it will ignore out of bounds _NET_CURRENT_DESKTOP requests silently.
	KDE system tray apps have a nasty habit of sending
	_NET_CURRENT_DESKTOP client messages with a parameter of -1, which
	confuses Sawfish. This patch adds some bounds checking.

	* patch by Harald van Dijk: http://sawfish.wikia.com/wiki/KDE_menus_focus
	QT applications were losing focus when menu was active.

	* patch by Fuchur and Andrea Vettorello:
	http://sawfish.wikia.com/wiki/Multihead_placed_patch
	fixes bad placement on xinerama/dualhead. Previous all windows always
	appeared on first monitor, when using centered/centered-on-parent

2007-07-27  Janek Kozicki <cosurgi@gmail.com>
	* configure.in: version 1.3.1 - This version is to let people know
	that Sawfish is being revived by the community, and we are awaiting
	patches to be submitted for incoming 1.3.2 release
	* added tool for automatic screenshot generation for huge number of
	themes (Scott Scriven)
	* fixed typo in man/sawmill.texi (Philippe-Pierre)
	* updated man/faq.texi about not working theme generator GimpMill
	(Andrea Vettorello)
	* fixed possible buffer overflow in src/fonts.c (Yoshiaki Kasahara)

2007-07-16  Janek Kozicki <cosurgi@gmail.com>
	* docs from Derek Upham v0.11 : http://home.avvanta.com/~sand/sawfish/
	* update information in README about John's resignation from
	maintainership
	* update FAQ from: http://sawfish.wikia.com/wiki/FAQ

2006-01-26  Daniel Nylander <po@danielnylander.se>

        * po/sv.po: Updated Swedish translation

2005-06-26  Philip Langdale <philipl@mail.utexas.edu>

	* configure.in
	* config.h.in
	* Makedefs.in: Add detection for Xrandr extension.

2005-04-01  Steve Murphy  <murf@e-tools.com>

        * configure.in: Added "rw" to ALL_LINGUAS.

2005-01-17	Amanpreet Alam <amanpreetalam@yahoo.com>

	* po/pa.po is added for Punjabi Lanaguage

2004-04-05  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* ChangeLog: converted to UTF-8

2003-08-16  John Harper  <jsh@unfactored.org>

	* configure.in: generate sawfish.gtk.widgets.font from
	font.jl.in, define have_pango_xft in the substitutions

2003-08-14  John Harper  <jsh@unfactored.org>

	* configure.in, config.h.in, Makedefs.in: check for pango libs
	and flags (optional dependency)

2003-04-02  John Harper  <jsh@unfactored.org>

	* Makefile.in: install Sawfish.desktop unconditionally

2003-03-25  John Harper  <jsh@unfactored.org>

	* configure.in, man/news.texi: version 1.3

2003-03-01  John Harper  <jsh@unfactored.org>

	* Sawfish.desktop: moved ConfigExec field to main section.
	Patch from Christian Krause <chkr@plauener.de>

2003-01-12  John Harper  <jsh@unfactored.org>

	* merged all differences between gnome-2 and HEAD branches back
	onto HEAD. All future development will be on HEAD for gtk2 only

	* configure.in: capplet defaults to off

2002-11-10  Ole Laursen  <olau@hardworking.dk>

	* po/da.po: Updated Danish translation.

2002-11-09  John Harper  <jsh@unfactored.org>

	* configure.in: version 1.2

2002-11-08  John Harper  <jsh@unfactored.org>

	* configure.in, Makedefs.in: use pkg-config to look for xft.pc
	before searching by hand. This is because Xft2 (which has the
	xft.pc may not be recognized by the hand-crafted tests)

2002-11-03  John Harper  <jsh@unfactored.org>

	* po/sawfish.pot: rebuilt

2002-11-02  John Harper  <jsh@unfactored.org>

	* configure.in: disabled --enable-gnome-widgets by default, it
	probably doesn't work anyway. Also be smarter when testing for
	rep-gtk plugins

	* configure.in, config.h.in, Makedefs.in: check for Xft
	libraries and headers (merged from HEAD)

2002-09-26  Stanislav Brabec  <sbrabec@suse.cz>

	* po/cs.po: Updated Czech translation from Miloslav Trmac
	<mitr@volny.cz>.

2002-06-28  John Harper  <jsh@unfactored.org>

	* configure.in: version 1.1

	The "version 2.0" below was a mistake

	* sawfish.spec.in: updated (untested)

2002-06-21  Federico Mena Quintero  <federico@ximian.com>

	Released version 2.0.

	* configure.in: Bumped version number to 2.0.

2002-06-21  Changwoo Ryu  <cwryu@debian.org>

	* po/ko.po: Updated Korean translation from Michelle Kim
	<mkim@brisbane.redhat.com>.

2002-06-02  Carlos Perelló Marín <carlos@gnome-db.org>

	* po/es.po: Recoded as UTF-8

2002-06-01  Tõivo Leedjärv  <toivo@linux.ee>

	* po/et.po: Updated Estonian translation.

2002-06-01  Kjartan Maraas  <kmaraas@gnome.org>

	* po/no.po: Updated Norwegian (bokmål) translation.
	* po/sawfish.pot: Updated.

2002-05-17  Abel Cheung  <maddog@linux.org.hk>

	* po/zh_TW.po: Converted to UTF-8.

2002-05-11  Ole Laursen  <olau@hardworking.dk>

	* po/da.po: Updated Danish translation and converted it to UTF-8.

2002-05-07  Duarte Loreto <happyguy_pt@hotmail.com>

	* po/pt.po: Updated Portuguese translation and converted to UTF-8.

2002-05-01  Christian Rose  <menthos@menthos.com>

	* po/sv.po: Updated Swedish translation.

2002-04-30  Kjartan Maraas  <kmaraas@gnome.org>

	* po/no.po: Updated Norwegian (bokmål) translation.

2002-04-26  Tõivo Leedjärv  <toivo@linux.ee>

	* po/et.po: Updated Estonian translation.

2002-04-21  John Harper  <jsh@unfactored.org>

	* Merged changes from HEAD:

	2002-04-21  John Harper  <jsh@unfactored.org>

	* configure.in, Makedefs.in: don't AC_SUBST(LIBOBJS), doesn't
	work on autoconf 2.53

	2002-04-13  John Harper  <jsh@unfactored.org>

	* man/Makefile.in: use --info-dir option to install-info, works
	with install-info on debian systems. Patch from Kai Großjohann
	<Kai.Grossjohann@CS.Uni-Dortmund.DE>

	2002-03-28  John Harper  <jsh@unfactored.org>

	* themes/Crux/theme.jl (make-button): added removable property
	to buttons

2002-03-19  John Harper  <jsh@unfactored.org>

	* Merged changes from HEAD:

	2002-03-17  Tõivo Leedjärv  <toivo@linux.ee>

	* po/et.po: Updated Estonian translation.

	2002-03-17  Tõivo Leedjärv  <toivo@linux.ee>

	* po/et.po: Added Estonian translation from gnome-2 branch.

	2002-03-15  Valek Filippov  <frob@df.ru>

	* ru.po: updated russian translation.

	2002-02-28  Hasbullah Bin Pit <sebol@ikhlas.com>

	* po/ms.po: Added Malay Translation from gnome-2 branch

	2002-02-20  John Harper  <jsh@unfactored.org>

	* configure.in: don't ever compile our own dlmalloc, it breaks
	on too many platforms

	2002-02-01  Kjartan Maraas  <kmaraas@gnome.org>

	* po/no.po: Updated Norwegian (bokmål) translation.

	2002-01-31  Simos Xenitellis  <simos@hellug.gr>

	* po/el.po: Updated Greek translation.

	2002-01-23  Peteris Krisjanis <peteris.krisjanis@ttc.lv>

	* po/lv.po: Updated Latvian translation.

	2002-01-15  Wang Jian  <lark@linux.net.cn>

	* po/zh_CN.po: Updated Simplified Chinese translation by
	Wang Li <charlesw1234@163.com>.

2002-03-17  Tõivo Leedjärv  <toivo@linux.ee>

	* po/et.po: Updated Estonian translation.

2002-03-03  John Harper  <jsh@pixelslut.com>

	* po/sawfish.pot: updated

2002-03-02  JeyaSudha <jeyasudha.duraipandy@wipro.com>

	* configure.in: No need for checking the cflags and libs for
	gnome capplets as sawfish-ui is used instead of sawfish-capplet

2002-03-02  John Harper  <jsh@pixelslut.com>

	* configure.in: readded the --with-gnome-prefix option that
	someone had removed

2002-02-28  Tõivo Leedjärv  <leedjarv@interest.ee>

	* po/et.po: Added Estonian translation.

2002-02-26  Hasbullah Bin Pit <sebol@ikhlas.com>

	* po/ms.po: Added Malay Translation.

2002-02-12  John Harper  <jsh@unfactored.org>

	* po/sawfish.pot: committed an updated version

	* configure.in: don't use AM_PATH_IMLIB to detect Imlib, do it
	by hand (but no version check, which shouldn't be too
	important). Also added a (bogus?) fix for the capplet

	Status of port: sawfish-ui mostly works (in non-tree mode).
	Some problems with appearance pop-down list?

2002-02-12  Kjartan Maraas  <kmaraas@gnome.org>

	* po/no.po: Updated Norwegian (bokmål) translation.

2002-02-03  Kjartan Maraas  <kmaraas@gnome.org>

	* po/no.po: Updated Norwegian (bokmål) translation.

2002-02-01  Kjartan Maraas  <kmaraas@gnome.org>

	* po/no.po: Updated Norwegian (bokmål) translation.

2002-01-29  John Harper  <jsh@unfactored.org>

	* configure.in: Fix imlib mess. Add -gnome2-n prefix to the
	version string. Check for the gnome2 rep-gtk

2002-01-27  Kjartan Maraas  <kmaraas@gnome.org>

	* po/no.po: Updated this a bit.

2002-01-27  Christian Rose  <menthos@menthos.com>

	* po/sv.po: Converted to UTF-8.

2002-01-10  Sander Vesik <sander.vesik@sun.com>

	* configure.in: move from using gnome-config to pkg-config

2002-01-04  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* configure.in: Added "eu" to ALL_LINGUAS

2001-12-17  Germán Poo-Caamaño  <gpoo@ubiobio.cl>

	* po/es.po: Updates spanish translation from Eneko Lacunza
		<enlar@iname.com>

2001-12-02  John Harper  <jsh@unfactored.org>

	* configure.in: fix /bin/sh bogosity

2001-11-27  Alexander Shopov <al_shopov@web.bg>

	* po/bg.po: Added initial Bulgarian tranlsation by Borislav
	Alexandrov

2001-11-24  Peteris Krisjanis <pecisk@inbox.lv>

	* po/lv.po: Added latvian translation.

2001-11-17  Roy-Magne Mo  <rmo@sunnmore.net>

	* po/nn.po: Added initial Norwegian (nynorsk) translation.

2001-11-15  Karl Eichwalder  <ke@suse.de>

	* po/de.po: Update.  Merge in proposals by Benjamin Greiner.

2001-11-14  Carlos Perelló Marín <carlos@gnome-db.org>

	* po/es.po: Updated Spanish translation by Eneko
	Lacunza <enlar@iname.com>

2001-11-03  Carlos Perelló Marín <carlos@gnome-db.org>

	* po/pt.po: Updated by Duarte Loreto <happyguy_pt@hotmail.com>

2001-10-27  Sami Pesonen  <spesonen@dlc.fi>

	* po/fi.po: Updated Finnish translation by
	Antti Ahvensalmi  <aahven@mbnet.fi>.

2001-10-14  John Harper  <jsh@unfactored.org>

	* configure.in: version 1.0.1

	* configure.in: disabled dlmalloc on sparc platforms. Brian
	Nitz <Brian.Nitz@Sun.COM> reports that this is necessary to
	stop sawfish crashing in certain circumstances

2001-10-07  Carlos Perelló Marín <carlos@gnome-db.org>

	* po/pt.po: Renamed from po/pt_PT.po.

2001-09-24  John Harper  <jsh@unfactored.org>

	* po/it.po: update from Michele Campeotto <micampe@f2s.com>

2001-09-17  Zbigniew Chyla  <cyba@gnome.pl>

	* po/pl.po: Updated Polish translation.

2001-09-15  John Harper  <jsh@unfactored.org>

	* config.h.in: removed spurious close-comment from after
	`#undef HAVE_MEMORY_H'. From Ali Akcaagac
	<ali.akcaagac@stud.fh-wilhelmshaven.de>

2001-09-09  Wang Jian  <lark@linux.net.cn>

	* po/zh_CN.po: Renamed from po/zh_CN.GB2312.po.

2001-09-05  Abel Cheung  <maddog@linux.org.hk>

	* po/zh_TW.Big5.po: Rename to...
	* po/zh_TW.po: this, to prevent future encoding naming problem.

2001-09-03  Carlos Perelló Marín <carlos@gnome-db.org>

	* po/es.po: Updated Spanish translation by Eneko
	Lacunza <enlar@iname.com>

2001-09-02  Fatih Demir <kabalak@gtranslator.org>

	* po/tr.po: Committed updated Turkish translation by
		Ömer.

2001-09-02  Christian Rose  <menthos@menthos.com>

	* po/sv.po: Corrected Swedish translation. Thanks to
	Göran Uddeborg <goeran@uddeborg.pp.se>.

2001-09-01  Christian Rose  <menthos@menthos.com>

	* po/sv.po: Updated Swedish translation.

2001-08-27  Ole Laursen  <olau@hardworking.dk>

	* po/da.po: Fixed a few strings in Danish translation.

2001-08-27  Abel Cheung  <maddog@linux.org.hk>

	* po/zh_TW.Big5.po: Updated traditional Chinese translation, and
	  intentionally disabled some translations to make both
	  newer/older gettext work.

2001-08-21  John Harper  <jsh@pixelslut.com>

	* po/it.po: update from Michele Campeotto <micampe@f2s.com>

2001-08-19  Jesus Bravo Alvarez  <jba@pobox.com>

	* po/gl.po: Updated Galician translation.

2001-08-15  Abel Cheung  <maddog@linux.org.hk>

	* po/zh_TW.Big5.po: Updated traditional Chinese translation.

2001-07-28  Abel Cheung  <maddog@linux.org.hk>

	* po/zh_TW.Big5.po: msgmerge'd with sawfish.pot, marked all
	  questionable strings with fuzzy, so that both newer and older
	  gettext works.

2001-07-12  Ole Laursen  <olau@hardworking.dk>

	* capplet/desktop-entries/appearance-properties.desktop,
	capplet/desktop-entries/move-properties.desktop, po/da.po: Fixed a
	few things in Danish translation.

2001-07-09  John Harper  <jsh@pixelslut.com>

	* configure.in: version 1.0

	* po/fr.po: update from Christian Marillat

2001-07-02  John Harper  <jsh@pixelslut.com>

	* configure.in: version 0.99

	* THANKS, README, HACKING, BUGS, AUTHORS: updated

	* po/ja.po: update from Sato Satoru

2001-06-22  Kjartan Maraas  <kmaraas@gnome.org>

	* no.po: Updated Norwegian translation.

2001-06-20  John Harper  <jsh@pixelslut.com>

	* Makefile.in: fixed SUBDIRS commands to exit if an error
	occurs

2001-06-04  John Harper  <jsh@pixelslut.com>

	* po/sawfish.pot: updated

	* configure.in, sawfish.spec.in: require librep 0.14 (for the
	compiler fix)

2001-05-23  John Harper  <jsh@pixelslut.com>

	* po/zh_TW.Big5.po: reverted to revsion 1.1, `pablo's commit
	breaks on my version of gettext (Red Hat 7.1)

2001-05-22  Kjartan Maraas  <kmaraas@gnome.org>

	* po/no.po: Updated Norwegian translation.

2001-05-21  Carlos Perelló Marín <carlos@gnome-db.org>

	* po/es.po: Merged with sawfish.pot file

2001-05-20  Antti Ahvensalmi  <aahven@mbnet.fi>

	* po/fi.po: Updated Finnish translation.

2001-03-05  Stanislav Brabec  <utx@penguin.cz>

	* po/cs.po: Updated translation from Jiri Cerny
	<cerny@masg1.epfl.ch>.

2001-05-12  John Harper  <jsh@pixelslut.com>

	* po/fr.po: update from Christian Marillat

2001-05-06  Matthias Warkus  <mawarkus@gnome.org>

	* po/de.po: Conflicts detected. Commit.

2001-05-03  Matthias Warkus  <mawarkus@gnome.org>

	* po/de.po: Updated.

2001-05-01  John Harper  <jsh@eazel.com>

	* themes/Crux/theme.jl: don't include close buttons on
	transient windows, since it may lead to confusion (ideally,
	we'd only remove close buttons from dialogs with more than one
	choice, but the wm can't determine that)

	Also, moved all button theme definitions into the special
	variable Crux:button-themes, then the button-theme function
	just dereferences this

2001-04-25  Ole Laursen  <olau@hardworking.dk>

	* po/da.po: Updated Danish translation.

	* po/update.sh: Added a convenient script for updating .po files.

2001-04-22  John Harper  <jsh@eazel.com>

	* configure.in: s/X11_CFLAGS/X_CFLAGS/

2001-04-21  John Harper  <jsh@eazel.com>

	* configure.in: temporarily set CPPFLAGS to include X11_CFLAGS
	while looking for X header files

2001-04-20  John Harper  <jsh@eazel.com>

	Adapted from a patch by Vlad Harchev <hvv@hippo.ru>:

	* po/sawfish-xgettext: extract beautified keymap names.
	Consider i18n-defvar and i18n-define forms on a variable by
	variable basis. Also add beautified command names

	* po/sawfish.pot: updated

2001-04-05  Ole Laursen  <olau@hardworking.dk>

	* po/da.po: Updated Danish translation.

2001-04-05  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* po/pl.po: Corrected charset header
	* po/pt_BR.po: changed DOS end of lines to Unix ones

2001-03-06  Stanislav Visnovsky  <visnovsky@nenya.ms.mff.cuni.cz>

	* po/sk.po: Updated Slovak translation

2001-03-05  Stanislav Brabec  <utx@penguin.cz>

	* po/cs.po: Added Czech translation from Jiri Cerny
	<jiri.cerny@epfl.ch>.

2001-03-03  Antti Ahvensalmi  <aahven@mbnet.fi>

	* po/fi.po: Updated Finnish translation.

2001-02-28  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* po/az.po: Added Azeri file
	* po/{fi,it,pl,ro,sl}.po: corrected/enabled header

2001-03-05  Stanislav Brabec  <utx@penguin.cz>

	* po/cs.po: Update from Jiri Cerny <jiri.cerny@epfl.ch>.

2001-03-27  Ole Laursen  <olau@hardworking.dk>

	* po/da.po: Minor fixes in Danish translation.

2001-03-27  Matthias Warkus  <mawarkus@gnome.org>

	* po/de.po: Huge update.

2001-03-24  Matthias Warkus  <mawarkus@gnome.org>

	* po/de.po: Commit this to be sure.

2001-03-22  Fatih Demir <kabalak@gtranslator.org>

	* po/tr.po: Committed updated Turkish translation
		by Özgür.

2001-03-19  John Harper  <jsh@eazel.com>

	* configure.in: patch from albert chin
	(china@thewrittenword.com):

	1. No need to AC_MSG_CHECKING if the user has disabled the
	feature

	2. /usr/ccs/lib/cpp is a more portable location for cpp under
	Solaris

	3. Run some *-config scripts in a sub-process so we can handle
	the case where the command is not found (else the shell outputs
	<blah> command not found).

2001-03-14  John Harper  <jsh@eazel.com>

	* configure.in: version 0.38

2000-03-14  Jesus Bravo Alvarez  <jba@pobox.com>

	* po/gl.po: Updated Galician translation.

2001-03-13  Martin Norbäck  <d95mback@dtek.chalmers.se>

	* po/sv.po: Made a big overhaul, and updated Swedish translation.

2001-03-11  Matthias Warkus  <mawarkus@gnome.org>

	* po/de.po: Patched in diff from Christian Meyer.

2001-03-11  Timur Bakeyev  <mc@bat.ru>

	* capplet/desktop-entries/*.desktop:  added Russian translations
	from Vlad Harchev <hvv@hippo.ru>

2001-03-11  Carlos Perelló Marín <carlos@gnome-db.org>

	* po/es.po: Updated Spanish translation by Joseba García
	  Etxebarria <josebagar@euskalnet.net>

2000-03-11  Christian Meyer  <chrisime@gnome.org>

	* po/de.po: Cleaned up the file a little bit.

2000-03-08  Jesus Bravo Alvarez  <jba@pobox.com>

	* po/gl.po: Updated Galician translation.
	* themes/Crux/README.gl: Added Galician description file.

2001-03-06  John Harper  <jsh@eazel.com>

	* po/ChangeLog: removed (po ChangeLog entries should go in the
	top-level ChangeLog)

2001-03-03  John Harper  <jsh@eazel.com>

	* po/pl.po: update from Daniel Koć <kocio@bigfoot.com>
	* po/ru.po: update from Vlad Harchev <hvv@hippo.ru>

2001-03-03  Antti Ahvensalmi  <aahven@mbnet.fi>

	* po/fi.po: Updated Finnish translation.

2001-03-02  Stanislav Visnovsky  <visnovsky@nenya.ms.mff.cuni.cz>

	* po/sawfish.pot:
	* po/sk.po:

2001-02-28  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* po/az.po: Added Azeri file
	* po/{fi,it,pl,ro,sl}.po: corrected/enabled header

2001-03-05  Stanislav Brabec  <utx@penguin.cz>

	* Sawfish.desktop: Added Czech translation from Jiri Cerny
	<jiri.cerny@epfl.ch>.

2001-02-28  John Harper  <jsh@eazel.com>

	* themes/Crux/theme.jl (Crux:button-theme): default theme is
	now `default'

	* themes/Crux/theme.jl (button-theme): new button theme
	`default'. Like `platinum' but show an iconify button on the
	right in nomal windows

2001-02-27  Kjartan Maraas  <kmaraas@gnome.org>

	* po/no.po: Updated Norwegian (bokmål) translation.

2001-02-25  Simos Xenitellis  <simos@hellug.gr>

	* po/el.po: Updated Greek translation.

2001-02-24  John Harper  <jsh@eazel.com>

	* po/it.po: update from Michele Campeotto <micampe@f2s.com>

	* po/fr.po: update from Christian Marillat
	<marillat.christian@wanadoo.fr>

	* po/sawfish-xgettext (helper): extract choices from `:options'
	and `:type (choice ..)' fields. Patch from Vlad Harchev
	<hvv@hippo.ru>

2001-02-23  Marius Andreiana  <mandreiana@yahoo.com>

	* po/ro.po: Updated

2001-02-21  Fatih Demir	<kabalak@gtranslator.org>

	* po/ko.po: Committed updated Korean translation.

2001-02-19  John Harper  <jsh@eazel.com>

	* configure.in: version 0.37.3

	* po/ru.po: Updated Russian translation from Vlad Harchev
	<hvv@hippo.ru>

2001-02-18  Simos Xenitellis  <simos@hellug.gr>

	* po/el.po: Updated Greek translation.

2001-02-14  John Harper  <jsh@eazel.com>

	* configure.in: version 0.37.2

	* configure.in: version 0.37.1

2001-02-13  John Harper  <jsh@eazel.com>

	* configure.in: version 0.37

	* themes/Crux/theme.jl (button-theme): in `Mac OS Platinum'
	mode, only show close button on transients

2001-02-12  John Harper  <jsh@eazel.com>

	* po/sawfish.pot: committed the translation template (requested
	by kmaraas), will try to periodically update this
	auto-generated file..

2001-02-09  John Harper  <jsh@eazel.com>

	* themes/mono/theme.jl: rewritten in `define' form. The
	mono:active-color is now optional and defaults to the GTK
	selection color

2001-02-10  John Harper  <jsh@eazel.com>

	* po/ja.po: updated Japansese translations from Sato Satoru

2001-02-09  Stanislav Visnovsky  <visnovsky@nenya.ms.mff.cuni.cz>

	* po/sk.po: Updated Slovak translation.

2001-02-07  John Harper  <jsh@eazel.com>

	* po/es.po: updated Spanish translation from Iñaki García
	Etxebarria <garetxe@euskalnet.net>

2001-02-07  Szabolcs Ban  <shooby@gnome.hu>

	* po/hu.po: Updated Hungarian translation by Robert Vanyi

2001-02-07  Fatih Demir	<kabalak@gmx.net>

	* po/tr.po: Updated Turkish translation ci'd.

2001-01-29  John Harper  <jsh@eazel.com>

	* themes/Crux/theme.jl: was rebuilding _all_ windows when the
	WM_NAME of one window changed. Fixed this inefficiency

2001-02-03  Marius Andreiana  <mandreiana@yahoo.com>

	* po/ro.po: Added Romanian translation (thanks to Tutu Valentin)

2001-01-30  Kjartan Maraas  <kmaraas@gnome.org>

	* po/no.po: Updated Norwegian translation.

2001-01-27  John Harper  <jsh@eazel.com>

	* po/it.po: updated Italian translation from Michele Campeotto
	<micampe@f2s.com>

	* themes/Crux/theme.jl,
	themes/Crux/inactive:menu-button-pressed.png,
	themes/Crux/inactive:menu-button-hilight.png,
	themes/Crux/inactive:button-pressed.png,
	themes/Crux/inactive:button-hilight.png: buttons on inactive
	frames now prelight like active frames

	* po/pl.po: updated Polish translation from Daniel Koc
	<kocio@bigfoot.com>

2001-01-25  John Harper  <jsh@eazel.com>

	* themes/Crux/theme.jl: s/MacOS/Mac OS/

2001-01-20  John Harper  <jsh@eazel.com>

	* configure.in: version 0.36

2001-01-19  John Harper  <jsh@eazel.com>

	* themes/Makefile.in:
	* themes/Crux/theme.jl,	themes/Crux/*.png, themes/Crux/README:

	New theme `Crux' - designed by Arlo, implemented by me. The new
	default theme. Recolors itself to match the GTK+ theme, has
	various customizable options

2001-01-17  John Harper  <jsh@eazel.com>

	* sawfish.spec.in: unset LC_ALL, LINGUAS and LANG before
	building

2001-01-11  John Harper  <jsh@eazel.com>

	* themes/gtk/theme.jl: rewrote to use define instead of let*
	for creating bindings

	* po/it.po, po/fr.po: updated translations from Michele
	Campeotto <micampe@f2s.com> and Christian Marillat
	<marillat.christian@wanadoo.fr> respectively

2001-01-05  John Harper  <jsh@eazel.com>

	* configure.in: version 0.35

2000-12-20  John Harper  <jsh@eazel.com>

	* po/sawfish-xgettext (helper): corrected off-by-one error when
	grabbing real name from defgroup forms

	* po/it.po: update from Michele Campeotto <micampe@f2s.com>

2000-12-18  John Harper  <jsh@eazel.com>

	* po/zh_TW.Big5.po: new file, ``po file for the zh_TW locale in
	big5 encoding'', from Chun-Chung Chen <cjj@u.washington.edu>

	* po/ja.po: update from SATO Satoru <ssato@redhat.com>

2000-12-14  John Harper  <jsh@eazel.com>

	* configure.in, config.h.in: added check for endianness. Define
	WORDS_BIGENDIAN if appropriate. Fixes #4244

2000-12-12  John Harper  <jsh@eazel.com>

	* HACKING, BUGS, man/faq.texi: changed mailing list address to
	sawfish@lists.eazel.com

2000-12-10  John Harper  <jsh@eazel.com>

	* po/pl.po: update from Daniel Koc <kocio@bigfoot.com>

2000-12-06  John Harper  <jsh@eazel.com>

	* po/sk.po: added Slovak translation from Stanislav Visnovsky
	<visnovsky@nenya.ms.mff.cuni.cz>

2000-12-04  John Harper  <jsh@eazel.com>

	* configure.in: version 0.34

	* themes/absolute-e/README.it, themes/brushed-metal/README.it,
	themes/gradient/README.it, themes/gtk/README.it,
	themes/microGUI/README.it, themes/mono/README.it,
	themes/simple/README.it, themes/smaker/README.it: new files,
	from Michele Campeotto <micampe@interpuntonet.it>

	* po/it.po: update from Michele Campeotto
	<micampe@interpuntonet.it>

2000-11-16  John Harper  <jsh@eazel.com>

	* po/fr.po: update from Christian Marillat
	<marillat.christian@wanadoo.fr>

	* build-info, Makefile.in: added a cpp macro SAWFISH_LOCALEDIR

	* configure.in: ${localedir} is now ${datadir}/locale (e.g.
	`/usr/share/locale' instead of `/usr/share/sawfish/0.n/locale)

2000-11-16  Richard Hult  <rhult@codefactory.se>

	* po/sv.po: Updated Swedish translation.

2000-11-15  John Harper  <jsh@eazel.com>

	* po/sawfish-xgettext (helper): ensure that `:type*' keys get
	scanned for `_' calls

2000-11-13  John Harper  <jsh@eazel.com>

	* configure.in: version 0.33.1

	* po/sawfish-xgettext: fixed memq error

2000-11-08  John Harper  <jsh@eazel.com>

	* configure.in: version 0.33

	* po/uk.po, po/pt_BR.po: updated from gnome-i18n/extra-po
	directory

2000-11-01  John Harper  <jsh@eazel.com>

	* po/de.po: update from Matthias Warkus <mawarkus@t-online.de>

2000-10-30  John Harper  <jsh@eazel.com>

	* po/fi.po: update from Antti Ahvensalmi <aahven@mbnet.fi>

2000-10-26  John Harper  <jsh@eazel.com>

	* themes/microGUI/theme.jl: foreground color of title bars is
	now more visible

2000-10-19  John Harper  <jsh@eazel.com>

	* configure.in: version 0.32

	* po/uk.po, po/pt_BR.po, po/hu.po, po/de.po: sync'd from gnome
	cvs (uk: Yuri Syrota, pt_BR: Douglas Moura Ferreira, hu: Róbert
	Ványi, de: Christian Meyer)

2000-10-13  John Harper  <john@dcs.warwick.ac.uk>

	* po/ja.po: update from SATO Satoru <ssato@redhat.com>

2000-10-09  John Harper  <john@dcs.warwick.ac.uk>

	* Makefile.in: scan all lisp files for `::doc:' embedded doc
	strings, as well as C files

	* po/da.po: update from Keld Jørn Simonsen <keld@dkuug.dk>

	* themes/brushed-metal/theme.jl: fixed off-by-one error in
	right-hand position of title piece

2000-10-07  John Harper  <john@dcs.warwick.ac.uk>

	* po/es.po: update from Iñaki García Etxebarria

2000-09-29  John Harper  <john@dcs.warwick.ac.uk>

	* sawfish.spec.in: override infodir in `make install' command

2000-09-28  John Harper  <john@dcs.warwick.ac.uk>

	* po/uk.po, po/sv.po, po/pt_BR.po, po/no.po, po/de.po,
	po/da.po: updated from cvs.gnome.org (uk: Yuri Syrota, sv:
	Johan Dahlin, pt_BR: Rui Miguel Silva Seabra, no: Kjartan
	Maraas, de: Christian Meyer, da: Kenneth Christiansen)

2000-09-25  John Harper  <john@dcs.warwick.ac.uk>

	* po/fr.po: update from Christian Marillat
	<marillat.christian@wanadoo.fr>

	* po/sawfish-xgettext: grok how :tooltip's are embedded into
	doc strings of customization options

2000-09-20  John Harper  <john@dcs.warwick.ac.uk>

	* configure.in: version 0.31

2000-09-19  John Harper  <john@dcs.warwick.ac.uk>

	* build-info: use `$LOCALDOMAIN', then `dnsdomainname', before
	falling back to `domainname'

2000-09-14  John Harper  <john@dcs.warwick.ac.uk>

	* Sawfish.desktop: added Greek translations from Simos
	Xenitellis <root@pc96.ma.rhbnc.ac.uk>

2000-09-13  John Harper  <john@dcs.warwick.ac.uk>

	* configure.in: version 0.31pre2

2000-09-07  John Harper  <john@dcs.warwick.ac.uk>

	* configure.in, sawfish.spec.in: require rep-gtk 0.14

2000-09-04  John Harper  <john@dcs.warwick.ac.uk>

	* po/sawfish-xgettext (helper): include the name of the current
	module when looking for command doc strings; also grok #:doc
	and #:doc-key keywords in parameters

	* configure.in: version -> 0.31pre1

	* po/sl.po, po/ru.po, po/ga.po, po/es.po, po/el.po, po/de.po:
	updated from GNOME cvs

	* configure.in: revert to using Imlib by default -- current
	gdk-pixbuf xlib (0.9) library is slightly broken

	* configure.in: fixed gdk_pixbuf checks to avoid gnome-config
	brokenness

2000-09-02  John Harper  <john@dcs.warwick.ac.uk>

	* configure.in: new option --enable-gnome-widgets. This is
	usually inferred automatically, but it's useful to use
	--disable-gnome-widgets for testing the GTK+-only code

2000-09-01  John Harper  <john@dcs.warwick.ac.uk>

	* configure.in: build `scripts' subdirectory

	* configure.in: don't build `nokogiri' subdirectory, do
	`sawfish/ui' and `sawfish/gtk' instead

	* configure.in: check for gdk-pixbuf by default now, then fall
	back to checking for Imlib if that fails

2000-08-29    <john@dcs.warwick.ac.uk>

	* sawfish.spec.in: sawfish-themer requires exactly @version@ of
	sawfish package

2000-08-21  John Harper  <john@dcs.warwick.ac.uk>

	* po/zh_CN.GB2312.po: Chinese translation from zw@zhaoway.com

2000-08-20  John Harper  <john@dcs.warwick.ac.uk>

	* po/make-pot: use sawfish-xgettext to extract localized
	strings

	* po/sawfish-xgettext: new script, tailored to the specifics of
	sawfish Lisp code

2000-08-14  John Harper  <john@dcs.warwick.ac.uk>

	* themes/brushed-metal/theme.jl, themes/gradient/theme.jl,
	themes/gtk/theme.jl, themes/mono/theme.jl,
	themes/simple/theme.jl: applied patches from Daniel Lundell
	<danlu@home.se> to fix vertical movement when shading

	* po/es.po: update from Iñaki
	* po/tr.po: update from Fatih Demir

2000-08-03  John Harper  <john@dcs.warwick.ac.uk>

	* autogen.sh: added

2000-07-28  John Harper  <john@dcs.warwick.ac.uk>

	* po/pl.po: update from Daniel Koc

	* Makedefs.in: added REP_ENVIRON macro

2000-07-27  John Harper  <john@dcs.warwick.ac.uk>

	* sawfish.spec.in: in files section, include
	%{_libexecdir}/rep/%{_target_platform}/sawfish

	* configure.in: require rep 0.13, removed readline junk

2000-07-24  John Harper  <john@dcs.warwick.ac.uk>

	* configure.in: version 0.30.3

2000-07-20  Joaquim Fellmann <joaquim@hrnet.fr>

	* po/fr.po: Updated French translation with patch from
          Christian Marillat <marillat.christian@wanadoo.fr>

2000-07-23  John Harper  <john@dcs.warwick.ac.uk>

	* sawfish.spec.in: added texinfo to BuildPrereq field

2000-07-19  John Harper  <john@dcs.warwick.ac.uk>

	* po/fr.po, po/en_GB.po, po/de.po, po/da.po, po/ru.po,
	po/sl.po: updated from GNOME CVS (fr: Joaquim Fellmann, GB:
	Robert Brady, de: Kai Lahmann, da: Keld Simonsen, ru - Valek
	Filippov, sl - Andraz Tori)

	* po/no.po: update from Kjartan Maraas

	* po/gl.po: update from Jesus Bravo Alvarez

	* po/it.po: Italian translation from Michele Campeotto
	<micampe@interpuntonet.it>

2000-07-14  John Harper  <john@dcs.warwick.ac.uk>

	* configure.in: version 0.30.2

	* po/sl.po, po/no.po, po/nl.po, po/de.po: sync'ed from gnome
	cvs repository

2000-07-13  John Harper  <john@dcs.warwick.ac.uk>

	* configure.in: version 0.30.1

2000-07-12  John Harper  <john@dcs.warwick.ac.uk>

	* po/tr.po: update from Fatih Demir

2000-07-10  John Harper  <john@dcs.warwick.ac.uk>

	* po/ja.po: update from SATO Satoru

	* sawfish.spec.in: replaced `/usr/info' by `%{_infodir}'. Patch
	from MATSUURA Takanori <t-matsuu@protein.osaka-u.ac.jp>

2000-07-09  John Harper  <john@dcs.warwick.ac.uk>

	* configure.in: version 0.30

	* sawfish.spec.in: merged -gnome package into base, require
	rep-gtk 0.13

	* po/uk.po, po/ru.po: imported from cvs.gnome.org (ru - Valek
	Filippov, uk - Yuri Syrota)

2000-07-06  John Harper  <john@dcs.warwick.ac.uk>

	* configure.in, Makefile.in, capplet/Makefile.in,
	man/Makefile.in, nokogiri/Makefile.in, po/Makefile.in,
	sounds/Makefile.in, src/Makefile.in, themer/Makefile.in,
	themes/Makefile.in): some support for building in a separate
	directory tree; but this still doesn't work properly  (adapted
	from Martin Pottendorfer <pottendo@utanet.at>)

	* po/pl.po: updated Polish translation from Daniel Koc

	* configure.in: remember to delete `conftest' file after
	checking for rep-gtk (from Brad Thompson <yak@mit.edu>)

2000-07-05  John Harper  <john@dcs.warwick.ac.uk>

	* configure.in: require rep-gtk 0.13 (unreleased)

	* configure.in: test if we're able to use GNOME parts of
	rep-gtk (for the configurator)

2000-07-04  John Harper  <john@dcs.warwick.ac.uk>

	* configure.in: set REP_GTK_DONT_INITIALIZE=1 when testing for
	rep-gtk functions

	* po/pl.po: updated Polish translation from Daniel Koc

2000-07-03  John Harper  <john@dcs.warwick.ac.uk>

	* po/es.po: updated Spanish translation from Iñaki García
	Etxebarria

2000-07-02  John Harper  <john@dcs.warwick.ac.uk>

	* configure.in: version 0.29

	* configure.in: added code to check for required rep-gtk
	version

	* sawfish.spec.in: require rep-gtk 0.12+

2000-06-29  John Harper  <john@dcs.warwick.ac.uk>

	* po/make-pot: renamed this from .make-pot, and added nokogiri
	source files to REP_SRCS

2000-06-28  John Harper  <john@dcs.warwick.ac.uk>

	* themes/gradient/theme.jl, themes/mono/theme.jl,
	themes/simple/theme.jl, themes/smaker/theme.jl: changes for new
	config system

	* configure.in, Makedefs.in: added `nokogiri' subdir

2000-06-20  John Harper  <john@dcs.warwick.ac.uk>

	* configure.in, config.h.in, Makedefs.in: added support for
	--with-gdk-pixbuf

	[ gdk-pixbuf currently doesn't include support for Xlib, I have
	sent my patches to its maintainer, so hopefully it will soon.. ]

2000-06-19  John Harper  <john@dcs.warwick.ac.uk>

	* po/ru.po, po/da.po: from val <frob@df.ru>

	* po/de.po: update from Karl Eichwalder

2000-06-16  John Harper  <john@dcs.warwick.ac.uk>

	* configure.in: version 0.28.1

	* configure.in: require rep 0.12+ (table-ref in earlier
	versions has a bug that is exposed by window-history)

	* po/es.po: update from Iñaki García Etxebarria
	<garetxe@euskalnet.net>

2000-06-14  John Harper  <john@dcs.warwick.ac.uk>

	* sawfish.spec.in: merged some differences from RH spec file

2000-06-13  John Harper  <john@dcs.warwick.ac.uk>

	* Makefile.in (installdirs): need to create sawfishexecdir

	* capplet/desktop-entries/workspace-properties.desktop,
	capplet/desktop-entries/sound-properties.desktop,
	capplet/desktop-entries/placement-properties.desktop,
	capplet/desktop-entries/move-properties.desktop,
	capplet/desktop-entries/misc-properties.desktop,
	capplet/desktop-entries/maximize-properties.desktop,
	capplet/desktop-entries/match-properties.desktop,
	capplet/desktop-entries/focus-properties.desktop,
	capplet/desktop-entries/bindings-properties.desktop,
	capplet/desktop-entries/appearance-properties.desktop,
	capplet/desktop-entries/.directory: added Turkish translations
	from Fatih Demir <kabalak@gmx.net>

2000-06-12  John Harper  <john@dcs.warwick.ac.uk>

	* version 0.28

	* configure.in: check for imlib png support (Brad Thompson
	<yak@mit.edu>)

2000-06-09  John Harper  <john@dcs.warwick.ac.uk>

	* configure.in: when extracting dependences from C files using
	GCC, use `-MM' not `-MM -MG' (from Brad Thompson <yak@mit.edu>)

2000-06-07  John Harper  <john@dcs.warwick.ac.uk>

	* Makefile.in: moved DOC file to ${sawfishexecdir}

2000-06-06  John Harper  <john@dcs.warwick.ac.uk>

	* configure.in: substitute IMAGE_CFLAGS and IMAGE_LIBS to be
	IMLIB_CFLAGS and IMLIB_LIBS respectively; define HAVE_IMLIB

	* config.h.in: new macros HAVE_IMLIB and NEED_PIXMAP_CACHE

	* Makedefs.in: added -lXext to $(X11_LIBS)

	* Makedefs.in: added IMAGE_CFLAGS and IMAGE_LIBS macros