File: ChangeLog

package info (click to toggle)
jwm 2.1.0%2Bsvn579-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 2,044 kB
  • ctags: 2,017
  • sloc: ansic: 17,517; sh: 2,954; makefile: 107; sed: 16
file content (2998 lines) | stat: -rw-r--r-- 81,443 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2012-01-27 00:54  joewing

	* [r579] /config.h.in, /configure.in, /src/event.c, /src/help.c,
	  /src/jwm.h, /src/jxlib.h, /src/main.c, /src/main.h: Use
	  ConfigureNotify instead of RandR for detecting changes in
	  resolution (jdoe0154).

2012-01-22 23:19  joewing

	* [r578] /src/event.c, /src/main.c: Another attempt to fix xrandr
	  support.

2012-01-22 16:04  joewing

	* [r577] /src/main.c: Attempt to fix a bug with randr support
	  (3476900).

2012-01-15 23:57  joewing

	* [r576] /src/help.c, /src/render.c: Report xrandr with -version.

2012-01-15 23:50  joewing

	* [r575] /config.h.in, /configure.in, /src/event.c, /src/jwm.h,
	  /src/jxlib.h, /src/main.c, /src/main.h: Restart when the screen
	  changes resolution or rotates.

2012-01-14 16:18  joewing

	* [r574] /src/icon.h, /src/render.c: Change the way alpha
	  transparency is handled.

2012-01-14 01:14  joewing

	* [r573] /src/event.c: Attempt to address an issue with keyboard
	  focus when windows are unmapped.

2012-01-11 00:25  joewing

	* [r572] /src/Makefile.in: USE DESTDIR with BINDIR.

2012-01-10 23:51  joewing

	* [r571] /src/clientlist.c, /src/hint.c, /src/taskbar.c: Attempt to
	  fix the hidden window bug.

2012-01-05 17:44  joewing

	* [r570] /src/clientlist.c: Attempt to fix an issue with walking
	  the window stack.

2012-01-03 17:30  joewing

	* [r569] /src/clock.c, /src/pager.c, /src/taskbar.c,
	  /src/traybutton.c: Fix spurious popups.

2012-01-03 03:39  joewing

	* [r568] /src/client.c: Fix for loss of keybindings (bug 3468278).

2012-01-02 21:59  joewing

	* [r567] /src/client.c, /src/event.c: Use eventTime rather than
	  CurrentTime in SetInputFocus.

2012-01-02 21:56  joewing

	* [r566] /src/client.c, /src/event.c: Fix a focus problem with
	  Flash app settings (bug 3466795).

2012-01-01 21:00  joewing

	* [r565] /src/menu.c, /src/root.c: Fix segfault with -reload (bug
	  3468016).

2011-12-31 15:42  joewing

	* [r564] /src/jwm.h, /src/status.c: Don't draw a rounded border on
	  popups if --disable-shape.

2011-12-31 15:32  joewing

	* [r563] /src/jwm.h: Fix build with --disable-shape.

2011-12-23 22:41  joewing

	* [r562] /src/icon.c: Fix build with --disable-icons.

2011-12-23 22:21  joewing

	* [r561] /src/hint.c, /src/jwm.h, /src/resize.c: Allow resizing a
	  window larger than the root screen.

2011-12-23 00:25  joewing

	* [r560] /jwm.1.in, /po/POTFILES.in, /po/jwm.pot, /src/Makefile.in,
	  /src/lex.c, /src/lex.h, /src/move.c, /src/outline.c,
	  /src/parse.c, /src/spacer.c, /src/spacer.h, /src/traybutton.c,
	  /src/winmenu.c: Add a spacer tray component.

2011-12-23 00:11  joewing

	* [r559] /src/icon.c: Use fixed point for icon scaling.

2011-12-22 23:34  joewing

	* [r558] /src/button.c, /src/icon.c, /src/icon.h, /src/menu.c:
	  Align text in menus even if only some items have icons.

2011-12-22 23:23  joewing

	* [r557] /src/tray.c: Make trays work better with multiple
	  monitors.

2011-12-19 16:20  joewing

	* [r556] /src/hint.c: Fix an issue with EWMH and layers.

2011-12-19 15:11  joewing

	* [r555] /src/dock.c: Fix scaling of dock icons.

2011-12-19 00:47  joewing

	* [r554] /src/button.c, /src/client.c, /src/client.h, /src/color.c,
	  /src/dock.c, /src/event.c, /src/group.c, /src/outline.c,
	  /src/pager.c, /src/place.c, /src/render.c, /src/resize.c,
	  /src/root.c, /src/root.h, /src/traybutton.c: Fun with fixed
	  point.

2011-12-17 20:49  joewing

	* [r553] /src/root.c: Fix another warning.

2011-12-17 20:47  joewing

	* [r552] /src/button.c, /src/clock.c, /src/dock.c: Fix some
	  compiler warnings.

2011-12-17 20:33  joewing

	* [r551] /src/dock.c: Fix a double free.

2011-12-17 20:10  joewing

	* [r550] /jwm.1.in, /src/dock.c, /src/dock.h, /src/parse.c: Fix
	  Docks on restart and add a width attribute.

2011-12-16 15:26  joewing

	* [r549] /src/client.c: Fix some focus problems.

2011-12-16 00:34  joewing

	* [r548] /src/client.c, /src/event.c, /src/event.h, /src/move.c,
	  /src/resize.c: Fix a race condition with WM_TAKE_FOCUS.

2011-12-13 01:26  joewing

	* [r547] /src/event.c, /src/help.c, /src/hint.c, /src/hint.h,
	  /src/main.c, /src/main.h, /src/parse.c, /src/root.c, /src/root.h:
	  Add jwm -reload for reloading the root menu.

2011-12-03 03:48  joewing

	* [r546] /src/client.c, /src/event.c, /src/key.c, /src/key.h,
	  /src/parse.c: Full screen key binding (Rodionov Andrey).

2011-11-23 01:41  joewing

	* [r545] /src/match.c: Fix a memory leak.

2011-11-23 01:30  joewing

	* [r544] /src/match.c: Add support for regular expressions when
	  matching (Rodionov Andrey).

2011-10-22 03:55  joewing

	* [r543] /configure.in: Disable Xmu on IRIX64 in addition to IRIX
	  by default.

2011-10-16 18:25  joewing

	* [r542] /src/color.c, /src/main.c: Don't create zombies.

2011-10-16 06:01  joewing

	* [r541] /jwm.1.in, /src/group.c, /src/popup.c: Change the behavior
	  of Group settings to require a name and class match if both are
	  specified.

2011-10-16 05:28  joewing

	* [r540] /src/client.c, /src/command.c: Only fork once when
	  starting programs.

2011-10-15 22:43  joewing

	* [r539] /doc-header.shtml: Attempt to fix doxygen HTML.

2011-10-15 22:18  joewing

	* [r538] /configure.in: Add check for unsetenv.

2011-10-15 22:14  joewing

	* [r537] /src/clock.c, /src/taskbar.c, /src/timing.c, /src/tray.c:
	  More clock fixes.

2011-10-15 21:52  joewing

	* [r536] /configure.in, /src/clock.c, /src/timing.c: Fix some
	  timezone issues.

2011-10-15 19:23  joewing

	* [r535] /src/event.c, /src/move.c, /src/move.h: Disable edge
	  resistance when holding mod1.

2011-10-15 19:04  joewing

	* [r534] /src/status.c: Fix rounded corners on status windows when
	  Xmu is disabled.

2011-10-15 18:40  joewing

	* [r533] /configure.in: Update the configure script to disable Xmu
	  by default on IRIX.

2011-10-15 18:26  joewing

	* [r532] /src/border.c, /src/border.h, /src/button.c, /src/jxlib.h,
	  /src/popup.c: Add support for rounded windows without Xmu
	  support.

2011-10-14 23:46  joewing

	* [r531] /src/button.c, /src/font.c, /src/menu.c: Fix computation
	  of text width.

2011-10-13 02:59  joewing

	* [r530] /, /ABOUT-NLS, /Makefile.in, /aclocal.m4, /config.guess,
	  /config.h.in, /config.sub, /configure.in, /install-sh, /po,
	  /po/LINGUAS, /po/Makefile.in.in, /po/Makevars, /po/POTFILES.in,
	  /po/Rules-quot, /po/boldquot.sed, /po/en@boldquot.header,
	  /po/en@quot.header, /po/insert-header.sin, /po/jwm.pot,
	  /po/quot.sed, /po/remove-potcdate.sin, /src, /src/background.c,
	  /src/border.c, /src/client.c, /src/command.c, /src/cursor.c,
	  /src/desktop.c, /src/dock.c, /src/event.c, /src/font.c,
	  /src/group.c, /src/image.c, /src/jwm.h, /src/key.c, /src/lex.c,
	  /src/main.c, /src/menu.c, /src/move.c, /src/parse.c,
	  /src/popup.c, /src/root.c, /src/status.c, /src/swallow.c,
	  /src/taskbar.c, /src/tray.c, /src/traybutton.c, /src/winmenu.c:
	  Add native language support.

2011-10-12 01:30  joewing

	* [r529] /jwm.1.in: Fix WindowStyle documentation.

2011-10-09 18:52  joewing

	* [r528] /src/hint.c: Fix an issue with some windows not mapping.

2011-10-09 05:57  joewing

	* [r527] /src/desktop.c: Fix desktop wrapping.

2011-10-09 02:13  joewing

	* [r526] /src/border.c: Fix pixmap allocation for rounded borders.

2011-10-08 22:41  joewing

	* [r525] /src/client.c: Attempt to fix another issue with input
	  focus.

2011-10-08 21:43  joewing

	* [r524] /config.h.in, /configure.in, /src/hint.c, /src/timing.c:
	  Changes to fix the IRIX build.

2011-10-08 18:55  joewing

	* [r523] /src/debug.h: Fix debug build.

2011-10-08 18:54  joewing

	* [r522] /src/background.c, /src/border.c, /src/button.c,
	  /src/client.c, /src/clock.c, /src/color.c, /src/confirm.c,
	  /src/cursor.c, /src/debug.h, /src/desktop.c, /src/dock.c,
	  /src/event.c, /src/font.c, /src/group.c, /src/icon.c,
	  /src/image.c, /src/jwm.h, /src/jxlib.h, /src/key.c, /src/lex.c,
	  /src/main.c, /src/menu.c, /src/move.c, /src/pager.c,
	  /src/parse.c, /src/popup.c, /src/resize.c, /src/root.c,
	  /src/status.c, /src/swallow.c, /src/taskbar.c, /src/tray.c,
	  /src/traybutton.c, /src/winmenu.c: Some performance improvements.

2011-10-08 17:35  joewing

	* [r521] /src/gradient.c: Don't use floating point for gradients.

2011-10-08 15:14  joewing

	* [r520] /src/icon.c, /src/icon.h, /src/render.c: Release the alpha
	  picture earlier.

2011-10-08 15:14  joewing

	* [r519] /src/button.c: Better icon centering.

2011-10-08 05:10  joewing

	* [r518] /src/client.c, /src/hint.c: Fix an input focus problem
	  with some applications.

2011-10-07 14:56  joewing

	* [r517] /src/render.c: Fix render scale factors.

2011-10-07 14:10  joewing

	* [r516] /src/icon.c, /src/render.c: Better xrender scaling.

2011-10-07 02:23  joewing

	* [r515] /src/render.c: Fix xrender scaling.

2011-10-07 02:15  joewing

	* [r514] /src/render.c: Use xrender for scaling if available.

2011-10-07 02:15  joewing

	* [r513] /src/event.c: Fix a compiler warning.

2011-10-06 00:25  joewing

	* [r512] /src/event.c, /src/hint.c, /src/hint.h: Add support for
	  _NET_WM_ACTION_ABOVE/BELOW.

2011-10-04 03:52  joewing

	* [r511] /src/client.c, /src/desktop.c, /src/event.c, /src/hint.c,
	  /src/hint.h: Remove old GNOME hint support.

2011-10-03 23:38  joewing

	* [r510] /src/Makefile.in: Strip the binary after copying it when
	  installing.

2011-10-01 20:05  joewing

	* [r509] /src/desktop.c, /src/desktop.h, /src/event.c, /src/hint.c,
	  /src/hint.h: Add support for _NET_SHOWING_DESKTOP.

2011-10-01 03:54  joewing

	* [r508] /todo.txt: Remove outdated todo.txt.

2011-10-01 03:04  joewing

	* [r507] /src/event.c: Fix a bug with opening tabs in maximized
	  windows for some applications.

2011-09-30 02:33  joewing

	* [r506] /src/border.c, /src/button.c, /src/client.c, /src/clock.c,
	  /src/event.c, /src/image.c, /src/place.c, /src/taskbar.c: Fixes
	  suggested by clang (patches from Lauri Kasanen).

2011-09-26 18:52  joewing

	* [r505] /Makefile.in: Add DESTDIR to the Makefile.

2011-09-26 02:23  joewing

	* [r504] /LICENSE: Updated license.

2011-09-25 22:31  joewing

	* [r503] /configure.in: Update version.

2011-09-25 19:12  joewing

	* [r502] /src/hint.c, /src/move.c: Fix issues with dragging windows
	  to new desktops and fix a fullscreen problem.

2011-05-26 12:20  joewing

	* [r501] /src/desktop.c, /src/desktop.h, /src/move.c: Attempt to
	  fix a bug where desktops can disappear.

2010-12-26 06:09  joewing

	* [r500] /src/jwm.h: Attempted build fix for newer versions of
	  fribidi.

2010-12-26 06:03  joewing

	* [r499] /src/client.c: Fix a fullscreen problem with some programs
	  (patch from Patriot).

2010-12-17 01:18  joewing

	* [r498] /src/event.c, /src/pager.c, /src/pager.h, /src/popup.c,
	  /src/popup.h: Show popups on the pager with desktop names (patch
	  from Steve Neumann).

2010-12-14 22:04  joewing

	* [r497] /jwm.1.in, /src/clientlist.c, /src/clientlist.h,
	  /src/desktop.c, /src/event.c, /src/key.c, /src/key.h,
	  /src/parse.c: Add 'prev' and 'prevstacked' key bindings and fix
	  the 'desktop' keybinding (patch from Steve Neumann).

2010-12-13 04:07  joewing

	* [r496] /example.jwmrc, /jwm.1.in, /src/client.c, /src/desktop.c,
	  /src/desktop.h, /src/event.c, /src/hint.c, /src/jwm.h,
	  /src/key.c, /src/key.h, /src/main.c, /src/main.h, /src/move.c,
	  /src/pager.c, /src/parse.c: Add support for virtual desktops in
	  2-dimensions.

2010-12-12 21:16  joewing

	* [r495] /jwm.1.in, /src/taskbar.c: Fix a crash when updating
	  _NET_CLIENT_LIST_STACKING and update documentation.

2010-12-12 20:48  joewing

	* [r494] /jwm.1.in, /src/clock.c, /src/clock.h, /src/parse.c,
	  /src/timing.c, /src/timing.h: Add time zone support (patch from
	  Steve Neumann).

2010-09-11 03:34  joewing

	* [r493] /jwm.1.in, /src/client.h, /src/event.c, /src/group.c,
	  /src/group.h, /src/parse.c: Add a 'nofocus' group option to
	  prevent windows from stealing the focus when mapped.

2010-05-04 04:25  joewing

	* [r492] /src/hint.c: Don't make windows forever invisible if they
	  are mapped in the Withdrawn state.

2010-05-02 17:16  joewing

	* [r491] /src/client.c, /src/client.h: Go back to always grabbing
	  the mouse on windows.

2010-04-16 23:03  joewing

	* [r490] /src/client.c: Fix a bug with windows losing focus.

2010-04-13 03:27  joewing

	* [r489] /config.h.in, /configure.in, /src/clock.c, /src/jwm.h,
	  /src/main.c: Add locale support for the clock popup.

2010-04-10 22:01  joewing

	* [r488] /src/client.c, /src/client.h: Speed up the last fix

2010-04-10 21:49  joewing

	* [r487] /src/client.c, /src/hint.c: Ungrab the mouse for the top
	  window to work around a bug in flash.

2010-04-10 20:45  joewing

	* [r486] /src/place.c: Fix handling of _NET_WM_STRUT_PARTIAL

2010-04-10 20:30  joewing

	* [r485] /src/place.c: Fix a crash when a client strut is removed.

2010-04-10 20:11  joewing

	* [r484] /src/hint.c: Better handling for
	  _NET_WM_WINDOW_TYPE_DESKTOP.

2010-04-10 19:50  joewing

	* [r483] /src/hint.c: Fix an issue with window state handling.

2010-04-10 19:25  joewing

	* [r482] /src/client.c, /src/event.c, /src/hint.c, /src/hint.h:
	  Improve EWMH support

2010-04-10 19:24  joewing

	* [r481] /src/place.c: Fix a bug with maximization

2010-04-09 04:33  joewing

	* [r480] /src/event.c, /src/hint.c, /src/hint.h: Add support for
	  _NET_WM_STATE_SKIP_TASKBAR.

2010-04-09 04:00  joewing

	* [r479] /example.jwmrc, /src/tray.h: Updated example configuration

2010-04-06 05:59  joewing

	* [r478] /src/render.c: Fix an issue with JWM and render

2010-04-06 05:54  joewing

	* [r477] /src/event.c: Fix maximization problem with some GNOME
	  programs.

2010-04-06 00:23  joewing

	* [r476] /src/hint.c, /src/render.c, /src/taskbar.c: Fix a bug with
	  withdrawn windows

2010-04-02 03:42  joewing

	* [r475] /src/background.c, /src/icon.c, /src/jxlib.h, /src/main.c,
	  /src/render.c: Yet another attempt to fix an issue with icons
	  displaying incorrectly on some systems.

2010-03-24 23:46  joewing

	* [r474] /src/render.c: Attempt to fix an issue with
	  semi-transparent icons with some setups.

2010-03-23 03:29  joewing

	* [r473] /src/background.c: Fix a bug with per-desktop backgrounds.

2010-03-23 03:07  joewing

	* [r472] /src/move.c: Make dragging a window to the edge of the
	  screen switch desktops.

2010-03-23 02:36  joewing

	* [r471] /config.h.in, /jwm.1.in, /src/clientlist.c, /src/key.c,
	  /src/key.h, /src/parse.c: Clean up nextstacked key binding.

2010-03-10 04:29  joewing

	* [r470] /src/jwm.h: Fix a fribidi compilation issue

2010-02-21 02:12  joewing

	* [r469] /jwm.1.in, /src/event.c, /src/key.c, /src/key.h,
	  /src/parse.c, /src/tray.c, /src/tray.h: Add a 'show tray' key
	  binding (patch from Omair Eshkenazi)

2010-01-30 00:17  joewing

	* [r468] /jwm.1.in: Update the man page on the opacity group option

2010-01-30 00:07  joewing

	* [r467] /jwm.1.in: Sync man.1.in with the copy on SF

2010-01-30 00:05  joewing

	* [r466] /jwm.1.in: Remove the opaque key binding from the man page

2010-01-30 00:04  joewing

	* [r465] /src/client.h, /src/parse.c: Fix the opacity group setting

2010-01-18 05:30  joewing

	* [r464] /src/place.c: Fix a bug with window placement

2010-01-18 04:42  joewing

	* [r463] /src/jwm.h: Fix a compile error if libjpeg is enabled and
	  libpng is disabled

2010-01-18 04:38  joewing

	* [r462] /src/taskbar.c: Fix a bug with minimizing clients that are
	  slow to map

2010-01-18 03:49  joewing

	* [r461] /src/client.c, /src/clientlist.c, /src/event.c,
	  /src/key.c, /src/key.h: Fix nextstacked key binding

2010-01-02 00:39  joewing

	* [r460] /src/clock.c: Fix a build issue with some versions of gcc

2009-12-07 03:37  joewing

	* [r459] /jwm.1.in: Fix syntax errors in the jwm man page

2009-12-07 00:28  joewing

	* [r458] /src/hint.c: Multibyte fix for title bars from Hiroyuki
	  Yamamori

2009-09-28 01:23  joewing

	* [r457] /src/taskbar.c: Fix a crash with popups if a window has no
	  title

2009-03-26 03:10  joewing

	* [r456] /src/move.c: Only restore the maximized status of a client
	  when moving if it was only
	  maximized in one direction.

2009-03-25 03:53  joewing

	* [r455] /src/background.c, /src/client.c, /src/client.h,
	  /src/error.c, /src/event.c, /src/group.c, /src/group.h,
	  /src/hint.c, /src/hint.h, /src/icon.c, /src/jwm.h, /src/key.c,
	  /src/key.h, /src/main.c, /src/main.h, /src/menu.c, /src/menu.h,
	  /src/parse.c, /src/render.c, /src/render.h, /src/root.c,
	  /src/tray.c, /src/winmenu.c: Do transparency based on the
	  stacking order.
	  The key binding and window menu for transparency have been
	  removed for now.

2009-03-24 01:50  joewing

	* [r454] /src/button.c, /src/button.h: Tweak button label sizes and
	  remove ALIGN_RIGHT, which wasn't used and
	  probably wrong.

2009-03-22 22:05  joewing

	* [r453] /jwm.1.in: Update the man page with info about "Opacity".

2009-03-22 21:55  joewing

	* [r452] /src/desktop.c: Fix for windows loosing focus when
	  switching desktops.

2009-03-22 21:40  joewing

	* [r451] /src/client.c, /src/clientlist.c: Make "next" and
	  "nextstacked" restore minimized clients if needed.

2009-03-22 19:35  joewing

	* [r450] /src/main.c, /src/main.h, /src/root.c, /src/root.h,
	  /src/winmenu.c: Fix a crash with jwm -p.

2009-03-22 19:30  joewing

	* [r449] /src/pager.c: Don't allow the pager labels to run outside
	  of the desktop.

2009-03-22 19:27  joewing

	* [r448] /jwm.1.in, /src/color.c, /src/color.h, /src/desktop.c,
	  /src/desktop.h, /src/font.c, /src/font.h, /src/pager.c,
	  /src/pager.h, /src/parse.c: Allow pager labels.

2009-03-22 18:53  joewing

	* [r447] /src/menu.c: Fix text width on menu items.

2009-03-22 18:45  joewing

	* [r446] /src/hint.c: Put fullscreen clients on the top layer.

2009-03-22 05:17  joewing

	* [r445] /jwm.1.in: Update the man page.

2009-03-22 04:50  joewing

	* [r444] /src/border.c: Add the ability to resize from the top of
	  the window.

2009-03-22 04:32  joewing

	* [r443] /src/border.c: Fix a memory leak.

2009-03-22 04:29  joewing

	* [r442] /src/border.c, /src/border.h, /src/color.c, /src/lex.c,
	  /src/lex.h, /src/parse.c: Add the ability to set the window
	  buttons via the configuration file.

2009-03-22 03:48  joewing

	* [r441] /example.jwmrc: Updated example configuration.

2009-03-22 03:47  joewing

	* [r440] /jwm.1.in, /src/color.h, /src/lex.c, /src/lex.h,
	  /src/parse.c: Remove the "Corner" configuration option since it
	  no longer does anything.

2009-03-22 03:23  joewing

	* [r439] /Makefile.in: Allow setting the version used for creating
	  tarballs.

2009-03-22 03:02  joewing

	* [r438] /configure.in: Fix some configure problems.

2009-03-22 02:54  joewing

	* [r437] /src/border.c, /src/jwm.h: Fix some build problems.

2009-03-22 02:50  joewing

	* [r436] /src/jwm.h: Fix the inclusion of Xmu.h

2009-03-22 02:47  joewing

	* [r435] /src/traybutton.c: Fix the use of an uninitialized value.

2009-03-22 02:42  joewing

	* [r434] /README, /config.h.in, /configure.in, /src/border.c,
	  /src/border.h, /src/button.c, /src/client.c, /src/event.c,
	  /src/popup.c, /src/resize.c, /src/status.c: Clean up the use of
	  libXmu.

2009-03-22 02:23  joewing

	* [r433] /src/button.c: No more 3D buttons.

2009-03-22 02:23  joewing

	* [r432] /src/confirm.c: Fix the size of buttons on the confirm
	  dialog.

2009-03-22 01:55  joewing

	* [r431] /src/border.c: Clean up some border stuff.

2009-03-22 01:52  joewing

	* [r430] /src/status.c: Make status windows rounded.

2009-03-21 00:17  joewing

	* [r429] /src/jxlib.h, /src/main.c, /src/root.c: Log a debug
	  message about the composite extension.

2009-03-21 00:08  joewing

	* [r428] /src/border.c, /src/jxlib.h: Fix shaded rounded windows.

2009-03-20 23:53  joewing

	* [r427] /src/client.c, /src/event.c, /src/menu.c: Fix some
	  warnings.

2009-03-20 04:49  joewing

	* [r426] /configure.in: Fix a link error with Xmu functions.

2009-03-20 04:35  joewing

	* [r425] /configure.in, /jwm.1.in, /src/border.c, /src/border.h,
	  /src/button.c, /src/client.c, /src/client.h, /src/color.c,
	  /src/color.h, /src/event.c, /src/group.c, /src/group.h,
	  /src/hint.c, /src/hint.h, /src/icon.c, /src/jwm.h, /src/jxlib.h,
	  /src/key.c, /src/key.h, /src/lex.c, /src/lex.h, /src/menu.c,
	  /src/menu.h, /src/parse.c, /src/popup.c, /src/resize.c,
	  /src/root.c, /src/root.h, /src/tray.c, /src/tray.h,
	  /src/winmenu.c: User-contributed JWM-enhancements:
	  Patriot:
	  - Rounded window corners
	  - Transparent menus, trays, and window support.
	  - Borderless taskbutton tweak.
	  - Flat menu button option.
	  - New tray/tasklist border.
	  - xcompmgr bug workaround.
	  - User replaceable window button mask.
	  - gxine fullscreen fix.
	  Dougal:
	  - Show-desktop keybinding.
	  - Opacity keybinding.
	  - Transparent group.

2007-11-02 02:50  joewing

	* [r424] /src/client.c, /src/lex.c, /src/parse.c, /src/tray.c,
	  /src/tray.h: Some speedups.

2007-11-02 02:30  joewing

	* [r423] /src/icon.c: Better icon hashing.

2007-11-02 02:13  joewing

	* [r422] /configure.in: Bump version number.

2007-11-02 02:12  joewing

	* [r421] /src/clientlist.c: With "nextstacked", don't raise until
	  the modifier key is released.

2007-08-01 01:37  joewing

	* [r420] /jwm.1.in, /src/event.c, /src/key.c, /src/key.h,
	  /src/parse.c: Add the ability to stick/unstick windows with a key
	  binding.

2007-08-01 01:33  joewing

	* [r419] /jwm.1.in, /src/event.c, /src/key.c, /src/key.h,
	  /src/parse.c: Add the ability to switch to the previous desktop
	  via a key binding.

2007-08-01 01:27  joewing

	* [r418] /src/key.c: Fix a key binding issue with lock modifiers.

2007-07-05 23:58  joewing

	* [r417] /src/client.c: Fix maximization on restart.

2007-07-04 00:26  joewing

	* [r416] /src/jwm.h, /src/main.c, /src/swallow.c: Delay a bit
	  before restarting to give swallow windows a chance to map.

2007-07-03 23:55  joewing

	* [r415] /configure.in, /src/icon.c, /src/x.xpm: Better icon hash
	  and updated version number.

2007-07-03 05:13  joewing

	* [r414] /src/image.c: Fix file handle leak.

2007-06-25 00:55  joewing

	* [r413] /configure.in: A hack to make MANDIR behave

2007-06-25 00:50  joewing

	* [r412] /configure.in: Fix man page installation directory
	  (hopefully).

2007-06-25 00:45  joewing

	* [r411] /src/key.c: Don't attempt to grab keys for which we can't
	  get the key code.

2007-06-25 00:03  joewing

	* [r410] /src/parse.c: Fix a menu include bug.

2007-06-24 23:44  joewing

	* [r409] /configure.in: Update version.

2007-06-24 22:27  joewing

	* [r408] /src/background.c: Only include misc.h once.

2007-06-24 22:25  joewing

	* [r407] /src/event.c, /src/resize.c: Make alt+right click resize
	  windows.

2007-06-24 21:33  joewing

	* [r406] /example.jwmrc: Update config again...

2007-06-24 21:30  joewing

	* [r405] /example.jwmrc: Update the default config.

2007-06-24 21:30  joewing

	* [r404] /src/background.c: Expand environment variables in
	  background image paths.

2007-06-24 21:05  joewing

	* [r403] /src/main.c: Fix a bug with backgrounds.

2007-06-23 20:12  joewing

	* [r402] /jwm.1.in, /src/icon.c: Support JPEG icons.

2007-06-22 02:29  joewing

	* [r401] /example.jwmrc, /src/parse.c: Update default config and
	  fix Desktops tag parsing.

2007-06-22 01:45  joewing

	* [r400] /src/client.c, /src/client.h, /src/event.c: Make
	  maximization from double clicking the title use client settings.

2007-06-21 04:30  joewing

	* [r399] /src/confirm.c, /src/parse.c: Clean up some parsing stuff
	  and make confirm buttons wider.

2007-06-21 02:18  joewing

	* [r398] /jwm.1.in, /src/client.h, /src/event.c, /src/group.c,
	  /src/group.h, /src/parse.c: Add hmax and vmax group options.

2007-06-21 02:02  joewing

	* [r397] /src/group.c: Fix a bug with matching against window
	  instance names.

2007-06-21 01:49  joewing

	* [r396] /src/key.c: Fix nextstacked key binding.

2007-06-19 02:23  joewing

	* [r395] /README, /src/image.c, /src/jwm.h: Stop png.h's
	  complaining.

2007-06-19 01:56  joewing

	* [r394] /config.h.in, /configure.in, /src/border.c, /src/client.c,
	  /src/client.h, /src/desktop.c, /src/event.c, /src/group.c,
	  /src/hint.c, /src/image.c, /src/image.h, /src/jwm.h, /src/menu.h,
	  /src/move.c, /src/pager.c, /src/place.c, /src/place.h,
	  /src/resize.c, /src/winmenu.c: Horizontal/vertical maximization
	  Optional JPEG support.

2007-06-17 04:26  joewing

	* [r393] /src/background.c, /src/main.c: Don't make huge pixmaps
	  for tiled backgrounds.

2007-06-17 02:45  joewing

	* [r392] /src/desktop.c: Don't minimize "nolist" items on
	  showdesktop.

2007-06-15 04:09  joewing

	* [r391] /jwm.1.in: Update the documentation for menu includes.

2007-06-15 04:08  joewing

	* [r390] /src/menu.c: Fix a bug where labels were cut off
	  sometimes.

2007-06-15 04:05  joewing

	* [r389] /src/parse.c: Make menu includes work better (now they
	  must be surrounded by a <JWM> tag).

2007-06-15 03:45  joewing

	* [r388] /src/image.c: Remove debug stuff.

2007-06-15 03:44  joewing

	* [r387] /jwm.1.in, /src/background.c, /src/icon.c, /src/image.c,
	  /src/lex.c: Support for tiled background images.

2007-06-01 04:05  joewing

	* [r386] /src/main.c: Fix "non-portable" whitespace.

2007-06-01 04:02  joewing

	* [r385] /src/confirm.c, /src/menu.c, /src/tray.c: Remove tabs

2007-06-01 03:59  joewing

	* [r384] /src/clock.c, /src/cursor.c, /src/cursor.h, /src/menu.c,
	  /src/pager.c, /src/taskbar.c, /src/tray.c, /src/tray.h,
	  /src/traybutton.c: Make all tray buttons appear to be pressed
	  when pressed.

2007-06-01 03:08  joewing

	* [r383] /src/button.h, /src/confirm.c, /src/confirm.h: Make dialog
	  buttons appear to be pressed when pressed.

2007-05-17 01:33  joewing

	* [r382] /Doxyfile, /doc-footer.shtml, /doc-header.shtml: Doxygen
	  updates

2007-05-16 03:39  joewing

	* [r381] /src/client.c, /src/color.c: Fix a seg fault.

2007-05-04 03:00  joewing

	* [r380] /src/color.c, /src/color.h, /src/gradient.c: Fix gradients
	  on pseudo x servers

2007-04-04 02:50  joewing

	* [r379] /jwm.1.in, /src/event.c: Changes from jeremy-c-reed
	  Fix typos in debugging output.
	  Fix an issue with some versions of man.

2007-03-19 03:17  joewing

	* [r378] /jwm.1.in: Document scroll wheel mouse bindings for the
	  task list.

2007-03-19 03:11  joewing

	* [r377] /src/traybutton.c: Make the tray button appear pressed
	  when showing a root menu.

2007-03-19 02:57  joewing

	* [r376] /src/clientlist.c, /src/clientlist.h: Remove some dead
	  code.

2007-03-19 02:52  joewing

	* [r375] /src/Makefile.in, /src/border.c, /src/client.c,
	  /src/client.h, /src/clientlist.c, /src/clientlist.h,
	  /src/desktop.c, /src/event.c, /src/key.c, /src/key.h,
	  /src/move.c, /src/pager.c, /src/parse.c, /src/taskbar.c,
	  /src/taskbar.h, /src/tray.c: Make "nextstacked" work.

2007-03-17 00:01  joewing

	* [r374] /src/taskbar.c: Make FocusNextStackedCircular raise as
	  well as focus.

2007-03-04 05:17  joewing

	* [r373] /src/dock.c: Fix a seg fault when a program attempts to
	  dock a window with no dock running.

2007-02-24 20:48  joewing

	* [r372] /src/background.c: Use a pixmap rather than setting the
	  background pixel for solid backgrounds.

2007-01-13 05:02  joewing

	* [r371] /src/background.c: Fix a background problem.

2007-01-13 05:00  joewing

	* [r370] /src/menu.c, /todo.txt: Fix handling of empty menu items.

2007-01-13 04:52  joewing

	* [r369] /src/menu.c, /todo.txt: Don't show empty menus.

2007-01-09 03:31  joewing

	* [r368] /src/event.c: Fix window mapping.

2007-01-07 05:24  joewing

	* [r367] /src/event.c: Don't hide either.

2007-01-07 05:22  joewing

	* [r366] /src/event.c: Set the desktop for windows that map
	  themselves.

2007-01-07 05:14  joewing

	* [r365] /src/icon.c: Center icons.

2007-01-07 05:04  joewing

	* [r364] /src/icon.c, /src/render.c: Speed up image loading.

2007-01-07 04:38  joewing

	* [r363] /src/move.c: Fix mouse position when moving maximized
	  windows.

2007-01-07 04:03  joewing

	* [r362] /src/background.c, /src/hint.c, /src/hint.h: Set the
	  _XSETROOT_ID property on the root window.

2007-01-06 03:17  joewing

	* [r361] /src/icon.c: Fix endian bug with icons.

2007-01-05 06:18  joewing

	* [r360] /src/icon.c: Fix warning

2007-01-05 06:17  joewing

	* [r359] /src/background.c, /src/icon.c, /src/icon.h, /src/image.c,
	  /src/render.c: Fixes for render

2007-01-05 06:15  joewing

	* [r358] /src/icon.c, /src/image.c, /src/image.h, /src/render.c:
	  More speedups

2007-01-05 05:32  joewing

	* [r357] /src/icon.c: More speedup, hopefully.

2007-01-05 05:11  joewing

	* [r356] /src/image.c: Attempt to speed things up.

2007-01-05 04:22  joewing

	* [r355] /src/move.c, /src/pager.c, /todo.txt: Retain maximized
	  status when moving windows.

2007-01-04 04:38  joewing

	* [r354] /src/background.c: Fix some warnings

2007-01-04 04:37  joewing

	* [r353] /jwm.1.in, /src/Makefile.in, /src/background.c,
	  /src/background.h, /src/color.c, /src/color.h, /src/desktop.c,
	  /src/lex.c, /src/lex.h, /src/main.c, /src/parse.c, /todo.txt:
	  Added the ability to set the background and to change it based on
	  desktop.

2006-12-30 23:05  joewing

	* [r352] /src/main.c, /src/place.c, /src/place.h, /todo.txt: Fix a
	  bug drawing trays.

2006-12-28 04:09  joewing

	* [r351] /src/pager.c: Unmaximize maximized windows when moving
	  using the pager.

2006-12-28 04:05  joewing

	* [r350] /example.jwmrc: Updated example configuration.

2006-12-28 04:03  joewing

	* [r349] /Makefile.in, /configure.in, /package: Remove package
	  stuff

2006-12-27 01:13  joewing

	* [r348] /src/pager.c: Fix warnings.

2006-12-27 01:12  joewing

	* [r347] /src/pager.c, /src/traybutton.c, /todo.txt: Add the
	  ability to move windows with the pager.

2006-12-24 19:49  joewing

	* [r346] /src/root.c, /src/taskbar.c: Fix a seg fault when
	  minimized windows have no name.

2006-12-24 07:03  joewing

	* [r345] /src/hint.h: More doxygen.

2006-12-24 06:59  joewing

	* [r344] /src/client.h, /src/winmenu.h: Fix some doxygen comments.

2006-12-24 06:57  joewing

	* [r343] /src/command.c: Fix a compiler warning.

2006-12-24 06:55  joewing

	* [r342] /src/client.h, /src/clock.c, /src/clock.h, /src/color.h,
	  /src/command.c, /src/command.h, /src/cursor.h, /src/dock.c,
	  /src/dock.h, /src/font.h, /src/help.h, /src/hint.h, /src/image.h,
	  /src/key.c, /src/key.h, /src/lex.h, /src/main.h, /src/match.h,
	  /src/menu.h, /src/misc.h, /src/move.h, /src/outline.h,
	  /src/pager.h, /src/parse.h, /src/place.h, /src/popup.h,
	  /src/render.h, /src/resize.h, /src/root.c, /src/root.h,
	  /src/screen.h, /src/status.h, /src/swallow.c, /src/swallow.h,
	  /src/taskbar.h, /src/timing.h, /src/tray.h, /src/traybutton.c,
	  /src/traybutton.h, /src/winmenu.h: More doxygen comments.

2006-12-24 05:02  joewing

	* [r341] /configure.in: Bump version to 1.9

2006-12-24 04:53  joewing

	* [r340] /src/border.c, /src/border.h, /src/button.c,
	  /src/button.h, /src/client.c, /src/client.h, /src/clock.c,
	  /src/clock.h, /src/color.c, /src/color.h, /src/command.c,
	  /src/confirm.c, /src/confirm.h, /src/cursor.c, /src/debug.c,
	  /src/debug.h, /src/desktop.c, /src/dock.c, /src/error.c,
	  /src/event.c, /src/font.c, /src/font.h, /src/gradient.c,
	  /src/gradient.h, /src/group.c, /src/group.h, /src/help.c,
	  /src/hint.c, /src/hint.h, /src/icon.c, /src/icon.h, /src/image.c,
	  /src/image.h, /src/jwm.h, /src/jxlib.h, /src/key.c, /src/key.h,
	  /src/lex.c, /src/lex.h, /src/main.c, /src/main.h, /src/match.c,
	  /src/menu.c, /src/menu.h, /src/misc.c, /src/move.c, /src/move.h,
	  /src/outline.c, /src/pager.c, /src/parse.c, /src/place.c,
	  /src/popup.c, /src/render.c, /src/render.h, /src/resize.c,
	  /src/resize.h, /src/root.c, /src/screen.c, /src/screen.h,
	  /src/status.c, /src/swallow.c, /src/swallow.h, /src/taskbar.c,
	  /src/timing.c, /src/timing.h, /src/tray.c, /src/tray.h,
	  /src/traybutton.c, /src/traybutton.h, /src/winmenu.c: Use spaces
	  instead of tabs.

2006-12-24 04:18  joewing

	* [r339] /src/swallow.c: Fix a memory leak.

2006-12-24 04:13  joewing

	* [r338] /src/misc.c: Fix a bug.

2006-12-24 04:07  joewing

	* [r337] /src/border.c, /src/color.c, /src/hint.c, /src/hint.h,
	  /src/jxlib.h, /src/lex.c, /src/lex.h, /src/main.c, /src/match.c,
	  /src/menu.c, /src/move.c, /src/outline.c, /src/pager.c,
	  /src/parse.c, /src/place.c, /src/popup.c, /src/popup.h,
	  /src/render.c, /src/root.c, /src/screen.c, /src/status.c,
	  /src/taskbar.c, /src/timing.c, /src/tray.c, /src/traybutton.c,
	  /src/traybutton.h, /src/winmenu.c, /src/winmenu.h: Code cleanups.

2006-12-24 02:20  joewing

	* [r336] /example.jwmrc, /jwm.1.in, /src/Makefile.in,
	  /src/border.c, /src/border.h, /src/button.c, /src/client.c,
	  /src/color.c, /src/color.h, /src/cursor.c, /src/cursor.h,
	  /src/debug.c, /src/debug.h, /src/desktop.c, /src/event.c,
	  /src/event.h, /src/font.c, /src/font.h, /src/gradient.c,
	  /src/gradient.h, /src/group.c, /src/group.h, /src/hint.h,
	  /src/icon.c, /src/image.c, /src/jwm.h, /src/key.c, /src/lex.c,
	  /src/lex.h, /src/main.c, /src/menu.c, /src/move.c, /src/parse.c,
	  /src/taskbar.c, /src/theme.c, /src/theme.h, /todo.txt: New look.

2006-12-23 07:54  joewing

	* [r335] /todo.txt: Update version in todo

2006-12-23 06:41  joewing

	* [r334] /src/menu.c, /src/menu.h, /todo.txt: Make submenus appear
	  on the left if there isn't enough room on the
	  right (mdsama).

2006-12-23 06:35  joewing

	* [r333] /src/client.c, /todo.txt: Focus transients of active
	  windows when they appear.

2006-12-23 06:25  joewing

	* [r332] /src/event.c, /src/main.c, /src/swallow.c, /src/tray.c,
	  /todo.txt: Fix swallow on startup.

2006-12-23 05:22  joewing

	* [r331] /src/dock.c, /src/dock.h, /src/event.c, /todo.txt: Fix
	  dock when restarting.

2006-12-23 02:38  joewing

	* [r330] /configure.in, /src/client.c, /src/clock.c,
	  /src/command.c, /src/confirm.c, /src/confirm.h, /src/dock.c,
	  /src/error.c, /src/help.c, /src/image.h, /src/lex.h, /src/misc.c,
	  /src/misc.h, /src/move.c, /src/resize.c, /todo.txt: Fix a bug
	  with moving windows that could cause windows to jump to the
	  upper left corner of the screen.
	  Add some more doxygen comments.

2006-11-04 21:07  joewing

	* [r329] /configure.in, /todo.txt: version 1.8rc4

2006-11-04 20:54  joewing

	* [r328] /src/main.c, /todo.txt: Fix StartupCommands and Swallow
	  items.

2006-11-04 20:45  joewing

	* [r327] /src/client.c, /todo.txt: Improve _NET_WM_STATE_FULLSCREEN
	  support.

2006-10-28 04:00  joewing

	* [r326] /src/lex.c, /todo.txt: Trim leading and trailing space
	  from configuration options.

2006-10-28 02:17  joewing

	* [r325] /example.jwmrc: Fix root menu keybinding in the default
	  config.

2006-10-24 01:10  joewing

	* [r324] /configure.in, /src/border.c, /src/cursor.c, /src/parse.c,
	  /todo.txt: Fix some seg faults with invalid configuration files.

2006-10-23 02:03  joewing

	* [r323] /src/tray.c, /todo.txt: Fix an issue with auto-hide trays
	  hidding when they shouldn't.

2006-10-20 04:16  joewing

	* [r322] /src/client.c, /src/main.c, /todo.txt: Fix a bug that
	  caused windows to be mapped incorrectly when started at the
	  same time as JWM.

2006-10-19 01:32  joewing

	* [r321] /src/client.c, /todo.txt: Fix a bug that caused a seg
	  fault after a client was killed.

2006-10-15 04:55  joewing

	* [r320] /src/Makefile.in: Remove "GNU-ism" in makefile.

2006-10-01 20:15  joewing

	* [r319] /src/client.c, /src/hint.c: Keep transients above owners.

2006-10-01 20:04  joewing

	* [r318] /src/client.c, /src/key.c, /src/traybutton.c: bah

2006-10-01 20:01  joewing

	* [r317] /src/key.c, /src/key.h, /src/parse.c, /src/root.h,
	  /src/traybutton.c, /src/traybutton.h, /todo.txt: More warning
	  messages about tray buttons/key bindings that specify root menus.

2006-08-26 22:19  joewing

	* [r316] /src/border.c, /src/client.c, /src/client.h, /src/event.c,
	  /src/hint.c, /src/hint.h, /src/place.c, /src/traybutton.c,
	  /todo.txt: Add support for _NET_WM_STATE_FULLSCREEN.

2006-08-20 01:22  joewing

	* [r315] /src/event.c, /todo.txt: Unmaximize maximized windows that
	  resize themselves.

2006-08-18 00:46  joewing

	* [r314] /src/place.c, /todo.txt: When maximizing, place the window
	  on the screen of its center point.

2006-08-18 03:06  joewing

	* [r313] /src/theme.c: Fix a compiler warning.

2006-08-18 00:39  joewing

	* [r312] /src/screen.h, /src/status.h, /src/swallow.h,
	  /src/taskbar.h, /src/theme.c, /src/theme.h, /src/timing.h,
	  /src/traybutton.h, /src/winmenu.h: Add some comments.

2006-08-18 01:50  joewing

	* [r311] /src/client.c, /todo.txt: Fix a compiler warning.

2006-08-17 23:23  joewing

	* [r310] /src/client.c, /src/client.h, /src/event.c: Allow clients
	  to be lowered with alt+right click.

2006-08-17 23:00  joewing

	* [r309] /src/event.c, /todo.txt: Fix alt+left click window moving
	  so windows don't jump.

2006-08-17 22:53  joewing

	* [r308] /src/popup.c, /todo.txt: Hide popups if the mouse moves
	  over them.

2006-08-14 04:01  joewing

	* [r307] /src/traybutton.c: Fix a compiler warning.

2006-08-14 01:49  joewing

	* [r306] /configure.in, /src/root.c, /src/root.h,
	  /src/traybutton.c, /todo.txt: Bump version, fix seg fault when
	  TrayButtons point to invalid root menus.

2006-08-13 20:26  joewing

	* [r305] /configure.in, /src/client.c: Fix --disable-shape

2006-08-13 20:21  joewing

	* [r304] /jwm.1.in: Update documentation.

2006-08-13 19:55  joewing

	* [r303] /Doxyfile, /Makefile.in, /src/border.h, /src/button.h,
	  /src/client.h, /src/clock.h, /src/color.h, /src/command.h,
	  /src/confirm.h, /src/cursor.h, /src/debug.h, /src/desktop.h,
	  /src/dock.h, /src/error.h, /src/event.h, /src/font.h,
	  /src/group.h, /src/help.c, /src/help.h, /src/hint.h, /src/icon.h,
	  /src/image.h, /src/jwm.h, /src/jxlib.h, /src/key.h, /src/lex.h,
	  /src/main.h, /src/match.h, /src/menu.h, /src/misc.h, /src/move.h,
	  /src/outline.h, /src/pager.h, /src/parse.h, /src/place.h,
	  /src/popup.h, /src/render.h, /src/resize.h, /src/root.h,
	  /src/screen.h, /src/status.h, /src/swallow.h, /src/taskbar.h,
	  /src/theme.h, /src/timing.h, /src/tray.h, /src/traybutton.h,
	  /src/winmenu.h: Add some doxygen comments.

2006-08-13 16:18  joewing

	* [r302] /src/border.h, /src/button.h, /src/client.h, /src/icon.h:
	  Comments.

2006-08-13 05:43  joewing

	* [r301] /src/image.h, /src/move.h, /src/outline.h, /src/resize.h,
	  /src/tray.h: Add some comments.

2006-08-13 05:21  joewing

	* [r300] /src/border.c, /src/button.c, /src/client.c, /src/clock.c,
	  /src/color.c, /src/command.c, /src/confirm.c, /src/cursor.c,
	  /src/debug.c, /src/dock.c, /src/error.c, /src/font.c,
	  /src/group.c, /src/hint.c, /src/key.c, /src/parse.c, /todo.txt:
	  Fix some stuff.

2006-08-12 23:06  joewing

	* [r299] /src/border.c, /src/button.c, /src/font.c, /src/icon.c,
	  /src/icon.h, /src/traybutton.c: Attempt to fix icon drawing
	  issue.

2006-08-11 23:56  joewing

	* [r298] /src/clock.h, /src/command.h, /src/desktop.h, /src/dock.h,
	  /src/event.c: Don't stop move/resize for superfluous configure
	  requests.

2006-08-11 04:35  joewing

	* [r297] /todo.txt: Update todo.

2006-08-11 02:36  joewing

	* [r296] /src/client.h, /src/command.c, /src/command.h,
	  /src/font.c, /src/lex.c, /src/lex.h, /src/main.c, /src/main.h,
	  /src/parse.c: Fix font overflow and add RestartCommand.

2006-08-10 02:46  joewing

	* [r295] /jwm.1.in, /src/cursor.c, /src/cursor.h, /src/desktop.c,
	  /src/desktop.h, /src/event.c, /src/key.c, /src/key.h, /src/lex.c,
	  /src/lex.h, /src/menu.c, /src/menu.h, /src/move.c, /src/parse.c,
	  /src/root.c, /src/root.h, /src/traybutton.c, /src/winmenu.c,
	  /src/winmenu.h, /todo.txt: Support window controls in root menus.

2006-08-09 00:39  joewing

	* [r294] /src/button.c: Fix button drawing.

2006-08-09 01:55  joewing

	* [r293] /src/font.c: Fix a xft problem.

2006-08-08 23:57  joewing

	* [r292] /jwm.1.in, /src/border.c, /src/button.c, /src/client.c,
	  /src/client.h, /src/clock.c, /src/confirm.c, /src/font.c,
	  /src/font.h, /src/icon.c, /src/main.c, /src/main.h, /src/menu.c,
	  /src/menu.h, /src/pager.c, /src/popup.c, /src/render.c,
	  /src/status.c, /src/taskbar.c, /src/tray.c, /src/tray.h,
	  /src/traybutton.c, /todo.txt: Reduce X resource usage.

2006-08-08 00:49  joewing

	* [r291] /src/event.c, /src/event.h: Remove some dead code.

2006-08-08 00:47  joewing

	* [r290] /src/event.c, /src/menu.c, /src/parse.c, /src/root.c,
	  /src/root.h, /src/traybutton.c: Support multiple root menus.

2006-08-07 23:17  joewing

	* [r289] /src/border.c, /src/border.h, /src/button.c,
	  /src/client.c, /src/clock.c, /src/confirm.c, /src/event.c,
	  /src/font.c, /src/font.h, /src/icon.c, /src/icon.h, /src/popup.c,
	  /src/status.c, /src/theme.c, /src/theme.h, /src/traybutton.c:
	  Only redraw newly exposed regions of the border.

2006-08-06 03:49  joewing

	* [r288] /src/popup.c, /todo.txt: Fix click propagation through
	  popups.

2006-08-06 03:45  joewing

	* [r287] /configure.in: Change version

2006-08-06 01:59  joewing

	* [r286] /src/cursor.c, /src/cursor.h, /src/move.c: Fix move
	  cursor.

2006-08-06 01:48  joewing

	* [r285] /src/client.c: Fix keyboard input.

2006-08-06 01:41  joewing

	* [r284] /src/event.c: Remove debug output.

2006-08-06 01:40  joewing

	* [r283] /src/client.c, /src/cursor.c, /src/cursor.h, /src/event.c,
	  /src/key.c, /src/move.c: Fix alt+drag moving.

2006-08-06 02:35  joewing

	* [r282] /src/client.c, /src/client.h, /src/event.c, /src/hint.c,
	  /src/hint.h, /src/swallow.c: Kill swallow apps that don't accept
	  WM_DELETE.

2006-08-06 02:04  joewing

	* [r281] /src/client.c, /src/menu.c, /src/taskbar.c, /src/tray.c:
	  Don't get NoExpose/GraphicsExpose events.

2006-08-05 19:05  joewing

	* [r280] /src/tray.c: Never warp the mouse when a tray is shown.

2006-08-05 16:11  joewing

	* [r279] /src/client.c: Don't propagate uneeded events.

2006-08-05 07:39  joewing

	* [r278] /src/client.c, /src/cursor.c, /src/cursor.h, /src/dock.c,
	  /src/event.c, /src/main.c, /src/menu.c, /src/move.c,
	  /src/popup.c, /src/tray.c: Fix some mouse event handling.

2006-08-01 00:39  joewing

	* [r277] /src/event.c, /src/place.c, /src/place.h, /src/resize.c:
	  Placement and resize fixes.

2006-08-01 00:04  joewing

	* [r276] /src/place.c, /todo.txt: Improve aspect ratio resizing.

2006-07-30 04:27  joewing

	* [r275] /src/menu.c: Fix menu issue.

2006-07-30 04:14  joewing

	* [r274] /src/dock.c, /src/error.c, /src/event.c, /src/hint.c,
	  /src/lex.c, /src/lex.h, /src/misc.c, /src/parse.c: cleanups

2006-07-29 03:47  joewing

	* [r273] /src/clock.c, /src/color.c, /src/command.c,
	  /src/confirm.c, /src/desktop.c, /src/font.c, /src/group.c,
	  /src/icon.c, /src/image.c, /src/key.c, /src/lex.c, /src/main.c,
	  /src/parse.c, /src/popup.c, /src/root.c, /src/swallow.c: Remove
	  some redundant code.

2006-07-29 03:07  joewing

	* [r272] /src/client.c, /src/desktop.c, /todo.txt: Preserve the
	  shaded status when minimizing.

2006-07-29 02:56  joewing

	* [r271] /src/client.c, /todo.txt: Fix a bug in raising shaded
	  windows from a task list.

2006-07-29 02:39  joewing

	* [r270] /src/event.c, /todo.txt: Add the ability to move a window
	  with alt+click.

2006-07-28 05:01  joewing

	* [r269] /src/clock.c, /src/clock.h, /src/main.c, /src/popup.c,
	  /src/popup.h, /src/taskbar.c, /src/taskbar.h, /src/tray.c,
	  /src/tray.h, /src/traybutton.c, /src/traybutton.h: Fix some mouse
	  issues

2006-07-28 03:54  joewing

	* [r268] /src/event.c: Fix a mouse tracking issue.

2006-07-23 02:01  joewing

	* [r267] /src/button.c, /src/client.c, /src/event.c, /src/main.c:
	  Fix some stuff

2006-07-22 22:36  joewing

	* [r266] /src/client.c, /src/event.c, /src/place.c: Cleanups

2006-07-22 22:28  joewing

	* [r265] /src/move.c, /src/resize.c: Fix some move stuff.

2006-07-22 22:02  joewing

	* [r264] /src/button.c, /src/button.h, /src/command.c, /src/main.c,
	  /src/menu.c: Fix some button/menu stuff.

2006-07-22 01:10  joewing

	* [r263] /src/cursor.c, /src/cursor.h, /src/event.c, /src/menu.c,
	  /src/move.c, /src/resize.c, /src/tray.c: Fix some mouse issues.

2006-07-21 23:53  joewing

	* [r262] /config.h.in, /configure.in, /example.jwmrc,
	  /src/Makefile.in, /src/border.c, /src/border.h, /src/button.c,
	  /src/button.h, /src/client.c, /src/command.c, /src/command.h,
	  /src/confirm.c, /src/cursor.c, /src/cursor.h, /src/debug.h,
	  /src/dock.c, /src/event.c, /src/font.c, /src/hint.c, /src/icon.c,
	  /src/lex.c, /src/lex.h, /src/main.c, /src/menu.c, /src/parse.c,
	  /src/place.c, /src/place.h, /src/taskbar.c, /src/theme.c,
	  /src/theme.h, /src/traybutton.c, /src/winmenu.c, /todo.txt: Some
	  stuff.

2006-07-01 22:17  joewing

	* [r261] /config.h.in, /configure.in, /src/Makefile.in,
	  /src/border.c, /src/border.h, /src/button.c, /src/button.h,
	  /src/client.c, /src/clock.c, /src/color.c, /src/color.h,
	  /src/confirm.c, /src/debug.h, /src/dock.c, /src/event.c,
	  /src/font.c, /src/hint.c, /src/icon.c, /src/image.c,
	  /src/image.h, /src/jwm.h, /src/jxlib.h, /src/lex.c, /src/lex.h,
	  /src/main.c, /src/main.h, /src/menu.c, /src/menu.h, /src/misc.c,
	  /src/misc.h, /src/move.c, /src/parse.c, /src/place.c,
	  /src/place.h, /src/resize.c, /src/status.c, /src/taskbar.c,
	  /src/theme.c, /src/theme.h, /src/tray.c, /src/tray.h,
	  /src/traybutton.c, /todo.txt: Undo theme changes.

2006-05-11 00:45  joewing

	* [r260] /src/border.c, /src/button.c, /src/icon.c, /src/menu.c,
	  /src/status.c, /src/theme.c, /src/theme.h, /src/tray.c: More
	  theme updates.

2006-05-09 04:55  joewing

	* [r259] /src/border.c: Fix shaped window issues.

2006-05-09 03:23  joewing

	* [r258] /src/border.c, /src/border.h, /src/clock.c, /src/color.c,
	  /src/color.h, /src/parse.c, /src/status.c: Some cleanups.

2006-05-09 02:37  joewing

	* [r257] /src/clock.c, /src/confirm.c, /src/taskbar.c,
	  /src/theme.c, /src/theme.h, /src/tray.c, /src/tray.h: Pretty some
	  things up.

2006-05-09 01:25  joewing

	* [r256] /config.h.in, /configure.in, /src/debug.h, /src/dock.c,
	  /src/font.c, /src/hint.c, /src/icon.c, /src/jwm.h, /src/lex.c,
	  /src/taskbar.c, /src/theme.c: Use the stack if possible in some
	  places.

2006-05-08 03:17  joewing

	* [r255] /configure.in, /src/Makefile.in, /src/border.c,
	  /src/border.h, /src/button.c, /src/button.h, /src/client.c,
	  /src/confirm.c, /src/event.c, /src/hint.c, /src/icon.c,
	  /src/image.c, /src/image.h, /src/jxlib.h, /src/lex.c, /src/lex.h,
	  /src/main.c, /src/main.h, /src/menu.c, /src/menu.h, /src/misc.c,
	  /src/misc.h, /src/move.c, /src/parse.c, /src/place.c,
	  /src/place.h, /src/resize.c, /src/taskbar.c, /src/theme.c,
	  /src/theme.h, /src/tray.c, /src/traybutton.c, /todo.txt: Theme
	  support.

2006-04-26 02:07  joewing

	* [r254] /configure.in: Change to 1.7.

2006-04-26 01:57  joewing

	* [r253] /src/clock.c, /src/move.c, /src/tray.c, /src/tray.h,
	  /todo.txt: Some fixes.

2006-04-23 04:15  joewing

	* [r252] /src/clock.c, /todo.txt: Don't draw the clock every second
	  if not needed.

2006-04-23 04:06  joewing

	* [r251] /src/border.c, /src/border.h, /src/event.c, /todo.txt:
	  Make left click on window icons show the window menu.

2006-04-23 03:58  joewing

	* [r250] /src/move.c, /src/resize.c, /todo.txt: Un-maximize windows
	  on move and resize.

2006-04-23 03:43  joewing

	* [r249] /src/menu.c, /todo.txt: Support for menus that are too big
	  for the screen.

2006-04-19 04:40  joewing

	* [r248] /README: Updated README

2006-04-19 04:29  joewing

	* [r247] /src/menu.c, /src/taskbar.c, /todo.txt: Minimized item
	  updates and menu handling work.

2006-04-19 03:13  joewing

	* [r246] /todo.txt: Updated todo.

2006-04-19 03:12  joewing

	* [r245] /src/border.c: New window buttons!

2006-04-19 03:01  joewing

	* [r244] /config.h.in, /configure.in: Some changes to make aCC
	  work.

2006-04-19 02:52  joewing

	* [r243] /config.h.in, /configure.in: Yet more configure changes.

2006-04-19 02:47  joewing

	* [r242] /config.h.in, /configure.in, /src/jwm.h: More configure
	  updates.

2006-04-19 02:29  joewing

	* [r241] /configure.in: Updated configure.

2006-04-15 04:58  joewing

	* [r240] /config.h.in, /configure.in, /src/jwm.h: Fix build on
	  HP-UX.

2006-04-09 00:20  joewing

	* [r239] /src/client.c, /src/client.h, /src/desktop.c,
	  /src/event.c, /src/taskbar.c, /src/winmenu.c: Don't raise clients
	  when reversing a showdesktop.

2006-04-09 00:05  joewing

	* [r238] /jwm.1.in, /src/client.c, /src/client.h, /src/desktop.c,
	  /src/event.c, /todo.txt: Make a second click on a "showdesktop"
	  button restore minimized windows.

2006-04-08 02:12  joewing

	* [r237] /src/event.c, /src/key.c, /src/parse.c, /src/taskbar.c,
	  /src/taskbar.h, /todo.txt: New mouse bindings, fixed key mask
	  bug.

2006-04-03 02:25  joewing

	* [r236] /jwm.1.in, /src/popup.c, /todo.txt: Change default delay
	  to 600 ms, add a 3 px border.

2006-04-02 21:58  joewing

	* [r235] /src/move.c: Fix a bug with snap-to-screen.

2006-04-02 21:49  joewing

	* [r234] /src/clock.c, /todo.txt: Fix a bug involving maximized
	  windows and the clock.

2006-04-02 19:56  joewing

	* [r233] /src/jxlib.h, /src/key.c, /todo.txt: Fix a key binding
	  issue with keycode.

2006-03-28 02:21  joewing

	* [r232] /src/client.c: Fix some issues with shaded windows.

2006-03-21 04:58  joewing

	* [r231] /src/confirm.c, /src/move.c, /src/place.c, /src/popup.c,
	  /src/screen.c, /src/screen.h, /src/status.c, /src/taskbar.c,
	  /src/traybutton.c: Changes to screen handling.

2006-03-19 03:06  joewing

	* [r230] /configure.in, /src/help.c: Update for 1.6.

2006-03-19 02:56  joewing

	* [r229] /src/key.c, /todo.txt: Fix keybinding issue on
	  shutdown/restart.

2006-03-19 02:46  joewing

	* [r228] /src/menu.c: Fix menu behavior.

2006-03-19 02:39  joewing

	* [r227] /src/client.c, /src/winmenu.c: Fix confirm dialogs.

2006-03-19 02:30  joewing

	* [r226] /src/client.c, /src/clock.c, /src/confirm.c, /src/main.c,
	  /src/timing.c, /src/timing.h: Clean some things.

2006-03-19 00:35  joewing

	* [r225] /src/client.c: Restack clients after unshade.

2006-03-18 20:08  joewing

	* [r224] /src/main.c: Fix a bug.

2006-03-18 07:52  joewing

	* [r223] /src/dock.c, /src/event.c, /src/event.h, /src/main.c,
	  /src/menu.c, /src/swallow.c: Cleanups.

2006-03-18 06:57  joewing

	* [r222] /src/main.c, /src/swallow.c: Fix swallow.

2006-03-18 06:43  joewing

	* [r221] /todo.txt: Update todo too.

2006-03-18 06:42  joewing

	* [r220] /src/font.c: Fix FriBidi UTF conversion.

2006-03-18 06:26  joewing

	* [r219] /src/event.c, /src/swallow.c, /src/swallow.h, /todo.txt:
	  Don't pause waiting for swallow items.

2006-03-18 04:23  joewing

	* [r218] /src/move.c: Another attempt to fix Xinerama.

2006-03-18 04:07  joewing

	* [r217] /src/dock.c, /todo.txt: Fix a bug related to removing Dock
	  and restarting.

2006-03-16 05:12  joewing

	* [r216] /src/parse.c, /src/tray.c, /src/tray.h: Clean up some
	  stuff.

2006-03-16 04:57  joewing

	* [r215] /todo.txt: Updated todo.

2006-03-16 04:43  joewing

	* [r214] /jwm.1.in, /src/move.c, /src/parse.c, /src/resize.c,
	  /src/status.c, /src/status.h, /todo.txt: Add coordinates
	  attribute to MoveMode and ResizeMode.

2006-03-16 03:07  joewing

	* [r213] /src/clock.c, /todo.txt: Make it possible to fix the width
	  of the clock.

2006-03-16 02:28  joewing

	* [r212] /src/move.c, /todo.txt: Fix snap-to-screen with Xinerama.

2006-03-15 04:28  joewing

	* [r211] /src/client.c, /src/event.c: Fix.

2006-03-15 03:31  joewing

	* [r210] /src/client.c, /src/client.h, /todo.txt: Fix shading of
	  shaped windows.

2006-03-15 03:21  joewing

	* [r209] /src/border.c: Remove unnecessary call.

2006-03-15 01:44  joewing

	* [r208] /src/place.c, /todo.txt: Fix a xinerama placement issue.

2006-03-14 03:46  joewing

	* [r207] /src/screen.c, /src/screen.h: Remove some unused stuff.

2006-03-14 03:41  joewing

	* [r206] /src/border.c, /src/event.c: Attempt to speed up border
	  drawing.

2006-03-14 03:20  joewing

	* [r205] /src/debug.c, /src/event.c, /src/event.h, /src/menu.c,
	  /src/move.c, /src/resize.c: Optimize some stuff.

2006-03-14 01:50  joewing

	* [r204] /src/client.c, /src/client.h, /src/event.c, /src/jxlib.h,
	  /src/menu.c, /src/move.c, /src/place.c, /src/resize.c:
	  MotionNotify handling changes.

2006-03-14 01:05  joewing

	* [r203] /src/border.c, /src/client.c, /src/client.h, /src/event.c,
	  /src/hint.c, /src/taskbar.c, /todo.txt: Fix an ugly bug.

2006-03-13 05:56  joewing

	* [r202] /src/event.c: Remove unneeded shape event stuff.

2006-03-13 05:47  joewing

	* [r201] /src/event.c, /src/popup.c, /src/popup.h: Better popup
	  handling.

2006-03-12 22:52  joewing

	* [r200] /config.h.in, /configure.in, /src/Makefile.in: More
	  configure.in updates.

2006-03-12 22:43  joewing

	* [r199] /config.h.in, /configure.in: configure.in updates

2006-03-12 09:27  joewing

	* [r198] /jwm.1.in: Updated man page.

2006-03-12 06:13  joewing

	* [r197] /src/key.c, /todo.txt: Ignore caps/num lock.

2006-03-12 03:46  joewing

	* [r196] /todo.txt: updated todo.

2006-03-12 03:45  joewing

	* [r195] /src/client.c, /src/event.c: Fix a nasty shape extension
	  bug.

2006-03-12 01:25  joewing

	* [r194] /configure.in: Fix XPM configure problem.

2006-03-12 01:18  joewing

	* [r193] /configure.in: more configure.in changes

2006-03-12 00:42  joewing

	* [r192] /configure.in, /src/Makefile.in, /src/help.c: Fix
	  configure.

2006-03-11 23:12  joewing

	* [r191] /src/clock.c: Faster popup updates for Clock.

2006-03-11 23:03  joewing

	* [r190] /src/popup.c: Fix popup enabled on restart.

2006-03-11 23:01  joewing

	* [r189] /jwm.1.in, /src/clock.c, /src/parse.c, /src/popup.c,
	  /src/popup.h, /src/taskbar.c, /src/traybutton.c, /todo.txt: Add
	  "enabled" and "delay" PopupStyle attributes.

2006-03-11 22:28  joewing

	* [r188] /src/event.c, /src/move.c, /src/place.c, /src/tray.c,
	  /src/tray.h, /todo.txt: Fix autohide issues.

2006-03-11 21:59  joewing

	* [r187] /src/clock.c, /src/tray.c, /todo.txt: Resize the clock as
	  needed.

2006-03-11 21:22  joewing

	* [r186] /src/move.c: Make valgrind stop complaining.

2006-03-11 20:58  joewing

	* [r185] /src/icon.c, /src/move.c: Fix some stuff.

2006-03-11 20:39  joewing

	* [r184] /src/clock.c, /src/clock.h, /src/event.c, /src/parse.c,
	  /src/popup.c, /src/popup.h, /src/taskbar.c, /src/taskbar.h,
	  /src/timing.h, /src/tray.c, /src/traybutton.c, /src/traybutton.h,
	  /todo.txt: Popups for TrayButtons.
	  Resizing clock that doesn't work.

2006-03-11 08:13  joewing

	* [r183] /src/image.c, /todo.txt: Fix XPM issue.

2006-03-11 07:56  joewing

	* [r182] /src/color.c, /src/color.h: cleanups.

2006-03-11 03:45  joewing

	* [r181] /src/font.c: Fix a warning.

2006-03-11 03:43  joewing

	* [r180] /src/event.c, /src/place.c, /src/place.h, /todo.txt:
	  Constrain client-requested resizes.

2006-03-11 03:22  joewing

	* [r179] /src/color.c, /src/color.h, /src/image.c: better colormap
	  usage with xpms

2006-03-11 01:43  joewing

	* [r178] /src/color.c: Use the root colormap if necessary

2006-03-10 05:43  joewing

	* [r177] /src/color.c: Fix memory leak and color cell leak.

2006-03-10 05:33  joewing

	* [r176] /src/color.c: A try at colormaps.

2006-03-10 05:07  joewing

	* [r175] /src/color.c: Fix a warning.

2006-03-10 04:08  joewing

	* [r174] /src/font.c: Fix a warning.

2006-03-10 03:55  joewing

	* [r173] /src/color.c: Fix for 16 bit.

2006-03-10 03:42  joewing

	* [r172] /src/color.c, /src/jxlib.h: New color stuff again.

2006-03-09 05:16  joewing

	* [r171] /src/color.c: Much faster lookups

2006-03-09 04:44  joewing

	* [r170] /src/color.c: Try this...

2006-03-09 03:42  joewing

	* [r169] /src/event.c: bah..

2006-03-09 01:44  joewing

	* [r168] /src/event.c: Opps, I guess we needed that.

2006-03-08 05:46  joewing

	* [r167] /src/color.c, /src/color.h, /src/image.c, /src/jxlib.h:
	  Optimize XPM loading.

2006-03-08 05:23  joewing

	* [r166] /configure.in, /src/swallow.c: Fix some swallow stuff.

2006-03-08 05:08  joewing

	* [r165] /src/main.c: Dont' sync.

2006-03-08 04:59  joewing

	* [r164] /src/client.h, /src/hint.c: Remove unused field.

2006-03-08 04:58  joewing

	* [r163] /src/client.c, /src/client.h, /src/event.c, /src/hint.c:
	  Fix X errors from killing clients.

2006-03-08 04:02  joewing

	* [r162] /src/font.c, /src/main.c, /src/place.c, /src/screen.c,
	  /src/swallow.c: Fix a bug with fonts and lock the server during
	  the swallow search.

2006-03-08 02:25  joewing

	* [r161] /src/place.c, /src/render.c, /src/screen.c: Speed up in
	  render and some debug code for Xinerama.

2006-03-07 04:47  joewing

	* [r160] /src/color.c: A hack... but does it work?

2006-03-07 02:28  joewing

	* [r159] /src/color.c: Try yet again.

2006-03-07 02:14  joewing

	* [r158] /src/color.c: Try again...

2006-03-07 02:08  joewing

	* [r157] /src/color.c: Updated color hashing.

2006-03-06 15:10  joewing

	* [r156] /todo.txt: Updated todo.

2006-03-06 04:32  joewing

	* [r155] /src/taskbar.c: Fix a UMR.

2006-03-06 03:53  joewing

	* [r154] /config.h.in, /configure.in, /src/font.c, /src/jwm.h:
	  First run at supporting right-to-left languages.

2006-03-05 22:39  joewing

	* [r153] /src/swallow.c, /todo.txt: ResizeRedirect instead of
	  ConfigureNotify for swallow items.
	  DestroyNotify -> 1 pixel swallow item.

2006-03-05 06:54  joewing

	* [r152] /src/key.c, /src/key.h, /src/parse.c, /todo.txt: Allow
	  "keycode" instead of "key" to be specified for key bindings.

2006-03-05 06:29  joewing

	* [r151] /src/event.c: Don't complain about unhandled
	  ConfigureNotify events.

2006-03-05 06:21  joewing

	* [r150] /src/event.c, /src/swallow.c, /todo.txt: Support for
	  resizing of swallowed clients (lior2b).

2006-03-05 05:58  joewing

	* [r149] /src/font.c, /src/jxlib.h, /todo.txt: UTF-8 support.

2006-03-05 05:44  joewing

	* [r148] /jwm.1.in, /src/traybutton.c: Update man page and add
	  "root" action to TrayButton to be explicit.

2006-03-05 05:37  joewing

	* [r147] /configure.in, /src/desktop.c, /src/desktop.h,
	  /src/traybutton.c, /todo.txt: Added "showdesktop" to TrayButton.

2006-03-05 05:22  joewing

	* [r146] /configure.in, /src/pager.c, /src/parse.c: Fix an issue
	  with menu includes.
	  Slightly faster pager.

2006-02-09 02:11  joewing

	* [r145] /Makefile.in, /jwm.1.in, /src/parse.c, /src/tray.c,
	  /src/tray.h, /todo.txt: Add valign and halign Tray attributes.

2006-02-06 01:33  joewing

	* [r144] /src/error.c, /todo.txt: Don't show X errors in debug
	  mode.

2006-02-04 04:55  joewing

	* [r143] /src/jxlib.h, /src/key.c, /todo.txt: Fix a key binding
	  issue on restart.

2006-02-04 04:39  joewing

	* [r142] /todo.txt: Update todo.

2006-02-04 04:39  joewing

	* [r141] /src/border.c, /src/client.c, /src/event.c, /src/main.c,
	  /src/main.h, /src/move.c, /src/resize.c, /todo.txt: Support
	  borderless windows with a titlebar.

2006-02-04 03:45  joewing

	* [r140] /src/swallow.c, /todo.txt: Make Swallow more sane when an
	  error is encountered.

2006-02-04 03:38  joewing

	* [r139] /src/swallow.c, /todo.txt: Fixed swallow items getting
	  more space than requested.

2006-02-04 03:36  joewing

	* [r138] /src/taskbar.c: Better positioning of task menus for
	  vertical task bars.

2006-02-04 03:27  joewing

	* [r137] /src/parse.c, /todo.txt: Automatically detect tray
	  layouts.

2006-02-04 03:16  joewing

	* [r136] /src/menu.c, /todo.txt: Make menu sizes specified in terms
	  of the size of icons.

2006-02-04 03:05  joewing

	* [r135] /src/root.c, /src/root.h, /src/taskbar.c,
	  /src/traybutton.c, /src/winmenu.c, /src/winmenu.h, /todo.txt:
	  Make tray menus popup in more natural locations.

2006-01-16 03:32  joewing

	* [r134] /configure.in: Version bump to 1.4.

2006-01-16 03:31  joewing

	* [r133] /todo.txt: Update todo again.

2006-01-16 03:09  joewing

	* [r132] /todo.txt: Update todo.

2006-01-15 02:52  joewing

	* [r131] /jwm.1.in, /src/group.c, /src/group.h, /src/parse.c,
	  /todo.txt: Add the maximized, minimized, and shaded group
	  options.

2006-01-14 21:11  joewing

	* [r130] /src/parse.c: Fix pignore.

2006-01-14 21:05  joewing

	* [r129] /jwm.1.in, /src/client.h, /src/group.c, /src/group.h,
	  /src/place.c, /todo.txt: Add "pignore" group option.

2006-01-14 20:43  joewing

	* [r128] /src/event.c, /src/hint.c, /src/hint.h, /todo.txt: More
	  EWMH support.

2006-01-14 18:47  joewing

	* [r127] /src/dock.c, /src/main.c: Make dock work after restart.

2006-01-14 05:42  joewing

	* [r126] /src/confirm.c: Fix it really.

2006-01-14 05:39  joewing

	* [r125] /src/confirm.c, /src/swallow.c: Fix some resources not
	  being freed.

2006-01-14 05:25  joewing

	* [r124] /src/debug.c: Fix a invalid access.

2006-01-14 02:51  joewing

	* [r123] /jwm.1.in: Update the man page.

2006-01-14 02:46  joewing

	* [r122] /src/border.c, /src/parse.c: Cut down the size a bit.

2006-01-13 03:51  joewing

	* [r121] /src/cursor.c, /src/cursor.h, /todo.txt: Remove unused
	  function.

2006-01-11 01:44  joewing

	* [r120] /src/dock.c, /src/lex.c, /src/lex.h, /src/parse.c,
	  /todo.txt: More descriptive configuration parsing error messages.

2006-01-10 06:05  joewing

	* [r119] /src/traybutton.c, /todo.txt: Center tray button text when
	  no icon is present.

2006-01-10 05:58  joewing

	* [r118] /src/clock.c, /src/tray.c, /todo.txt: Fixed size
	  computation of fixed-size trays.

2006-01-10 05:33  joewing

	* [r117] /src/taskbar.c, /src/tray.c, /todo.txt: Make vertical
	  trays size-to-fit.

2006-01-10 04:56  joewing

	* [r116] /src/border.c: Make borders of small windows look better.

2006-01-10 04:51  joewing

	* [r115] /src/border.c, /todo.txt: Better handling of really small
	  windows.

2006-01-10 04:17  joewing

	* [r114] /todo.txt: Updated todo.

2006-01-10 04:14  joewing

	* [r113] /configure.in, /todo.txt: Change the version number.

2006-01-10 04:04  joewing

	* [r112] /src/client.c, /src/main.c, /src/swallow.c: Fix some
	  stuff.

2006-01-10 03:56  joewing

	* [r111] /src/dock.c, /src/dock.h, /src/event.c: Center dock items.

2006-01-10 02:16  joewing

	* [r110] /src/dock.c, /src/dock.h, /src/event.c, /src/taskbar.c,
	  /todo.txt: Use TaskListStyle instead of TrayButtonStyle for
	  TaskLists.
	  also more dock stuff that doesn't work.

2006-01-10 01:17  joewing

	* [r109] /src/traybutton.c, /todo.txt: Fix centering of tray button
	  icons.

2006-01-09 05:35  joewing

	* [r108] /src/tray.c, /src/tray.h: Fixes for variable-sized trays.

2006-01-09 05:17  joewing

	* [r107] /src/client.c, /src/clock.c, /src/dock.c, /src/dock.h,
	  /src/event.c, /src/parse.c, /src/swallow.c, /src/taskbar.c,
	  /src/tray.c, /src/tray.h, /src/traybutton.c: Updates to docking
	  support.

2006-01-08 10:06  joewing

	* [r106] /src/Makefile.in, /src/dock.c, /src/dock.h, /src/event.c,
	  /src/hint.c, /src/hint.h, /src/jxlib.h, /src/lex.c, /src/lex.h,
	  /src/main.c, /src/parse.c, /src/popup.c, /src/swallow.c,
	  /todo.txt: Add docking support.

2006-01-08 06:22  joewing

	* [r105] /src/event.c: Add a function for _NET_WM_STATE

2006-01-08 06:00  joewing

	* [r104] /src/event.c, /src/hint.c, /src/hint.h, /src/place.c,
	  /src/place.h, /todo.txt: Add support for _NET_MOVERESIZE_WINDOW

2006-01-08 01:42  joewing

	* [r103] /src/client.c, /src/event.c, /src/hint.c, /src/hint.h,
	  /src/place.c, /src/place.h, /src/taskbar.c, /src/taskbar.h,
	  /todo.txt: Add support for _NET_WM_STRUT_PARTIAL, _NET_WM_STRUT,
	  _NET_CLIENT_LIST, and _NET_CLIENT_LIST_STACKING

2006-01-02 03:05  joewing

	* [r102] /src/event.c, /src/event.h, /src/swallow.c, /todo.txt: Fix
	  a problem with swallowing some programs.

2006-01-02 02:01  joewing

	* [r101] /src/client.c, /src/client.h, /src/swallow.c, /todo.txt:
	  Send WM_DELETE_WINDOW to swallowed clients before exiting.

2006-01-02 00:50  joewing

	* [r100] /src/resize.c, /todo.txt: Fix resize when resizing a
	  window that specifies and aspect ratio.

2006-01-01 21:36  joewing

	* [r99] /config.h.in, /configure.in, /src/border.c, /src/client.c,
	  /src/client.h, /src/clock.c, /src/color.c, /src/confirm.c,
	  /src/confirm.h, /src/debug.c, /src/debug.h, /src/desktop.c,
	  /src/desktop.h, /src/error.c, /src/event.c, /src/group.c,
	  /src/hint.c, /src/icon.c, /src/image.c, /src/key.c, /src/lex.c,
	  /src/main.c, /src/main.h, /src/match.c, /src/menu.c, /src/menu.h,
	  /src/misc.c, /src/pager.c, /src/parse.c, /src/place.c,
	  /src/popup.c, /src/render.c, /src/swallow.c, /src/winmenu.c,
	  /todo.txt: Updates to configure.in to check if _XOPEN_SOURCE can
	  safely be used.
	  Fix some compiler warnings.
	  Grab keys for trays.
	  Fix a potential issue with bad PNG icons.
	  Improved loading of swallowed clients.
	  Don't use alpha blending for icons on color depths less than 24
	  bits.

2005-11-21 03:56  joewing

	* [r98] /example.jwmrc: Updated example configuration.

2005-11-21 03:54  joewing

	* [r97] /jwm.1.in, /src/event.c, /src/key.c, /src/key.h,
	  /src/parse.c, /src/taskbar.c, /src/taskbar.h, /todo.txt: Add
	  "nextstacked" key binding.

2005-11-21 03:02  joewing

	* [r96] /jwm.1.in, /src/clock.c, /src/clock.h, /src/main.c,
	  /src/parse.c, /src/traybutton.c, /src/traybutton.h: Updated man
	  page.
	  Better TrayButton sizing.

2005-11-20 02:36  joewing

	* [r95] /src/clock.c, /src/font.c: Fix font inheritance for tray
	  items and clock font/color.

2005-11-20 02:29  joewing

	* [r94] /src/icon.c: Sanity check for icon resizing.

2005-11-20 02:18  joewing

	* [r93] /src/icon.c, /todo.txt: Preserve icon aspect ratios.

2005-11-20 01:59  joewing

	* [r92] /src/clock.c, /src/main.c, /src/pager.c, /src/swallow.c,
	  /src/taskbar.c, /src/tray.c, /src/traybutton.c: Fix memory leaks
	  on jwm -p

2005-11-20 00:08  joewing

	* [r91] /src/clock.c, /src/color.c, /src/color.h, /src/cursor.h,
	  /src/font.h, /src/lex.c, /src/lex.h, /src/misc.c, /src/misc.h,
	  /src/parse.c, /src/taskbar.c, /src/traybutton.c, /todo.txt: More
	  style stuff.

2005-11-18 03:22  joewing

	* [r90] /src/clock.c, /src/misc.c, /src/misc.h: Trim the time popup
	  string.

2005-11-18 02:40  joewing

	* [r89] /src/jwm.h: add sys/select.h include.

2005-11-17 02:50  joewing

	* [r88] /src/Makefile.in, /src/clock.c, /src/clock.h, /src/event.c,
	  /src/lex.c, /src/lex.h, /src/main.c, /src/parse.c, /src/timing.c,
	  /src/timing.h, /src/tray.c, /todo.txt: Added Clock.

2005-11-17 01:33  joewing

	* [r87] /src/traybutton.c, /todo.txt: Add button border to
	  TrayButtons.

2005-11-16 04:35  joewing

	* [r86] /src/cursor.h, /src/lex.c, /src/lex.h, /src/parse.c:
	  Preparations for mouse bindings.

2005-11-15 04:12  joewing

	* [r85] /Makefile.in, /configure.in, /src/Makefile.in: Update
	  version number.
	  Fix make install.

2005-11-15 03:49  joewing

	* [r84] /src/client.c, /todo.txt: Fixed minimization on restart.

2005-11-15 03:19  joewing

	* [r83] /src/taskbar.c, /todo.txt: Fix task list overflow.

2005-11-13 20:22  joewing

	* [r82] /example.jwmrc: Updated example configuration.

2005-11-13 20:20  joewing

	* [r81] /jwm.1.in, /src/event.c, /src/event.h, /src/parse.c: Chnage
	  RootMenu onroot behaviour.
	  Update man page.

2005-11-13 18:41  joewing

	* [r80] /jwm.1.in: man page updates.

2005-11-13 18:27  joewing

	* [r79] /src/color.c, /src/desktop.c, /src/font.c, /src/parse.c,
	  /src/taskbar.c, /src/taskbar.h: Fix some configuration stuff.

2005-11-13 02:43  joewing

	* [r78] /jwm.1.in: Update man page.

2005-11-13 02:17  joewing

	* [r77] /example.jwmrc: Updated example configuration.

2005-11-13 02:01  joewing

	* [r76] /configure.in, /jwm.1.in, /src/hint.h, /src/tray.c: Change
	  to v1.0, update man page.
	  Fix style issues.

2005-11-12 20:20  joewing

	* [r75] /src/hint.c: Fix frame extents hint.

2005-11-12 19:26  joewing

	* [r74] /src/icon.h: Fix problem with no icons.

2005-11-12 19:14  joewing

	* [r73] /src/client.c: bah

2005-11-12 19:13  joewing

	* [r72] /src/client.c, /src/confirm.c: Fix confirm stuff.

2005-11-12 19:01  joewing

	* [r71] /src/parse.c, /src/traybutton.c, /src/traybutton.h: Add
	  label attribute to TrayButton.

2005-11-12 18:02  joewing

	* [r70] /example.jwmrc, /src/client.c, /src/place.c, /src/place.h,
	  /todo.txt: Fix maximization.

2005-11-12 07:51  joewing

	* [r69] /src/main.c: Startup desktops before hints.

2005-11-12 06:54  joewing

	* [r68] /src/Makefile.in, /src/client.c, /src/main.c, /src/place.c,
	  /src/place.h, /src/screen.c, /src/screen.h, /todo.txt: Improved
	  window placement.

2005-11-12 05:10  joewing

	* [r67] /src/event.c, /src/parse.c, /todo.txt: Fix key actions with
	  click-to-focus.
	  Add desktops menu item icon attribute.

2005-11-12 04:53  joewing

	* [r66] /src/desktop.c, /src/desktop.h, /src/menu.c, /src/parse.c,
	  /src/root.c, /src/winmenu.c, /todo.txt: Added "Desktops" root
	  menu item.

2005-11-12 03:47  joewing

	* [r65] /src/client.c, /src/desktop.c, /src/desktop.h, /src/hint.c,
	  /src/hint.h, /src/lex.c, /src/lex.h, /src/main.c, /src/menu.c,
	  /src/menu.h, /src/parse.c, /src/root.c, /src/winmenu.c: Desktop
	  names.
	  Active next when when the active window closes.

2005-11-10 04:56  joewing

	* [r64] /todo.txt: ... and the todo

2005-11-10 04:55  joewing

	* [r63] /src/menu.c: Fix menu issue.

2005-11-10 03:39  joewing

	* [r62] /src/parse.c: Make menu includes actually work.

2005-11-10 03:25  joewing

	* [r61] /src/parse.c, /todo.txt: Menu includes.

2005-11-10 01:58  joewing

	* [r60] /todo.txt: todo too.

2005-11-10 01:58  joewing

	* [r59] /src/hint.c, /src/hint.h: More EWMH stuff.

2005-11-10 01:18  joewing

	* [r58] /src/client.c, /src/event.c, /src/main.c, /todo.txt: Send
	  ClientMessage instead of PropertyNotify for _JWM_EXIT and
	  _JWM_RESTART

2005-11-07 06:05  joewing

	* [r57] /src/client.c, /src/hint.c: Write _NET_WM_STATE to
	  _NET_WM_STATE instead of WM_STATE!

2005-11-07 06:00  joewing

	* [r56] /src/client.c, /src/client.h, /src/event.c, /src/hint.c,
	  /src/hint.h, /todo.txt: More fixes.

2005-11-06 16:08  joewing

	* [r55] /src/border.c, /src/client.c, /src/client.h,
	  /src/desktop.c, /src/event.c, /src/group.c, /src/hint.c,
	  /src/hint.h, /src/move.c, /src/pager.c, /src/resize.c,
	  /src/taskbar.c, /src/winmenu.c: Hint updates.

2005-10-30 18:00  joewing

	* [r54] /src/client.c, /src/event.c, /src/hint.c, /src/hint.h,
	  /src/icon.c, /src/image.c, /src/render.c: Fix _NET_WM_DESKTOP for
	  64-bits.

2005-10-30 17:19  joewing

	* [r53] /Makefile.in, /src/Makefile.in, /src/font.c: Add "make
	  depend"

2005-10-30 17:01  joewing

	* [r52] /src/Makefile.in, /src/border.c, /src/border.h,
	  /src/button.c, /src/button.h, /src/client.c, /src/client.h,
	  /src/color.c, /src/color.h, /src/command.c, /src/confirm.c,
	  /src/const.h, /src/cursor.c, /src/cursor.h, /src/desktop.c,
	  /src/enum.h, /src/error.c, /src/event.c, /src/font.c,
	  /src/font.h, /src/global.c, /src/global.h, /src/group.c,
	  /src/group.h, /src/help.c, /src/hint.c, /src/hint.h, /src/icon.c,
	  /src/icon.h, /src/image.c, /src/image.h, /src/jwm.h, /src/key.c,
	  /src/key.h, /src/lex.c, /src/lex.h, /src/main.c, /src/main.h,
	  /src/menu.c, /src/menu.h, /src/move.c, /src/move.h,
	  /src/outline.c, /src/pager.c, /src/pager.h, /src/parse.c,
	  /src/popup.c, /src/render.c, /src/render.h, /src/resize.c,
	  /src/resize.h, /src/root.c, /src/root.h, /src/screen.c,
	  /src/status.c, /src/struct.h, /src/swallow.c, /src/swallow.h,
	  /src/taskbar.c, /src/taskbar.h, /src/timing.c, /src/timing.h,
	  /src/tray.c, /src/tray.h, /src/traybutton.c, /src/traybutton.h,
	  /src/winmenu.c, /src/winmenu.h: Clean up the build.

2005-10-30 15:04  joewing

	* [r51] /src/client.c, /src/confirm.c, /src/icon.c, /src/image.c,
	  /src/render.c, /todo.txt: Update todo.
	  Cast image stuff correctly.
	  Make confirm dialogs use menu colors and font.

2005-10-28 02:26  joewing

	* [r50] /src/icon.c: Don't add unnamed icons to the icon hash.

2005-10-28 02:07  joewing

	* [r49] /src/client.c, /src/color.c, /src/color.h, /src/hint.c,
	  /src/icon.c, /src/image.c, /src/render.c, /src/struct.h,
	  /src/swallow.c, /todo.txt: Fix PNG byte order issues.

2005-10-27 03:08  joewing

	* [r48] /src/winmenu.c, /todo.txt: Added window menu separator.

2005-10-27 01:18  joewing

	* [r47] /src/hint.c: Fix type-size issues.

2005-10-27 00:55  joewing

	* [r46] /example.jwmrc, /src/client.c, /todo.txt: Fix lockups when
	  restoring transients.

2005-10-25 03:11  joewing

	* [r45] /src/color.c, /src/color.h, /src/hint.c, /src/hint.h,
	  /src/icon.c, /src/image.c, /src/image.h, /todo.txt: Fix for
	  64-bit X-server issues.

2005-10-24 05:43  joewing

	* [r44] /todo.txt: Update todo.

2005-10-23 20:35  joewing

	* [r43] /src/cursor.c, /src/cursor.h, /src/jxlib.h, /src/menu.c,
	  /src/tray.c: Restore tray autohide.

2005-10-21 03:27  joewing

	* [r42] /README, /config.h.in, /configure.in, /src/Makefile.in,
	  /src/client.c, /src/event.c, /src/menu.c, /src/popup.c,
	  /src/struct.h, /src/taskbar.c, /src/taskbar.h, /src/timing.c,
	  /src/tray.c: Make popups work again.

2005-10-16 18:06  joewing

	* [r41] /src/client.c, /src/jxlib.h, /src/parse.c, /src/swallow.c,
	  /src/traybutton.c, /src/traybutton.h: More fixes.
	  Added "action" option to tray button.

2005-10-16 15:01  joewing

	* [r40] /src/border.c, /src/icon.c, /src/icon.h, /src/menu.c,
	  /src/render.c, /src/render.h, /src/struct.h, /src/taskbar.c,
	  /src/traybutton.c: More appearance fixes.

2005-10-14 02:40  joewing

	* [r39] /src/enum.h, /src/lex.c, /src/main.c, /src/pager.c,
	  /src/parse.c, /src/render.c, /src/swallow.c, /src/swallow.h,
	  /src/tray.c, /src/traybutton.c, /src/traybutton.h: Vertical
	  pagers and tray buttons.

2005-10-13 23:54  joewing

	* [r38] /src/client.c, /src/event.c, /src/swallow.c,
	  /src/swallow.h: Handle destroyed swallow clients.

2005-10-13 04:54  joewing

	* [r37] /src/icon.c: Fix scaling of non-render icons.

2005-10-13 04:25  joewing

	* [r36] /src/main.c, /src/taskbar.c, /src/tray.c: Fix some drawing
	  issues.

2005-10-13 04:18  joewing

	* [r35] /src/Makefile.in, /src/jwm.h, /src/main.c, /src/pager.c,
	  /src/struct.h, /src/swallow.c, /src/taskbar.c, /src/tray.c,
	  /src/tray.h, /src/traybutton.c, /src/traybutton.h: Improve tray
	  callback stuff.

2005-10-12 04:41  joewing

	* [r34] /src/client.c, /src/swallow.c, /src/taskbar.c, /src/tray.c:
	  Pixel fixes.

2005-10-12 04:24  joewing

	* [r33] /src/client.c, /src/pager.c, /src/swallow.c, /src/tray.c:
	  Fix placement issues and tray sizing issues.

2005-10-12 03:43  joewing

	* [r32] /src/tray.c: Make tray location depend on size for negative
	  location values.

2005-10-12 03:30  joewing

	* [r31] /src/client.c, /src/const.h, /src/hint.c, /src/jxlib.h,
	  /src/move.c, /src/pager.c, /src/pager.h, /src/parse.c,
	  /src/struct.h, /src/swallow.c, /src/taskbar.c, /src/taskbar.h,
	  /src/tray.c, /src/tray.h: More tray border support, placement
	  updates...

2005-10-12 00:19  joewing

	* [r30] /src/client.c, /src/jxlib.h, /src/parse.c, /src/swallow.c,
	  /src/swallow.h, /src/taskbar.c, /src/tray.c, /src/tray.h: More
	  tray changes.

2005-10-11 02:03  joewing

	* [r29] /src/Makefile.in, /src/border.c, /src/button.c,
	  /src/client.c, /src/color.c, /src/confirm.c, /src/const.h,
	  /src/debug.c, /src/desktop.c, /src/desktop.h, /src/enum.h,
	  /src/event.c, /src/global.c, /src/global.h, /src/group.c,
	  /src/hint.c, /src/icon.c, /src/icon.h, /src/image.c, /src/jwm.h,
	  /src/jxlib.h, /src/key.c, /src/lex.c, /src/load.c, /src/load.h,
	  /src/main.c, /src/menu.c, /src/move.c, /src/os, /src/pager.c,
	  /src/pager.h, /src/parse.c, /src/popup.c, /src/render.c,
	  /src/render.h, /src/struct.h, /src/swallow.c, /src/swallow.h,
	  /src/taskbar.c, /src/taskbar.h, /src/timing.c, /src/timing.h,
	  /src/tray.c, /src/tray.h: Major tray changes. Still much work to
	  do.

2005-10-08 00:59  joewing

	* [r28] /todo.txt: Update todo too.

2005-10-08 00:58  joewing

	* [r27] /src/client.c, /src/resize.c: Made resizing of large
	  windows a little more sane.

2005-10-08 00:37  joewing

	* [r26] /src/icon.c, /src/image.c, /src/main.c, /src/render.c: Fix
	  image loading issues.

2005-10-04 04:00  joewing

	* [r25] /src/load.c, /todo.txt: Fix off-by-one drawing the load.

2005-10-04 03:40  joewing

	* [r24] /src/status.c, /todo.txt: Make status windows show on the
	  screen with the mouse.

2005-10-04 03:28  joewing

	* [r23] /src/main.c, /todo.txt: Flush X connection before closing
	  it.

2005-10-04 03:25  joewing

	* [r22] /configure.in, /example.jwmrc, /src/command.c,
	  /src/debug.c, /src/font.c, /src/icon.c, /src/icon.h,
	  /src/image.c, /src/image.h, /src/jxlib.h, /src/main.c,
	  /src/render.c, /src/render.h, /src/struct.h, /src/tray.c,
	  /src/winmenu.c: Icon and render fixes.

2005-10-01 21:49  joewing

	* [r21] /config.h.in, /configure.in, /src/Makefile.in,
	  /src/border.c, /src/border.h, /src/client.c, /src/debug.c,
	  /src/group.c, /src/help.c, /src/icon.c, /src/icon.h,
	  /src/image.c, /src/image.h, /src/jwm.h, /src/jxlib.h,
	  /src/main.c, /src/menu.c, /src/parse.c, /src/render.c,
	  /src/render.h, /src/struct.h, /src/tray.c, /src/tray.h,
	  /todo.txt: Added PNG and XRender support.

2005-09-27 02:32  joewing

	* [r20] /example.jwmrc, /src/border.c, /src/font.c, /src/jxlib.h:
	  XFT fixes

2005-09-25 17:30  joewing

	* [r19] /src/border.c, /src/help.c, /todo.txt: Double buffer
	  borders.

2005-09-25 10:05  joewing

	* [r18] /config.h.in, /configure.in, /example.jwmrc, /jwm.1.in,
	  /src/border.c, /src/button.c, /src/color.c, /src/color.h,
	  /src/confirm.c, /src/enum.h, /src/font.c, /src/font.h,
	  /src/jwm.h, /src/jxlib.h, /src/main.c, /src/menu.c, /src/parse.c,
	  /src/popup.c, /src/status.c, /src/tray.c, /todo.txt: Use Xft for
	  antialiasing.

2005-09-25 01:53  joewing

	* [r17] /src/client.c, /src/color.c, /src/color.h, /src/font.c,
	  /src/icon.c, /src/move.c, /todo.txt: Fix a bug related to loading
	  icons and fixes for colors on 64-bit X Servers.

2005-09-25 00:39  joewing

	* [r16] /jwm.1.in, /src/pager.c, /src/pager.h, /src/parse.c,
	  /todo.txt: Add the option to enable or disable the pager.

2005-09-23 01:48  joewing

	* [r15] /todo.txt: typo

2005-09-23 01:30  joewing

	* [r14] /todo.txt: Another todo.

2005-09-23 01:28  joewing

	* [r13] /example.jwmrc: New example.jwmrc

2005-09-23 01:15  joewing

	* [r12] /jwm.1.in, /src/client.c, /src/enum.h, /src/main.c,
	  /src/parse.c, /src/tray.c, /src/tray.h, /todo.txt: Add the
	  "layer" attribute to Tray and update the man page.

2005-09-23 00:52  joewing

	* [r11] /todo.txt: Forgot the todo...

2005-09-23 00:51  joewing

	* [r10] /src/client.c, /src/enum.h, /src/group.c, /src/parse.c: Add
	  border, noborder, title, and notitle to Group.

2005-09-23 00:14  joewing

	* [r9] /README: Add Xinerama comment to the README

2005-09-21 01:41  joewing

	* [r8] /jwm.1.in, /todo.txt: More todos and an update to the man
	  page.

2005-09-21 01:32  joewing

	* [r7] /src/load.c, /src/load.h, /src/parse.c, /src/timing.c,
	  /src/timing.h, /src/tray.c, /todo.txt: Added "enabled" option to
	  Load and Clock.

2005-09-21 00:55  joewing

	* [r6] /todo.txt: Add todo's to todo.txt.

2005-09-16 01:53  joewing

	* [r5] /src/button.c, /src/confirm.c, /todo.txt: Fix color bugs.

2005-09-14 01:51  joewing

	* [r4] /Makefile.in, /src/client.c, /src/help.c, /src/help.h,
	  /src/tray.c, /todo.txt: Fixed off-by-one pixel error with tray.
	  Added "tarball" option to make.
	  Made help display version information.
	  Hopefully fixed a bug with mouse clicks propagating where they
	  shouldn't.

2005-09-05 19:03  joewing

	* [r3] /package, /package/irix, /package/irix/Makefile.in,
	  /package/irix/jwm.idb.in, /package/irix/jwm.spec.in,
	  /package/slackware, /package/slackware/Makefile.in,
	  /package/slackware/slack-desc.in,
	  /package/slackware/slackware.jwmrc, /package/solaris,
	  /package/solaris/Makefile.in, /package/solaris/pkginfo.in,
	  /package/solaris/prototype.in, /package/solaris/solaris.jwmrc:
	  Add package

2005-09-05 19:01  joewing

	* [r2] /LICENSE, /Makefile.in, /README, /config.h.in,
	  /configure.in, /example.jwmrc, /jwm.1.in, /jwm1.in, /src,
	  /src/Makefile.in, /src/border.c, /src/border.h, /src/button.c,
	  /src/button.h, /src/client.c, /src/client.h, /src/color.c,
	  /src/color.h, /src/command.c, /src/command.h, /src/confirm.c,
	  /src/confirm.h, /src/const.h, /src/cursor.c, /src/cursor.h,
	  /src/debug.c, /src/debug.h, /src/enum.h, /src/error.c,
	  /src/error.h, /src/event.c, /src/event.h, /src/font.c,
	  /src/font.h, /src/global.c, /src/global.h, /src/group.c,
	  /src/group.h, /src/help.c, /src/help.h, /src/hint.c, /src/hint.h,
	  /src/icon.c, /src/icon.h, /src/jwm.h, /src/jxlib.h, /src/key.c,
	  /src/key.h, /src/lex.c, /src/lex.h, /src/load.c, /src/load.h,
	  /src/main.c, /src/main.h, /src/match.c, /src/match.h,
	  /src/menu.c, /src/menu.h, /src/misc.c, /src/misc.h, /src/move.c,
	  /src/move.h, /src/os, /src/os/darwin.c, /src/os/irix.c,
	  /src/os/irix64.c, /src/os/linux.c, /src/os/os.h, /src/os/sunos.c,
	  /src/os/unsupported.c, /src/outline.c, /src/outline.h,
	  /src/pager.c, /src/pager.h, /src/parse.c, /src/parse.h,
	  /src/popup.c, /src/popup.h, /src/resize.c, /src/resize.h,
	  /src/root.c, /src/root.h, /src/screen.c, /src/screen.h,
	  /src/status.c, /src/status.h, /src/struct.h, /src/timing.c,
	  /src/timing.h, /src/tray.c, /src/tray.h, /src/winmenu.c,
	  /src/winmenu.h, /src/x.xpm, /todo.txt: Initial check-in

2005-09-05 18:57  joewing

	* [r1] /jwm1.in: Test import