aboutsummaryrefslogtreecommitdiffstats
path: root/ChangeLog
blob: 1bde5242ee1db29dbf699128605d2a655399ce87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
2009-01-14  michael

	* [r964]
	  add support for Dell M1730 LCD to the G15 driver by
	  lcd4linux@hayward.uk.com

	* [r963]
	  initial brightness fixed

2009-01-13  volker

	* [r962]
	  indentation, svn-version

	* [r961]
	  speedup X11 display

2009-01-13  michael

	* [r960]
	  new example for X11 config

	* [r959]
	  heavy X11 reorganization to (hopefully) finally fix Tickets #141
	  and #117

	* [r958]
	  list sub-drivers for serdisplib without -v

	* [r957]
	  moved 'print list of drivers and plugins' to the end of configure

2009-01-12  michux

	* [r956]
	  update copyright

2009-01-12  volker

	* [r955]
	  additional verbose messages

2009-01-12  michux

	* [r954]
	  fix some compiler warnings

2009-01-11  michux

	* [r953]
	  plugin_fifo: fix compile warnings

	* [r952]
	  drv_st2205u: add verbose error message

2009-01-09  volker

	* [r951]
	  version of linked serdisplib in long verbose output

2009-01-08  michael

	* [r950]
	  hhdtemp plugin fixed

2009-01-06  michael

	* [r949]
	  hddtemp autconf bug fixed

	* [r948]
	  compiler warnings fixed

	* [r947]
	  indentation

	* [r946]
	  unused array 'tokenNames' removed

	* [r945]
	  compiler warning removed

	* [r944]
	  initialize plugin on first use

	* [r943]
	  indentation

	* [r942]
	  initialize fifo on first use

	* [r941]
	  cosmetics

2009-01-04  michael

	* [r940]
	  new string operators eq ne gt ge lt le

	* [r939]
	  indentation

	* [r938]
	  typo fixed

	* [r937]
	  disable unimplemented ioctls

2009-01-01  michael

	* [r936]
	  distcheck bugs fixed

	* [r935]
	  button debugging changed

	* [r934]
	  widget_bar scale debugging changed

2008-12-31  michux

	* [r933]
	  add buttons to X11 sample conf

2008-12-31  michael

	* [r932]
	  clear pixel to BG_COL (Ticket #117)

	* [r931]
	  version bumped to 0.11.0

	* [r930]
	  netinfo plugin added to smoketest

	* [r929]
	  ported r847 (new Display CW12832 128x32) from volker_dev

	* [r928]
	  ported r846 from volker_dev

	* [r927]
	  ported r839 from volker_dev

	* [r926]
	  ported r838 from volker_dev

	* [r925]
	  ported r837 from volker_dev

	* [r924]
	  ported r835 from volker_dev

	* [r923]
	  ported r834 from volker_dev

	* [r922]
	  r828: 'additional verbose and info messages' ported from
	  volker_dev

	* [r921]
	  includes for umask() ported from volker_dev (r827)

	* [r920]
	  handle config files with <CR><LF> (DOS line ending) ported from
	  volker_dev (r826)

	* [r919]
	  netinfo plugin ported from volker_dev (r823)

	* [r918]
	  format characters in qprintf() with optional length (r821) ported
	  from volker_dev

	* [r917]
	  short circuit evaluation ported from volker_dev (r820,r822,r824)

	* [r916]
	  Fixes a buffer underrun error and possible array index issues by
	  mcarey@...

2008-12-27  michael

	* [r915]
	  ported r819 from volker_dev

	* [r914]
	  ported and modified r818 from volker_dev

	* [r913]
	  port r817 from volker_dev

	* [r912]
	  ported (modified) r815 from voker_dev

2008-12-24  michael

	* [r911]
	  cleanup & cosmetics

	* [r910]
	  driver for the PHAnderson serial-to-HD44780 adapter boards by
	  Nicolas Weill

	* [r909]
	  w1retap plugin by Jonathan Hudson

	* [r908]
	  Enables/controls the backlight on the Pertelian LCD device by
	  Jonathan Hudson

2008-12-23  michael

	* [r907]
	  hddtemp plugin from Scott Bronson

	* [r906]
	  keypad bug fixed

	* [r905]
	  patch from a.nielsen: inverted parport signals, support GPI on
	  HD44780

	* [r904]
	  indent run

2008-11-25  michux

	* [r903]
	  fix lcd4linux driver for multible onboard controllers

2008-11-23  michux

	* [r902]
	  fix automake - check for libftdi

2008-11-22  michux

	* [r901]
	  update button_exec plugin - fix segfault

	* [r900]
	  update fifo plugin - untested

2008-10-07  bwalle

	* [r899]
	  Replace write to external variable usb_debug by calling
	  usb_set_debug().
	  This fixes build on openSUSE Factory.

2008-10-06  michael

	* [r898]
	  adding GPI to picoLCD for reading button events by Igor Mammedov
	  <niallain@gmail.com>

	* [r897]
	  properties fixed

2008-10-05  bwalle

	* [r896]
	  Rebuild auto-generated autoconf stuff due to last change in
	  drivers.m4.

	* [r895]
	  Add 'ULA200' driver when --with-drivers=all is specified

2008-09-14  michael

	* [r894]
	  strftime_tz patch from Bernhard Walle

2008-09-08  michael

	* [r893]
	  strftime_tz() plugin by Bernhard Walle

2008-09-03  michael

	* [r892]
	  ULA200 driver by Bernhard Walle

	* [r891]
	  indent

2008-08-31  sonic74

	* [r890]
	  Increased the maximum bps to 230400, if defined in <termios.h>.

2008-08-27  sonic74

	* [r889]
	  

2008-08-27  michael

	* [r888]
	  D4D updates by Sven

2008-08-03  michael

	* [r887]
	  driver for 4D Systems serial displays by Sven Killig

	* [r886]
	  signed/unsigned mismatch

2008-07-26  michux

	* [r885]
	  added command functions

2008-07-15  michael

	* [r884]
	  added IRLCD driver by Jean-Philippe Civade

	* [r883]
	  'autoreconf -f -i' run & config.rpath added

	* [r882]
	  forgot to add drv_picoLCDGraphic.c :-(

	* [r881]
	  picoLCDGraphic driver by Nicu Pavel added

	* [r880]
	  widget_keypad.h added to drv_HD44780

	* [r879]
	  indent run

	* [r878]
	  automake-1.10.1

2008-04-15  michux

	* [r877]
	  forgot include

	* [r876]
	  add signal handler, improve error check

2008-04-14  michux

	* [r875]
	  minor update

2008-04-12  michux

	* [r874]
	  Makefiles again, this time libiconv stuff is fixed

	* [r873]
	  fix error, introduced in r857

	* [r872]
	  update Makefiles

	* [r871]
	  clean up

2008-04-10  michux

	* [r870]
	  Add the year 2008 to the copyright

	* [r869]
	  Add basic FIFO plugin

2008-04-04  michux

	* [r868]
	  fixed autoconf

	* [r867]
	  update autoconf

	* [r866]
	  Add asterisk plugin, thanks to mcarey@yostengineering.com

2008-04-03  michux

	* [r865]
	  fix typo, close #114

	* [r864]
	  update charset for Crystalfontz Model 632 and 634

2008-03-05  michux

	* [r863]
	  improve error messages

2008-03-03  michux

	* [r862]
	  reformat plugin_mpd - use c style comments

	* [r861]
	  correct code format (indent)

	* [r860]
	  correct code format (indent)

	* [r859]
	  new plugin: button_exec by Wolfgang Henerbichler

	* [r858]
	  add new driver (st2205) by Jeroen/Sprite_tm

	* [r857]
	  new plugin: button_exec by Wolfgang Henerbichler

	* [r856]
	  add keypad support for module lcm162

	* [r855]
	  add new driver (st2205) by Jeroen/Sprite_tm

2008-02-27  michux

	* [r854]
	  add signal handler to plugin_mpd

	* [r853]
	  plugin_mpd, update to v0.81, fix connection issues

2008-02-25  michux

	* [r852]
	  update mpd plugin to v0.8 - makefile needs some work now

2008-01-28  michux

	* [r851]
	  disable default emulator code

	* [r850]
	  minor updates

	* [r849]
	  added pingpong scrolling

2008-01-24  michux

	* [r848]
	  

2007-10-17  volker

	* [r847]
	  added new display 128x32 (CW12832)

	* [r846]
	  info about property change

2007-10-03  michael

	* [r845]
	  automatic marquee patch from Manuel Grot

2007-10-01  michael

	* [r844]
	  RDTSC delay and inclusion of asm/msr.h removed

	* [r843]
	  driver for Pertelian display by Andy Powell

2007-09-15  michael

	* [r842]
	  GPS plugin V0.3 by michu

	* [r841]
	  GPS plugin V0.2 by michu

2007-09-09  michael

	* [r840]
	  email address changed

2007-08-25  volker

	* [r839]
	  additional information about decision which plugin and drivers
	  are included via configure

2007-08-23  volker

	* [r838]
	  existence of netdevice corrected (less cpu load)

	* [r837]
	  logging info clarified

	* [r836]
	  Indentation

2007-08-13  volker

	* [r835]
	  Absicherung gegen Abfragen nicht vorhandener Daten

	* [r834]
	  erweiterte Ausgabe bei Daten ueber unterstuetzte Hardware

2007-07-27  michael

	* [r833]
	  Fix compilation with kernel 2.6.22 by Guillaume LECERF

	* [r832]
	  MPD plugin patch from michu

	* [r831]
	  GPS plugin update by michu

	* [r830]
	  indentation

2007-07-12  volker

	* [r829]
	  svn version updated

	* [r828]
	  additional verbose and info messages

2007-07-08  volker

	* [r827]
	  includes for umask(); svnversion updated

2007-06-27  volker

	* [r826]
	  handle config files with <CR><LF> (DOS line ending)

	* [r825]
	  added plugin_netdev

	* [r824]
	  copy&paste error corrected

	* [r823]
	  new plugin: netinfo

	* [r822]
	  indentation with ./indent.sh; short circuit evaluation modified

2007-06-25  volker

	* [r821]
	  format characters in qprintf() with optional length

	* [r820]
	  calculate only necessary elements of operands

2007-06-24  volker

	* [r819]
	  optimization on changing brightness of backlight

2007-06-22  volker

	* [r818]
	  list plugins

	* [r817]
	  disable plugins where preconditions not given: compiles mostly
	  under MacOS X

	* [r816]
	  keypad support added for X11 driver

2007-06-21  volker

	* [r815]
	  optimized layer drawing (no drawing under opaque pixel)

	* [r814]
	  LCD::brightness, keypad

	* [r813]
	  default for Brightness is 255

2007-06-20  volker

	* [r812]
	  LCD::brightness in drv_X11 corrected

	* [r811]
	  development of new experimental features

	* [r810]
	  global variable for backlight color

	* [r809]
	  keypad support completed; new property brightness implemented

	* [r808]
	  maximum value for brightness is 8

2007-06-17  michael

	* [r807]
	  buttons for X11 driver (thanks to Volker Gering)

	* [r806]
	  Apple has no utsbuf.domainname (thanks to Volker Gering)

	* [r805]
	  strndup() replacement

	* [r804]
	  better usage output by Volker Gering

2007-06-08  michael

	* [r803]
	  Image driver libgd dependancy fix

2007-06-04  michael

	* [r802]
	  big MPD patch from Robert Buchholz

2007-05-19  michael

	* [r801]
	  gps plugin, code by michu / www.neophob.com

2007-05-17  michael

	* [r800]
	  backported r799 from trunk

	* [r799]
	  compile error on m68k fixed (debian bug 405898)

2007-05-04  michael

	* [r798]
	  typo in LUIse driver fixed

2007-05-02  michael

	* [r797]
	  some compiler warnings fixed

2007-04-30  michael

	* [r796]
	  LCD4Linux-0.10.1-RC2

	* [r795]
	  ChangeLog updated

	* [r794]
	  svn2cl moved and optimized

	* [r793]
	  svn2cl.sh added

	* [r792]
	  port r791 from trunk

	* [r791]
	  link Cwlinux with keypad support

	* [r790]
	  ported r777 from trunk

	* [r789]
	  ported r784-r788 from trunk

2007-04-28  michael

	* [r788]
	  patch from Fox: Fix a typo that prevent Bar display to work

	* [r787]
	  patch from FoX that fixes compilation with kernel 2.6.21

2007-04-23  michael

	* [r786]
	  MPD plugin patch from michu

2007-04-20  michael

	* [r785]
	  keypad and firmware support for Cwlinux (patch from Volker
	  Gering)

	* [r784]
	  iowait,irq and softirq added (patch from Roman Jozsef)

2007-03-22  michael

	* [r783]
	  backport r782 from trunk

2007-03-21  michael

	* [r782]
	  plugin_file patch from Mark Richards

2007-03-13  michael

	* [r781]
	  backport r780 from trunk

	* [r780]
	  Crystalfontz keypad patch from kenson

2007-03-05  michael

	* [r779]
	  ported changeset 778 from branches/0.10.1

	* [r778]
	  picoLCD linker error fixed (libusb was missing)

2007-02-28  michael

	* [r777]
	  imon::quantity and imon::status patch from Stefan Gmeiner /
	  Christian Brueggemann

2007-02-26  michael

	* [r776]
	  backported 774:775 from trunk

	* [r775]
	  ChangeLog refresh

	* [r774]
	  compiler warnings on x86_64 fixed

2007-02-25  michael

	* [r773]
	  backport 768:771 from trunk, version changed to 0.10.1-RC2

	* [r772]
	  ChangeLog refreshed

	* [r771]
	  lots of compiler warnings removed, C++-style comments removed,
	  changed struc initialisation from 'field:value' to '.field=value'

2007-02-24  michael

	* [r770]
	  strstr() and substr() added to string plugin

	* [r769]
	  ChangeLog processed with svn2cl

	* [r768]
	  LCD4Linux-0.10.1-RC1

	* [r767]
	  trunk version incremented to 0.10.2-SVN

	* [r766]
	  branch 0.10.1 created

	* [r765]
	  tag 0.10.0 created

	* [r764]
	  Version number changed to 0.10.1-RC1

2007-02-05  michael

	* [r763]
	  only use picoLCD if libusb is available

2007-02-04  michael

	* [r762]
	  svn version bumped manually

	* [r761]
	  autoconf & smoketest bugs fixed

	* [r760]
	  'Electronic Assembly' driver by Stefan Gmeiner

	* [r759]
	  picoLCD driver bugs fixed

2007-01-23  michael

	* [r758]
	  drv_picoLCD was missing in distribution

	* [r757]
	  removed -SVN from version string

	* [r756]
	  try to add svn version

2007-01-21  michael

	* [r755]
	  indent

	* [r754]
	  new function 'decode()'

	* [r753]
	  removed unused variable

2007-01-20  michael

	* [r752]
	  keypad widget cleanup

	* [r751]
	  GPO cleanup

	* [r750]
	  minor fixes to evaluator

	* [r749]
	  dynamic properties for bars; new 'property_valid()' helper

	* [r748]
	  indent

2007-01-19  michael

	* [r747]
	  driver for picoLCD displays from mini-box.com by Nicu Pavel

	* [r746]
	  dynamic properties for keypad widget

	* [r745]
	  indent

2007-01-18  michael

	* [r744]
	  dynamic properties for Icon widget

2007-01-17  michael

	* [r743]
	  dynamic properties for GPO's

	* [r742]
	  removed DOS newlines again :-(

	* [r741]
	  indent

	* [r740]
	  changed version number from 0.10.1-CVS to 0.10.1-SVN

2007-01-16  michael

	* [r739]
	  new driver 'HD44780-I2C'

	* [r738]
	  Fix compilation of plugin_wireless.c with linux kernel 2.6.19
	  from Guillaume LECERF

	* [r737]
	  Patch from Robert Buchholz: NULL driver link error fixed, m4
	  files included in distribution

	* [r736]
	  patch from Mattia Jona-Lasinio for lcd-linux 0.12.0

	* [r735]
	  svn keywords

	* [r734]
	  removed some DOS newlines

2007-01-15  michael

	* [r733]
	  minor cosmetic changes and fixes

2007-01-14  michael

	* [r732]
	  re-bootstrapped

	* [r731]
	  svn keywords corrected

	* [r730]
	  svn keywords corrected

	* [r729]
	  added svn properties and keywords

	* [r728]
	  changed $Revision to $Rev

	* [r727]
	  removed all tags

	* [r726]
	  svn properties fixed

	* [r725]
	  svn:ignore ported from .cvsignore

	* [r724]
	  switch from CVS to SVN

2006-10-01  reinelt

	* [r723]
	  [lcd4linux @ 2006-10-01 11:54:38 by reinelt]
	  timer widget uses properties

2006-09-29  reinelt

	* [r722]
	  [lcd4linux @ 2006-09-29 04:48:21 by reinelt]
	  image widget uses properties now; new property 'reload'

2006-10-04  root

	* [r721]
	  image widget memory leaks fixed (thanks to Magne Torresen)

2006-09-19  entropy

	* [r720]
	  [lcd4linux @ 2006-09-19 11:20:52 by entropy]
	  Added missing prototypes

2006-09-15  siretart

	* [r719]
	  [lcd4linux @ 2006-09-15 20:30:03 by siretart]
	  rerun bootstrap on request from Ernst Bachmann
	  <e.bachmann@xebec.de>
	  Message-Id: <200609152109.17600.e.bachmann@xebec.de>

2006-09-15  entropy

	* [r718]
	  [lcd4linux @ 2006-09-15 19:06:47 by entropy]
	  debug spam reduced, comment typo fixed

	* [r717]
	  [lcd4linux @ 2006-09-15 19:00:50 by entropy]
	  iconv charset converter plugin

2006-09-14  entropy

	* [r716]
	  [lcd4linux @ 2006-09-14 20:36:39 by entropy]
	  Improved example showing how to display network and hdd activity
	  on an usb hub

	* [r715]
	  [lcd4linux @ 2006-09-14 11:19:29 by entropy]
	  New cmdline option -p to specify the pidfile location

2006-09-14  reinelt

	* [r714]
	  [lcd4linux @ 2006-09-14 04:08:54 by reinelt]
	  variables use a static list, no realloc, linear search

	* [r713]
	  [lcd4linux @ 2006-09-14 03:49:14 by reinelt]
	  indent run

2006-09-13  entropy

	* [r712]
	  [lcd4linux @ 2006-09-13 20:07:59 by entropy]
	  Fixing bug #1494773 (compiles only on i368/amd64 machines) by
	  providing a dummy implementation for other archs

	* [r711]
	  [lcd4linux @ 2006-09-13 20:04:57 by entropy]
	  threads change argv[0] to their thread name, for a neat 'ps'
	  output

2006-09-13  reinelt

	* [r710]
	  [lcd4linux @ 2006-09-13 05:33:39 by reinelt]
	  plugin_file: return empty string if file cannot be read;
	  widget_text: load property as 'string', not as variable
	  (triggered an ugly bug with variable list reallocated)

2006-09-08  reinelt

	* [r709]
	  [lcd4linux @ 2006-09-08 19:00:46 by reinelt]
	  give up after 10 write errors to serial device

2006-09-07  reinelt

	* [r708]
	  [lcd4linux @ 2006-09-07 09:06:25 by reinelt]
	  lots of wrong printf formats corrected (thanks to Ernst Bachmann)

2006-09-06  reinelt

	* [r707]
	  [lcd4linux @ 2006-09-06 05:22:09 by reinelt]
	  some autoconf updates

2006-09-04  siretart

	* [r706]
	  [lcd4linux @ 2006-09-04 16:48:32 by siretart]
	  rerun bootstrap on current debian/etch system using automake1.9
	  to
	  make my previous commits active

	* [r705]
	  [lcd4linux @ 2006-09-04 16:47:39 by siretart]
	  These changes were necessary to make lcd4linux build on current
	  debian etch/unstable
	  systems. I cannot really imagine how this was supposed to work,
	  so I replaced
	  the old modified python.m4 with an uptodate version of
	  ac_python_devel.m4 from
	  autoconf_archive. both .m4 files seem to have a common anchestor,
	  but ac_python_devel.m4
	  has clearly seen a lot of more love, so let's better stay with
	  upstream
	  (autoconf archive), so we can blame them if anything breaks.
	  
	  Moreover, this actually works

	* [r704]
	  [lcd4linux @ 2006-09-04 16:41:21 by siretart]
	  removing debianisation from upstream source, as discussed with
	  Michael on private mail.
	  
	  Rationale: I try to keep an updated lcd4linux in debian/sid. If
	  you need the debinisation,
	  please use my packages as base. If you want more updated package,
	  please drop me a note,
	  and I'll arrange another upload to unstable (or experimental,
	  depending on the state
	  of the cvs).

	* [r703]
	  [lcd4linux @ 2006-09-04 16:35:43 by siretart]
	  fix linking with modular xorg. See http://bugs.debian.org/381606
	  for reference

	* [r702]
	  [lcd4linux @ 2006-09-04 16:33:21 by siretart]
	  beautify bootstrap script

2006-08-23  harbaum

	* [r701]
	  [lcd4linux @ 2006-08-23 17:45:37 by harbaum]
	  Umlaut translation bugfix

2006-08-23  reinelt

	* [r700]
	  [lcd4linux @ 2006-08-23 05:05:40 by reinelt]
	  CF635 added to lcd4linux.conf.sample

2006-08-17  harbaum

	* [r699]
	  [lcd4linux @ 2006-08-17 19:11:40 by harbaum]
	  Small plugin_kvv bugfixes and new abbreviate option

2006-08-17  reinelt

	* [r698]
	  [lcd4linux @ 2006-08-17 05:06:26 by reinelt]
	  LCD2USB driver missing keypad symbols fixed

2006-08-16  reinelt

	* [r697]
	  [lcd4linux @ 2006-08-16 14:18:14 by reinelt]
	  T6963 enhancements: soft timing, DualScan, Cell size

2006-08-15  harbaum

	* [r696]
	  [lcd4linux @ 2006-08-15 17:28:27 by harbaum]
	  Cleaned up thread and error handling

2006-08-14  harbaum

	* [r695]
	  [lcd4linux @ 2006-08-14 19:24:22 by harbaum]
	  Umlaut support, added KVV HTTP-User-Agent

2006-08-14  reinelt

	* [r694]
	  [lcd4linux @ 2006-08-14 05:54:03 by reinelt]
	  minor warnings fixed, CFLAGS changed (no-strict-aliasing)

2006-08-13  harbaum

	* [r693]
	  [lcd4linux @ 2006-08-13 18:45:25 by harbaum]
	  Little cleanup ...

	* [r692]
	  [lcd4linux @ 2006-08-13 18:14:03 by harbaum]
	  Added KVV plugin

2006-08-13  reinelt

	* [r691]
	  [lcd4linux @ 2006-08-13 11:38:20 by reinelt]
	  text widget uses dynamic properties

	* [r690]
	  [lcd4linux @ 2006-08-13 09:53:10 by reinelt]
	  dynamic properties added (used by 'style' of text widget)

	* [r689]
	  [lcd4linux @ 2006-08-13 06:46:51 by reinelt]
	  T6963 soft-timing & enhancements; indent

2006-08-11  reinelt

	* [r688]
	  [lcd4linux @ 2006-08-11 11:59:29 by reinelt]
	  M50530 minor fixes

2006-08-10  reinelt

	* [r687]
	  [lcd4linux @ 2006-08-10 20:40:46 by reinelt]
	  M50530 enhancements: Timings, busy-flag checking

	* [r686]
	  [lcd4linux @ 2006-08-10 19:06:52 by reinelt]
	  new 'fuzz' parameter for timings

2006-08-09  harbaum

	* [r685]
	  [lcd4linux @ 2006-08-09 17:25:34 by harbaum]
	  Better bar color support and new bold font

2006-08-08  harbaum

	* [r684]
	  [lcd4linux @ 2006-08-08 20:16:28 by harbaum]
	  Added "extracolor" (used for e.g. bar border) and RGB support for
	  LEDMATRIX

2006-08-08  reinelt

	* [r683]
	  [lcd4linux @ 2006-08-08 19:35:21 by reinelt]
	  USBHUB driver from Ernst Bachmann

	* [r682]
	  [lcd4linux @ 2006-08-08 19:28:18 by reinelt]
	  widget type checking corrected

2006-08-05  harbaum

	* [r681]
	  [lcd4linux @ 2006-08-05 21:08:01 by harbaum]
	  New LEDMATRIX driver (see http://www.harbaum.org/till/ledmatrix)

2006-07-31  reinelt

	* [r680]
	  [lcd4linux @ 2006-07-31 03:48:09 by reinelt]
	  preparations for scrolling

2006-07-30  lfcorreia

	* [r679]
	  [lcd4linux @ 2006-07-30 11:29:02 by lfcorreia]
	  Make changes suggested by Michael, only one init function is
	  needed

	* [r678]
	  [lcd4linux @ 2006-07-30 11:16:27 by lfcorreia]
	  Add back drv_generic_i2c_close function

2006-07-29  lfcorreia

	* [r677]
	  [lcd4linux @ 2006-07-29 21:12:31 by lfcorreia]
	  Add UPPERCASE string plugin function

	* [r676]
	  [lcd4linux @ 2006-07-29 21:04:43 by lfcorreia]
	  Better error handling, add proper I2C SLAVE device detection (not
	  100% finished)

	* [r675]
	  [lcd4linux @ 2006-07-29 20:59:12 by lfcorreia]
	  Fix wrong timing at I2C initialization

2006-07-19  cmay

	* [r674]
	  [lcd4linux @ 2006-07-19 01:57:01 by cmay]
	  fixed double read of last line in file

	* [r673]
	  [lcd4linux @ 2006-07-19 01:48:11 by cmay]
	  Ran indent.sh to make pretty code.

	* [r672]
	  [lcd4linux @ 2006-07-19 01:35:31 by cmay]
	  Renamed keypad direction names to avoid conflict with Curses
	  library defs.
	  Added keypad support to Curses display driver.

2006-07-18  nicowallmeier

	* [r671]
	  [lcd4linux @ 2006-07-18 17:04:55 by nicowallmeier]
	  Changed test for libmpd

2006-07-14  reinelt

	* [r670]
	  [lcd4linux @ 2006-07-14 20:15:11 by reinelt]
	  buffer too small (thanks to anonymous)

2006-07-12  reinelt

	* [r669]
	  [lcd4linux @ 2006-07-12 21:01:41 by reinelt]
	  thread_destroy, minor cleanups

	* [r668]
	  [lcd4linux @ 2006-07-12 20:47:51 by reinelt]
	  indent

	* [r667]
	  [lcd4linux @ 2006-07-12 20:45:30 by reinelt]
	  G15 and thread patch by Anton

2006-06-25  reinelt

	* [r666]
	  [lcd4linux @ 2006-06-25 15:13:00 by reinelt]
	  automake-1.9 cleanups

	* [r665]
	  [lcd4linux @ 2006-06-25 14:58:38 by reinelt]
	  switch to automake-1.9

2006-06-21  reinelt

	* [r664]
	  [lcd4linux @ 2006-06-21 05:12:43 by reinelt]
	  added checks for libgd version 2 (thanks to Sam)

2006-06-20  reinelt

	* [r663]
	  [lcd4linux @ 2006-06-20 08:50:58 by reinelt]
	  widget_image linker error hopefully finally fixed

2006-06-19  reinelt

	* [r662]
	  [lcd4linux @ 2006-06-19 15:12:54 by reinelt]
	  bootstrapped

	* [r661]
	  [lcd4linux @ 2006-06-19 12:02:17 by reinelt]
	  linker error from widget_image fixed

	* [r660]
	  [lcd4linux @ 2006-06-19 11:54:08 by reinelt]
	  removed dependency to usb.h from sample driver

2006-04-17  reinelt

	* [r659]
	  [lcd4linux @ 2006-04-17 08:10:42 by reinelt]
	  LCDLinux patch from Mattia; widget_image moved to EXTRA_SOURCE

2006-04-15  reinelt

	* [r658]
	  [lcd4linux @ 2006-04-15 05:22:52 by reinelt]
	  mpd plugin from Stefan Kuhne

2006-04-14  harbaum

	* [r657]
	  [lcd4linux @ 2006-04-14 20:59:38 by harbaum]
	  Disable inclusion of Image driver in drv.c if no gd was found.

2006-04-09  reinelt

	* [r656]
	  [lcd4linux @ 2006-04-09 17:46:14 by reinelt]
	  vertical bar patch fro graphic displays by Ronald Hopfer

	* [r655]
	  [lcd4linux @ 2006-04-09 14:17:49 by reinelt]
	  autoconf/library fixes, image and graphic display inversion

2006-03-29  reinelt

	* [r654]
	  [lcd4linux @ 2006-03-29 08:57:58 by reinelt]
	  vertical bar patch from Manuel Lausch

2006-03-18  harbaum

	* [r653]
	  [lcd4linux @ 2006-03-18 14:54:36 by harbaum]
	  Improved USB error recovery

2006-03-10  tooly-bln

	* [r652]
	  [lcd4linux @ 2006-03-10 18:06:52 by tooly-bln]
	  replace drv_generic_graphic_FB with drv_generic_graphic_black

2006-02-27  reinelt

	* [r651]
	  [lcd4linux @ 2006-02-27 08:12:34 by reinelt]
	  use serdisplib's full color support

	* [r650]
	  [lcd4linux @ 2006-02-27 07:53:52 by reinelt]
	  some more graphic issues fixed

	* [r649]
	  [lcd4linux @ 2006-02-27 06:15:55 by reinelt]
	  indent...

	* [r648]
	  [lcd4linux @ 2006-02-27 06:14:46 by reinelt]
	  graphic bug resulting in all black pixels solved

2006-02-25  geronet

	* [r647]
	  [lcd4linux @ 2006-02-25 13:36:33 by geronet]
	  updated indent.sh, applied coding style

2006-02-24  geronet

	* [r646]
	  [lcd4linux @ 2006-02-24 13:07:10 by geronet]
	  hollow bars for graphic lcd's

2006-02-22  cmay

	* [r645]
	  [lcd4linux @ 2006-02-22 15:59:39 by cmay]
	  removed KEYPADSIZE cruft per harbaum's suggestion

2006-02-21  harbaum

	* [r644]
	  [lcd4linux @ 2006-02-21 21:43:03 by harbaum]
	  Keypad support for LCD2USB

2006-02-21  cmay

	* [r643]
	  [lcd4linux @ 2006-02-21 15:55:59 by cmay]
	  removed new update function for keypad, consolidated it with draw

	* [r642]
	  [lcd4linux @ 2006-02-21 15:52:30 by cmay]
	  added back CF635 GPO counts in model struct lost after last merge

2006-02-21  reinelt

	* [r641]
	  [lcd4linux @ 2006-02-21 05:50:34 by reinelt]
	  keypad support from Cris Maj

2006-02-19  reinelt

	* [r640]
	  [lcd4linux @ 2006-02-19 15:42:18 by reinelt]
	  file plugin from Chris Maj

	* [r639]
	  [lcd4linux @ 2006-02-19 15:37:38 by reinelt]
	  CF635 GPO patch from cmaj

	* [r638]
	  [lcd4linux @ 2006-02-19 07:20:53 by reinelt]
	  image support nearly finished

2006-02-12  harbaum

	* [r637]
	  [lcd4linux @ 2006-02-12 14:32:24 by harbaum]
	  Configurable bus/device id

2006-02-09  harbaum

	* [r636]
	  [lcd4linux @ 2006-02-09 20:32:49 by harbaum]
	  LCD2USB bus testing, version verification ...

2006-02-08  reinelt

	* [r635]
	  [lcd4linux @ 2006-02-08 04:55:03 by reinelt]
	  moved widget registration to drv_generic_graphic

2006-02-07  reinelt

	* [r634]
	  [lcd4linux @ 2006-02-07 05:36:13 by reinelt]
	  Layers added to Layout

2006-02-06  reinelt

	* [r633]
	  [lcd4linux @ 2006-02-06 06:29:30 by reinelt]
	  Image driver uses RGBA

2006-01-30  harbaum

	* [r632]
	  [lcd4linux @ 2006-01-30 20:21:51 by harbaum]
	  LCD2USB: Added support for displays with two controllers

2006-01-30  reinelt

	* [r631]
	  [lcd4linux @ 2006-01-30 12:53:07 by reinelt]
	  replaced strncpy with strcpy where possible

	* [r630]
	  [lcd4linux @ 2006-01-30 06:31:25 by reinelt]
	  ChangeLog

	* [r629]
	  [lcd4linux @ 2006-01-30 06:25:48 by reinelt]
	  added CVS Revision

	* [r628]
	  [lcd4linux @ 2006-01-30 06:17:17 by reinelt]
	  added CVS Revision

	* [r627]
	  [lcd4linux @ 2006-01-30 06:11:36 by reinelt]
	  changed Result->length to Result->size

	* [r626]
	  [lcd4linux @ 2006-01-30 05:47:34 by reinelt]
	  graphic subsystem changed to full-color RGBA

2006-01-28  harbaum

	* [r625]
	  [lcd4linux @ 2006-01-28 15:36:17 by harbaum]
	  Fix: string termination bug in eval()

2006-01-26  harbaum

	* [r624]
	  [lcd4linux @ 2006-01-26 19:26:26 by harbaum]
	  Added LCD2USB support

2006-01-23  reinelt

	* [r623]
	  [lcd4linux @ 2006-01-23 06:17:18 by reinelt]
	  timer widget added

2006-01-22  reinelt

	* [r622]
	  [lcd4linux @ 2006-01-22 10:01:09 by reinelt]
	  allow 'static' icons with speed=0

	* [r621]
	  [lcd4linux @ 2006-01-22 09:16:05 by reinelt]
	  Image Widget framework added

2006-01-21  reinelt

	* [r620]
	  [lcd4linux @ 2006-01-21 17:43:25 by reinelt]
	  minor cosmetic fixes

	* [r619]
	  [lcd4linux @ 2006-01-21 15:25:02 by reinelt]
	  GPIO subsystem in drivers.m4 added

	* [r618]
	  [lcd4linux @ 2006-01-21 13:26:43 by reinelt]
	  Logitech G-15 keyboard LCD driver from Dave Ingram

	* [r617]
	  [lcd4linux @ 2006-01-21 09:40:20 by reinelt]
	  Big Memory Leak in Evaluator fixed (thanks to Oliver Gehrke)

2006-01-20  reinelt

	* [r616]
	  [lcd4linux @ 2006-01-20 15:58:05 by reinelt]
	  MySQL::count() added again

	* [r615]
	  [lcd4linux @ 2006-01-20 15:43:25 by reinelt]
	  MySQL::query() returns a value, not the number of rows

2006-01-18  reinelt

	* [r614]
	  [lcd4linux @ 2006-01-18 11:49:48 by reinelt]
	  adopted to lcd-linux-0.9.2

2006-01-16  reinelt

	* [r613]
	  [lcd4linux @ 2006-01-16 15:39:58 by reinelt]
	  MySQL::queryvalue() extension from Harald Klemm

2006-01-06  tooly-bln

	* [r612]
	  [lcd4linux @ 2006-01-06 16:56:49 by tooly-bln]

2006-01-06  reinelt

	* [r611]
	  [lcd4linux @ 2006-01-06 08:12:19 by reinelt]
	  GPO's for Crystalfontz

	* [r610]
	  [lcd4linux @ 2006-01-06 07:06:57 by reinelt]
	  GPO's for RouterBoard

2006-01-05  reinelt

	* [r609]
	  [lcd4linux @ 2006-01-05 19:27:26 by reinelt]
	  HD44780 power supply from parport

	* [r608]
	  [lcd4linux @ 2006-01-05 18:56:57 by reinelt]
	  more GPO stuff

2006-01-05  nicowallmeier

	* [r607]
	  [lcd4linux @ 2006-01-05 15:53:45 by nicowallmeier]
	  fixed compatility with gcc 2.95

2006-01-03  reinelt

	* [r606]
	  [lcd4linux @ 2006-01-03 13:20:05 by reinelt]
	  LUIse driver added

	* [r605]
	  [lcd4linux @ 2006-01-03 06:13:44 by reinelt]
	  GPIO's for MatrixOrbital

2005-12-20  reinelt

	* [r604]
	  [lcd4linux @ 2005-12-20 07:07:43 by reinelt]
	  further work on GPO's, HD44780 GPO support

2005-12-19  reinelt

	* [r603]
	  [lcd4linux @ 2005-12-19 05:08:27 by reinelt]
	  GPO's added to the Sample driver

2005-12-18  reinelt

	* [r602]
	  [lcd4linux @ 2005-12-18 16:18:34 by reinelt]
	  GPO's added again

2005-12-13  reinelt

	* [r601]
	  [lcd4linux @ 2005-12-13 14:07:28 by reinelt]
	  LPH7508 driver finished

2005-12-12  reinelt

	* [r600]
	  [lcd4linux @ 2005-12-12 09:08:08 by reinelt]
	  finally removed old udelay code path; read timing values from
	  config

	* [r599]
	  [lcd4linux @ 2005-12-12 05:52:03 by reinelt]
	  type of delays is 'unsigned long'

2005-12-11  reinelt

	* [r598]
	  [lcd4linux @ 2005-12-11 14:55:28 by reinelt]
	  contrast range for BWCT is 0..255, not 0..100

2005-11-06  reinelt

	* [r597]
	  [lcd4linux @ 2005-11-06 09:54:43 by reinelt]
	  fixed icon size removed, uses XRES & YRES (I hope this doesn't
	  lead to problemes...)

	* [r596]
	  [lcd4linux @ 2005-11-06 09:17:20 by reinelt]
	  re-use icons (thanks to Jesus de Santos Garcia)

2005-11-05  reinelt

	* [r595]
	  [lcd4linux @ 2005-11-05 06:34:09 by reinelt]
	  README.Drivers removed

	* [r594]
	  [lcd4linux @ 2005-11-05 06:26:51 by reinelt]
	  littly typo corrected

2005-11-04  reinelt

	* [r593]
	  [lcd4linux @ 2005-11-04 14:10:38 by reinelt]
	  drv_Sample and drv_LPH7508

	* [r592]
	  [lcd4linux @ 2005-11-04 05:39:33 by reinelt]
	  README.Plugins removed

	* [r591]
	  [lcd4linux @ 2005-11-04 04:53:08 by reinelt]
	  sample plugin activated

	* [r590]
	  [lcd4linux @ 2005-11-04 04:44:52 by reinelt]
	  LPH7508 driver (not yet finished)

2005-10-02  reinelt

	* [r589]
	  [lcd4linux @ 2005-10-02 07:58:48 by reinelt]
	  HD44780 address setup time increased

2005-09-14  reinelt

	* [r588]
	  [lcd4linux @ 2005-09-14 15:08:32 by reinelt]
	  fixed drivers.m4 to link generic text driver for several displays
	  (thanks to Ludovic Gomez for pointing this out)

2005-09-07  reinelt

	* [r587]
	  [lcd4linux @ 2005-09-07 06:51:44 by reinelt]
	  Support for CF635 added

2005-09-02  reinelt

	* [r586]
	  [lcd4linux @ 2005-09-02 05:27:08 by reinelt]
	  double-fork daemonize patch from Petri Damsten

2005-08-27  reinelt

	* [r585]
	  [lcd4linux @ 2005-08-27 07:02:25 by reinelt]
	  LCD-Linux updated to 0.9.0

2005-08-22  reinelt

	* [r584]
	  [lcd4linux @ 2005-08-22 05:44:43 by reinelt]
	  new driver 'WincorNixdorf'
	  some fixes to the bar code

2005-08-21  reinelt

	* [r583]
	  [lcd4linux @ 2005-08-21 08:18:56 by reinelt]
	  CrystalFontz ACK processing

2005-08-20  reinelt

	* [r582]
	  [lcd4linux @ 2005-08-20 10:10:13 by reinelt]
	  TREFON patch from Stephan Trautvetter:
	  drv_TF_init: CHAR0 set to 0 instead of 1
	  drv_TF_write: combine the GOTO and the data into one packet
	  drv_TF_write: add GOTO-Case for resolutions 8x1/20x4 characters
	  drv_TF_start: test for existing resolutions from TREFON USB-LCDs
	  implemented
	  the use of 'asc255bug 1' is recommendable

2005-07-06  reinelt

	* [r581]
	  [lcd4linux @ 2005-07-06 04:40:18 by reinelt]
	  GCC-4 fixes

2005-06-19  reinelt

	* [r580]
	  [lcd4linux @ 2005-06-19 17:57:06 by reinelt]
	  cosmetics...

2005-06-15  reinelt

	* [r579]
	  [lcd4linux @ 2005-06-15 05:24:35 by reinelt]
	  updated LCD-Linux driver to version 0.8.9

2005-06-13  reinelt

	* [r578]
	  [lcd4linux @ 2005-06-13 03:43:46 by reinelt]
	  undo PPEXCL activation...

	* [r577]
	  [lcd4linux @ 2005-06-13 03:38:25 by reinelt]
	  try PPEXCL again, but ignore result

2005-06-11  reinelt

	* [r576]
	  [lcd4linux @ 2005-06-11 10:57:45 by reinelt]
	  changed version to 0.10.1-CVS

	* [r575]
	  [lcd4linux @ 2005-06-11 04:14:05 by reinelt]
	  final 0.10.0 release, Changelog updated

2005-06-10  reinelt

	* [r574]
	  [lcd4linux @ 2005-06-10 11:22:28 by reinelt]
	  double-check for X11 headers (AC_PATH_XTRA is buggy)

	* [r573]
	  [lcd4linux @ 2005-06-10 09:51:44 by reinelt]
	  depcomp removed

	* [r572]
	  [lcd4linux @ 2005-06-10 05:02:28 by reinelt]
	  ChangeLog

	* [r571]
	  [lcd4linux @ 2005-06-10 05:00:36 by reinelt]
	  version number set to 0.10.0

	* [r570]
	  [lcd4linux @ 2005-06-10 04:54:10 by reinelt]
	  removed ltmain.sh

	* [r569]
	  [lcd4linux @ 2005-06-10 04:53:44 by reinelt]
	  removed libtool and ltmain.sh

2005-06-09  reinelt

	* [r568]
	  [lcd4linux @ 2005-06-09 17:41:47 by reinelt]
	  M50530 fixes (many thanks to Szymon Bieganski)

2005-06-06  reinelt

	* [r567]
	  [lcd4linux @ 2005-06-06 09:24:07 by reinelt]
	  two bugs in plugin_mysql.c fixed

2005-06-03  reinelt

	* [r566]
	  [lcd4linux @ 2005-06-03 17:04:52 by reinelt]
	  hopefully solved the AM_PYTHON_PATH issue finally

	* [r565]
	  [lcd4linux @ 2005-06-03 04:45:57 by reinelt]
	  renamed AM_PYTHON to MY_PYTHON...

2005-06-01  reinelt

	* [r564]
	  [lcd4linux @ 2005-06-01 12:50:25 by reinelt]
	  ifdef'ed unused function to avoid compiler warning

	* [r563]
	  [lcd4linux @ 2005-06-01 12:46:31 by reinelt]
	  --with-python added to configure

	* [r562]
	  [lcd4linux @ 2005-06-01 12:09:11 by reinelt]
	  removed ^M from lcd4linux_i2c.h; indent.sh run

2005-06-01  pk_richman

	* [r561]
	  [lcd4linux @ 2005-06-01 11:17:54 by pk_richman]
	  marked unused parameters

2005-05-31  lfcorreia

	* [r560]
	  [lcd4linux @ 2005-05-31 21:30:56 by lfcorreia]
	  fix my email address

	* [r559]
	  [lcd4linux @ 2005-05-31 21:28:42 by lfcorreia]
	  fix typo

	* [r558]
	  [lcd4linux @ 2005-05-31 21:26:56 by lfcorreia]
	  fix my email address

	* [r557]
	  [lcd4linux @ 2005-05-31 21:06:36 by lfcorreia]
	  replace the accidently deleted Python detection code

	* [r556]
	  [lcd4linux @ 2005-05-31 20:42:54 by lfcorreia]
	  new file: lcd4linux_i2c.h
	  avoid the problems detecting the proper I2C kernel include files
	  
	  rearrange all the other autoconf stuff to remove I2C detection
	  
	  new method by Paul Kamphuis to write to the I2C device

2005-05-28  reinelt

	* [r555]
	  [lcd4linux @ 2005-05-28 09:08:30 by reinelt]
	  fixed plugins.m4 bug found by Martin

	* [r554]
	  [lcd4linux @ 2005-05-28 09:06:14 by reinelt]
	  serdisplib cosmetics

2005-05-13  reinelt

	* [r553]
	  [lcd4linux @ 2005-05-13 05:44:44 by reinelt]
	  ChangeLog updated

	* [r552]
	  [lcd4linux @ 2005-05-13 05:43:25 by reinelt]
	  added drv_LCDLinux.h to extra_sources

2005-05-12  reinelt

	* [r551]
	  [lcd4linux @ 2005-05-12 14:55:47 by reinelt]
	  plugins for serdisplib driver

	* [r550]
	  [lcd4linux @ 2005-05-12 05:52:43 by reinelt]
	  serdisplib GET_VERSION_MAJOR macro

2005-05-11  reinelt

	* [r549]
	  [lcd4linux @ 2005-05-11 04:27:49 by reinelt]
	  small serdisplib bugs fixed

2005-05-10  reinelt

	* [r548]
	  [lcd4linux @ 2005-05-10 13:20:10 by reinelt]
	  added serdisplib driver

2005-05-08  reinelt

	* [r547]
	  [lcd4linux @ 2005-05-08 04:32:43 by reinelt]
	  CodingStyle added and applied

2005-05-06  reinelt

	* [r546]
	  [lcd4linux @ 2005-05-06 06:41:53 by reinelt]
	  python2.4 added to python.m4

	* [r545]
	  [lcd4linux @ 2005-05-06 06:37:34 by reinelt]
	  hollow bar patch from geronet

	* [r544]
	  [lcd4linux @ 2005-05-06 05:40:02 by reinelt]
	  remove documentation pass#2

	* [r543]
	  [lcd4linux @ 2005-05-06 05:36:58 by reinelt]
	  removed documentation again :-(

2005-05-05  reinelt

	* [r542]
	  [lcd4linux @ 2005-05-05 08:36:12 by reinelt]
	  changed SELECT to SLCTIN

2005-05-04  obconseil

	* [r541]
	  [lcd4linux @ 2005-05-04 07:18:44 by obconseil]
	  Driver modified according to Michels's recommendations :
	  
	  - Suppressed linux/parport.h depandancy. It was not needed
	  anyway.
	  - Compile-time disable the wait_busy polling function, replaced
	  with a time wait.
	  - Replaced the hardwire_* calls by their wire_* equivalent, to
	  adapt other wirings.
	  - Created a "Models" structure, containing parameters for the
	  display.
	  - Other cleanups, to remove compile-time warnings.

2005-05-04  reinelt

	* [r540]
	  [lcd4linux @ 2005-05-04 06:13:05 by reinelt]
	  parport_wire_status() added

	* [r539]
	  [lcd4linux @ 2005-05-04 05:42:37 by reinelt]
	  Noritake driver added

	* [r538]
	  [lcd4linux @ 2005-05-04 05:22:12 by reinelt]
	  * replaced fprintf(stderr,... with error()
	  * corrected a "dangling reference" memory problem
	  * removed some PyErr_Print() spam
	  * fixed a segmentation fault that occured when python module was
	  not
	  found
	  * improved error messages

2005-05-03  reinelt

	* [r537]
	  [lcd4linux @ 2005-05-03 11:13:23 by reinelt]
	  rearranged autoconf a bit,
	  libX11 will be linked only if really needed (i.e. when the X11
	  driver has been selected)
	  plugin_python filled with life

2005-05-02  reinelt

	* [r536]
	  [lcd4linux @ 2005-05-02 10:29:20 by reinelt]
	  preparations for python bindings and python plugin

	* [r535]
	  [lcd4linux @ 2005-05-02 05:15:46 by reinelt]
	  make busy-flag checking configurable for LCD-Linux driver

2005-04-30  reinelt

	* [r534]
	  [lcd4linux @ 2005-04-30 06:02:09 by reinelt]
	  LCD-Linux display size set up from lcd4linux.conf

2005-04-24  reinelt

	* [r533]
	  [lcd4linux @ 2005-04-24 05:27:09 by reinelt]
	  Trefon Backlight added

	* [r532]
	  [lcd4linux @ 2005-04-24 04:41:28 by reinelt]
	  Changelog updated

	* [r531]
	  [lcd4linux @ 2005-04-24 04:33:46 by reinelt]
	  driver for TREFON USB LCD's added

2005-04-20  reinelt

	* [r530]
	  [lcd4linux @ 2005-04-20 05:49:21 by reinelt]
	  Changed the code to add some VT100-compatible control sequences
	  (see the comments above).
	  A configfile boolean option 'VT100_Support' (default to 1)
	  indicate if the display in
	  used support these control-sequences or not.

2005-04-09  reinelt

	* [r529]
	  [lcd4linux @ 2005-04-09 07:36:42 by reinelt]
	  updated LCD-Linux driver to version 0.8.8

2005-04-05  reinelt

	* [r528]
	  [lcd4linux @ 2005-04-05 06:57:39 by reinelt]
	  AC_CHECK_HEADERS corrected

	* [r527]
	  [lcd4linux @ 2005-04-05 05:12:48 by reinelt]
	  i2c patch from Paul (still does not work here :-(

	* [r526]
	  [lcd4linux @ 2005-04-05 04:46:06 by reinelt]
	  ceil/floor patch from Maxime

2005-04-04  nicowallmeier

	* [r525]
	  [lcd4linux @ 2005-04-04 20:11:14 by nicowallmeier]
	  to be compatible with gcc 2.95

2005-04-03  reinelt

	* [r524]
	  [lcd4linux @ 2005-04-03 07:07:43 by reinelt]
	  added statfs plugin

2005-04-02  reinelt

	* [r523]
	  [lcd4linux @ 2005-04-02 05:28:58 by reinelt]
	  fixed gcc4 warnings about signed/unsigned mismatches

2005-04-01  reinelt

	* [r522]
	  [lcd4linux @ 2005-04-01 05:16:04 by reinelt]
	  moved plugin init stuff to a seperate function called on first
	  use

2005-03-30  reinelt

	* [r521]
	  [lcd4linux @ 2005-03-30 04:57:50 by reinelt]
	  Evaluator speedup: use bsearch for finding functions and
	  variables

2005-03-28  reinelt

	* [r520]
	  [lcd4linux @ 2005-03-28 22:29:23 by reinelt]
	  HD44780 multiple displays patch from geronet

	* [r519]
	  [lcd4linux @ 2005-03-28 19:39:14 by reinelt]
	  HD44780/I2C patch from Luis merged (still does not work for me)

2005-03-25  reinelt

	* [r518]
	  [lcd4linux @ 2005-03-25 15:44:43 by reinelt]
	  HD44780 Backlight fixed (thanks to geronet)

2005-03-23  reinelt

	* [r517]
	  [lcd4linux @ 2005-03-23 12:23:35 by reinelt]
	  fixed some signed/unsigned char mismatches in the Crystalfontz
	  driver (ticket #12)

2005-02-24  reinelt

	* [r516]
	  [lcd4linux @ 2005-02-24 07:07:55 by reinelt]
	  ChangeLog

	* [r515]
	  [lcd4linux @ 2005-02-24 07:06:45 by reinelt]
	  SimpleLCD driver added

	* [r514]
	  [lcd4linux @ 2005-02-24 06:51:40 by reinelt]
	  LCD-Linux driver GOTO_COST corrected

2005-01-30  reinelt

	* [r513]
	  [lcd4linux @ 2005-01-30 06:43:22 by reinelt]
	  driver for LCD-Linux finished

2005-01-29  reinelt

	* [r512]
	  [lcd4linux @ 2005-01-29 09:30:56 by reinelt]
	  minor HD44780 cleanups

2005-01-22  reinelt

	* [r511]
	  [lcd4linux @ 2005-01-22 22:57:57 by reinelt]
	  LCD-Linux driver added

	* [r510]
	  [lcd4linux @ 2005-01-22 12:44:41 by reinelt]
	  MatrixOrbital backlight micro-fix

2005-01-18  reinelt

	* [r509]
	  [lcd4linux @ 2005-01-18 06:30:21 by reinelt]
	  added (C) to all copyright statements

2005-01-17  reinelt

	* [r508]
	  [lcd4linux @ 2005-01-17 06:38:48 by reinelt]
	  info about backlight and brightness

	* [r507]
	  [lcd4linux @ 2005-01-17 06:29:24 by reinelt]
	  added software-controlled backlight support to HD44780

2005-01-15  reinelt

	* [r506]
	  [lcd4linux @ 2005-01-15 13:13:57 by reinelt]
	  LCDTerm driver added, take 2

	* [r505]
	  [lcd4linux @ 2005-01-15 13:13:21 by reinelt]
	  LCDTerm section added to lcd4linux.conf.sample

	* [r504]
	  [lcd4linux @ 2005-01-15 13:10:13 by reinelt]
	  LCDTerm driver added

2005-01-11  reinelt

	* [r503]
	  [lcd4linux @ 2005-01-11 10:25:26 by reinelt]
	  further changes to lcd4linux.conf.sample

	* [r502]
	  [lcd4linux @ 2005-01-11 10:19:33 by reinelt]
	  changes to lcd4linux.conf.sample

2005-01-09  reinelt

	* [r501]
	  [lcd4linux @ 2005-01-09 10:57:25 by reinelt]
	  ChangeLog updated

	* [r500]
	  [lcd4linux @ 2005-01-09 10:53:22 by reinelt]
	  small type in plugin_uname fixed
	  new homepage lcd4linux.bulix.org

2005-01-06  reinelt

	* [r499]
	  [lcd4linux @ 2005-01-06 16:54:53 by reinelt]
	  M50530 fixes

2004-12-22  reinelt

	* [r498]
	  [lcd4linux @ 2004-12-22 20:24:00 by reinelt]
	  T6963 fix for displays > 8 rows

2004-11-30  reinelt

	* [r497]
	  [lcd4linux @ 2004-11-30 05:01:25 by reinelt]
	  removed compiler warnings for deactivated i2c bus

2004-11-29  reinelt

	* [r496]
	  [lcd4linux @ 2004-11-29 04:42:06 by reinelt]
	  removed the 99999 msec limit on widget update time (thanks to
	  Petri Damsten)

2004-11-28  reinelt

	* [r495]
	  [lcd4linux @ 2004-11-28 15:50:24 by reinelt]
	  Cwlinux fixes (invalidation of user-defined chars)

2004-10-17  reinelt

	* [r494]
	  [lcd4linux @ 2004-10-17 09:24:31 by reinelt]
	  I2C support for HD44780 displays by Luis (does not work by now)

2004-10-02  reinelt

	* [r493]
	  [lcd4linux @ 2004-10-02 09:31:55 by reinelt]
	  USBLCD driver modified to use libusb

2004-09-24  reinelt

	* [r492]
	  [lcd4linux @ 2004-09-24 21:40:52 by reinelt]
	  new driver for the BWCT USB LCD interface board.

2004-09-19  reinelt

	* [r491]
	  [lcd4linux @ 2004-09-19 09:31:19 by reinelt]
	  HD44780 busy flag checking improved: fall back to busy-waiting if
	  too many errors occur

2004-09-18  reinelt

	* [r490]
	  [lcd4linux @ 2004-09-18 15:58:57 by reinelt]
	  even more HD44780 cleanups, hardwiring for LCM-162

	* [r489]
	  [lcd4linux @ 2004-09-18 10:57:29 by reinelt]
	  more parport/i2c cleanups

	* [r488]
	  [lcd4linux @ 2004-09-18 09:48:29 by reinelt]
	  HD44780 cleanup and prepararation for I2C backend
	  LCM-162 submodel framework

	* [r487]
	  [lcd4linux @ 2004-09-18 08:22:59 by reinelt]
	  drv_generic_parport_status() to read status lines

2004-08-30  rjoco77

	* [r486]
	  [lcd4linux @ 2004-08-30 12:48:52 by rjoco77]
	  * Added backlight update immediatelly

2004-08-29  reinelt

	* [r485]
	  [lcd4linux @ 2004-08-29 20:07:55 by reinelt]
	  Patch from Joco: Make RouterBoard Backlight configurable

	* [r484]
	  [lcd4linux @ 2004-08-29 13:03:40 by reinelt]
	  added RouterBoard driver

2004-07-14  reinelt

	* [r483]
	  [lcd4linux @ 2004-07-14 04:44:44 by reinelt]
	  Beckmann+Egle fix
	  added smaple widget for the PPP plugin

2004-06-29  reinelt

	* [r482]
	  [lcd4linux @ 2004-06-29 04:49:30 by reinelt]
	  B+E enhanced port detection

2004-06-26  reinelt

	* [r481]
	  [lcd4linux @ 2004-06-26 12:04:59 by reinelt]
	  uh-oh... the last CVS log message messed up things a lot...

	* [r480]
	  [lcd4linux @ 2004-06-26 09:27:20 by reinelt]
	  added '-W' to CFLAGS
	  changed all C++ comments to C ones ('//' => '/* */')
	  cleaned up a lot of signed/unsigned mistakes

	* [r479]
	  [lcd4linux @ 2004-06-26 06:12:14 by reinelt]
	  support for Beckmann+Egle Compact Terminals
	  some mostly cosmetic changes in the MatrixOrbital and USBLCD
	  driver
	  added debugging to the generic serial driver
	  fixed a bug in the generic text driver where icons could be drawn
	  outside
	  the display bounds

2004-06-24  nicowallmeier

	* [r478]
	  [lcd4linux @ 2004-06-24 20:18:08 by nicowallmeier]
	  minor bugfix

2004-06-20  reinelt

	* [r477]
	  [lcd4linux @ 2004-06-20 10:12:27 by reinelt]
	  ChangeLog updated

	* [r476]
	  [lcd4linux @ 2004-06-20 10:09:52 by reinelt]
	  'const'ified the whole source

2004-06-19  reinelt

	* [r475]
	  [lcd4linux @ 2004-06-19 08:20:19 by reinelt]
	  compiler warning in image driver fixed
	  bar bug in USBLCD driver fixed

2004-06-17  reinelt

	* [r474]
	  [lcd4linux @ 2004-06-17 10:58:57 by reinelt]
	  changed plugin_netdev to use the new fast hash model

	* [r473]
	  [lcd4linux @ 2004-06-17 06:23:39 by reinelt]
	  hash handling rewritten to solve performance issues

2004-06-13  reinelt

	* [r472]
	  [lcd4linux @ 2004-06-13 01:12:52 by reinelt]
	  debug widgets changed (thanks to Andy Baxter)

2004-06-09  reinelt

	* [r471]
	  [lcd4linux @ 2004-06-09 06:40:29 by reinelt]
	  splash screen for T6963 driver

2004-06-08  reinelt

	* [r470]
	  [lcd4linux @ 2004-06-08 21:46:38 by reinelt]
	  splash screen for X11 driver (and generic graphic driver)

	* [r469]
	  [lcd4linux @ 2004-06-08 12:35:24 by reinelt]
	  autoconf/automake updates

2004-06-07  reinelt

	* [r468]
	  [lcd4linux @ 2004-06-07 07:02:13 by reinelt]
	  sample debugging widgets added

	* [r467]
	  [lcd4linux @ 2004-06-07 06:56:55 by reinelt]
	  added test plugin from Andy Baxter

2004-06-06  reinelt

	* [r466]
	  [lcd4linux @ 2004-06-06 06:51:59 by reinelt]
	  do not display end splash screen if quiet=1

2004-06-05  reinelt

	* [r465]
	  [lcd4linux @ 2004-06-05 14:56:48 by reinelt]
	  Cwlinux splash screen fixed
	  USBLCD splash screen fixed
	  plugin_i2c qprintf("%f") replaced with snprintf()

	* [r464]
	  [lcd4linux @ 2004-06-05 06:41:39 by reinelt]
	  chancged splash screen again

	* [r463]
	  [lcd4linux @ 2004-06-05 06:13:11 by reinelt]
	  splash screen for all text-based display drivers

2004-06-02  reinelt

	* [r462]
	  [lcd4linux @ 2004-06-02 10:09:22 by reinelt]
	  splash screen for HD44780

	* [r461]
	  [lcd4linux @ 2004-06-02 09:41:19 by reinelt]
	  prepared support for startup splash screen

	* [r460]
	  [lcd4linux @ 2004-06-02 05:56:25 by reinelt]
	  extended contrast range for Crystalfontz

	* [r459]
	  [lcd4linux @ 2004-06-02 05:35:55 by reinelt]
	  added i2c_sensors example to lcd4linux.conf.sample

	* [r458]
	  [lcd4linux @ 2004-06-02 05:27:59 by reinelt]
	  added documentation tree

	* [r457]
	  [lcd4linux @ 2004-06-02 05:14:16 by reinelt]
	  fixed models listing for Beckmann+Egle driver
	  some cosmetic changes

2004-06-01  reinelt

	* [r456]
	  [lcd4linux @ 2004-06-01 06:45:28 by reinelt]
	  some Fixme's processed
	  documented some code

	* [r455]
	  [lcd4linux @ 2004-06-01 06:04:25 by reinelt]
	  made README.Plugins and plugin_sample up to date.

2004-05-31  reinelt

	* [r454]
	  [lcd4linux @ 2004-05-31 21:23:16 by reinelt]
	  some cleanups in the MatrixOrbital driver

	* [r453]
	  [lcd4linux @ 2004-05-31 21:05:13 by reinelt]
	  fixed lots of bugs in the Cwlinux driver
	  do not emit EAGAIN error on the first retry
	  made plugin_i2c_sensors a bit less 'chatty'
	  moved init and exit functions to the bottom of plugin_pop3

	* [r452]
	  [lcd4linux @ 2004-05-31 16:39:05 by reinelt]
	  added NULL display driver (for debugging/profiling purposes)
	  added backlight/contrast initialisation for matrixOrbital
	  added Backlight initialisation for Cwlinux

	* [r451]
	  [lcd4linux @ 2004-05-31 06:27:34 by reinelt]
	  ChangeLog update

	* [r450]
	  [lcd4linux @ 2004-05-31 06:24:42 by reinelt]
	  fixed symlink security issue with the image driver

	* [r449]
	  [lcd4linux @ 2004-05-31 05:38:02 by reinelt]
	  fixed possible bugs with user-defined chars (clear high bits)
	  thanks to Andy Baxter for debugging the MilfordInstruments
	  driver!

2004-05-31  andy-b

	* [r448]
	  [lcd4linux @ 2004-05-31 01:31:01 by andy-b]
	  fixed bug in Milford Instruments driver which drew extra graphics
	  chars in
	  odd places when drawing double bars. (the display doesn't like it
	  if you put
	  the escape character 0xfe inside a define char sequence).

2004-05-30  reinelt

	* [r447]
	  [lcd4linux @ 2004-05-30 08:25:50 by reinelt]
	  Crystalfontz 631 driver finished

2004-05-29  reinelt

	* [r446]
	  [lcd4linux @ 2004-05-29 23:30:20 by reinelt]
	  fixed a compiler issue with drv_Image.c (thanks to Frank
	  Stratmann)

	* [r445]
	  [lcd4linux @ 2004-05-29 15:53:28 by reinelt]
	  M50530: reset parport signals on exit
	  plugin_ppp: ppp() has two parameters, not three
	  lcd4linux.conf.sample: diskstats() corrected

	* [r444]
	  [lcd4linux @ 2004-05-29 01:07:56 by reinelt]
	  bug in plugin_diskstats fixed

	* [r443]
	  [lcd4linux @ 2004-05-29 00:27:14 by reinelt]
	  added plugin_diskstats.c

2004-05-28  reinelt

	* [r442]
	  [lcd4linux @ 2004-05-28 14:38:10 by reinelt]
	  Status and Changelog Update

	* [r441]
	  [lcd4linux @ 2004-05-28 14:36:10 by reinelt]
	  added drv_BeckmannEgle.c (forgotten at first check in :-)

	* [r440]
	  [lcd4linux @ 2004-05-28 13:51:41 by reinelt]
	  ported driver for Beckmann+Egle Mini-Terminals
	  added 'flags' parameter to serial_init()

2004-05-27  nicowallmeier

	* [r439]
	  [lcd4linux @ 2004-05-27 06:29:29 by nicowallmeier]
	  Moved variables to Plugin:imon / Plugin:telmon

2004-05-27  reinelt

	* [r438]
	  [lcd4linux @ 2004-05-27 03:49:41 by reinelt]
	  Status update

	* [r437]
	  [lcd4linux @ 2004-05-27 03:39:47 by reinelt]
	  changed function naming scheme to plugin::function

2004-05-26  reinelt

	* [r436]
	  [lcd4linux @ 2004-05-26 11:37:35 by reinelt]
	  Curses driver ported.

	* [r435]
	  [lcd4linux @ 2004-05-26 05:03:24 by reinelt]
	  MilfordInstruments driver ported

2004-05-25  reinelt

	* [r434]
	  [lcd4linux @ 2004-05-25 19:54:11 by reinelt]
	  'make distcheck' bugs fixed
	  release number changed to 0.10.0-RC1

	* [r433]
	  [lcd4linux @ 2004-05-25 19:47:11 by reinelt]
	  Status updated
	  obsolete files removed

	* [r432]
	  [lcd4linux @ 2004-05-25 14:28:46 by reinelt]
	  Changelog updated

	* [r431]
	  [lcd4linux @ 2004-05-25 14:27:21 by reinelt]
	  added drv_Image.c (this time really!)

	* [r430]
	  [lcd4linux @ 2004-05-25 14:26:28 by reinelt]
	  added "Image" driver (was: Raster.c) for PPM and PNG creation
	  fixed some glitches in the X11 driver

	* [r429]
	  [lcd4linux @ 2004-05-25 06:42:31 by reinelt]
	  removed old sample config lcd4linux.conf.sample.old from CVS

2004-05-23  reinelt

	* [r428]
	  [lcd4linux @ 2004-05-23 08:58:30 by reinelt]
	  icon bug with USBLCD fixed

2004-05-22  reinelt

	* [r427]
	  [lcd4linux @ 2004-05-22 18:30:01 by reinelt]
	  added plugin 'uptime'

	* [r426]
	  [lcd4linux @ 2004-05-22 04:23:49 by reinelt]
	  removed 16*x fix again (next time think before commit :-)

	* [r425]
	  [lcd4linux @ 2004-05-22 04:21:02 by reinelt]
	  fix for display RAM layout on 16x4 displays (thanks to
	  toxicated101)

2004-05-20  reinelt

	* [r424]
	  [lcd4linux @ 2004-05-20 07:47:51 by reinelt]
	  added plugin_time

	* [r423]
	  [lcd4linux @ 2004-05-20 07:14:35 by reinelt]
	  made all local functions static

2004-05-19  reinelt

	* [r422]
	  [lcd4linux @ 2004-05-19 05:38:25 by reinelt]
	  removed AC_PROG_CXX (C++-Compiler) from configure

	* [r421]
	  [lcd4linux @ 2004-05-19 05:23:25 by reinelt]
	  plugin_isdn.c added (sorry, I forgot...)

2004-05-09  reinelt

	* [r420]
	  [lcd4linux @ 2004-05-09 05:41:41 by reinelt]
	  i2c fix for kernel 2.6.5 (temp_input1 vs. temp1_input) from
	  Xavier

2004-04-17  nicowallmeier

	* [r419]
	  [lcd4linux @ 2004-04-17 13:03:34 by nicowallmeier]
	  minor bugfix

2004-04-12  reinelt

	* [r418]
	  [lcd4linux @ 2004-04-12 11:12:24 by reinelt]
	  added plugin_isdn, removed old ISDN client
	  fixed some real bad bugs in the evaluator

	* [r417]
	  [lcd4linux @ 2004-04-12 05:59:24 by reinelt]
	  Status update

	* [r416]
	  [lcd4linux @ 2004-04-12 05:14:42 by reinelt]
	  another BIG FAT WARNING on the use of raw ports instead of ppdev

	* [r415]
	  [lcd4linux @ 2004-04-12 04:55:59 by reinelt]
	  emitted a BIG FAT WARNING if msr.h could not be found (and
	  therefore
	  the gettimeofday() delay loop would be used)

2004-04-11  reinelt

	* [r414]
	  [lcd4linux @ 2004-04-11 17:37:09 by reinelt]
	  forgot these files at last checkin... sorry!

2004-04-09  reinelt

	* [r413]
	  [lcd4linux @ 2004-04-09 06:23:28 by reinelt]
	  removed old exec stuff

	* [r412]
	  [lcd4linux @ 2004-04-09 06:09:54 by reinelt]
	  big configure rework from Xavier

2004-04-08  reinelt

	* [r411]
	  [lcd4linux @ 2004-04-08 11:59:26 by reinelt]
	  added plugin_pop3 from Javi

	* [r410]
	  [lcd4linux @ 2004-04-08 10:48:23 by reinelt]
	  finished plugin_exec
	  modified thread handling
	  added '%x' format to qprintf (hexadecimal)

2004-04-07  hejl

	* [r409]
	  [lcd4linux @ 2004-04-07 08:29:05 by hejl]
	  New plugin for wireless info

2004-03-21  reinelt

	* [r408]
	  [lcd4linux @ 2004-03-21 22:05:53 by reinelt]
	  MySQL plugin fixes from Javi

2004-03-20  reinelt

	* [r407]
	  [lcd4linux @ 2004-03-20 23:09:01 by reinelt]
	  MySQL plugin fixes from Javi

	* [r406]
	  [lcd4linux @ 2004-03-20 11:49:40 by reinelt]
	  forgot to add plugin_exec.c ...

	* [r405]
	  [lcd4linux @ 2004-03-20 07:31:32 by reinelt]
	  support for HD66712 (which has a different RAM layout)
	  further threading development

2004-03-19  reinelt

	* [r404]
	  [lcd4linux @ 2004-03-19 09:17:46 by reinelt]
	  removed the extra 'goto' function, row and col are additional
	  parameters
	  of the write() function now.

	* [r403]
	  [lcd4linux @ 2004-03-19 06:37:47 by reinelt]
	  asynchronous thread handling started

2004-03-14  reinelt

	* [r402]
	  [lcd4linux @ 2004-03-14 07:14:05 by reinelt]
	  old battery.[ch] files removed

	* [r401]
	  [lcd4linux @ 2004-03-14 07:11:42 by reinelt]
	  parameter count fixed for plugin_dvb()
	  plugin_APM (battery status) ported

	* [r400]
	  [lcd4linux @ 2004-03-14 06:07:33 by reinelt]
	  Status update.
	  Fixed bug in configure.in with X11 disabled (thanks to Kevin Liu)

2004-03-13  reinelt

	* [r399]
	  [lcd4linux @ 2004-03-13 19:06:01 by reinelt]
	  ChangeLog and Status update; small glitch in plugin_seti fixed.

2004-03-13  nicowallmeier

	* [r398]
	  [lcd4linux @ 2004-03-13 14:58:15 by nicowallmeier]
	  Added clean termination of imond-connection (now correctly)

	* [r397]
	  [lcd4linux @ 2004-03-13 14:55:14 by nicowallmeier]
	  Added clean termination of imond-connection

2004-03-13  reinelt

	* [r396]
	  [lcd4linux @ 2004-03-13 06:55:29 by reinelt]
	  (unnecessary) imon.h removed

	* [r395]
	  [lcd4linux @ 2004-03-13 06:49:20 by reinelt]
	  seti@home plugin ported to NextGeneration

2004-03-12  reinelt

	* [r394]
	  [lcd4linux @ 2004-03-12 13:58:14 by reinelt]
	  removed imon.c (has been replaced by plugin_imon.c)

2004-03-11  reinelt

	* [r393]
	  [lcd4linux @ 2004-03-11 06:39:58 by reinelt]
	  big patch from Martin:
	  - reuse filehandles
	  - memory leaks fixed
	  - earlier busy-flag checking with HD44780
	  - reuse memory for strings in RESULT and hash
	  - netdev_fast to wavid time-consuming regex

2004-03-10  reinelt

	* [r392]
	  [lcd4linux @ 2004-03-10 07:16:15 by reinelt]
	  MySQL plugin from Javier added

2004-03-08  hejl

	* [r391]
	  [lcd4linux @ 2004-03-08 18:46:21 by hejl]
	  Fixed bug introduced with "caching" the loadavg values

	* [r390]
	  [lcd4linux @ 2004-03-08 18:45:52 by hejl]
	  fixed segfault when using string concatenation

2004-03-08  reinelt

	* [r389]
	  [lcd4linux @ 2004-03-08 16:26:26 by reinelt]
	  re-introduced \nnn (octal) characters in strings
	  text widgets can have a 'update' speed of 0 which means 'never'
	  (may be used for static content)

	* [r388]
	  [lcd4linux @ 2004-03-08 04:33:08 by reinelt]
	  string concatenation fixed

2004-03-06  reinelt

	* [r387]
	  [lcd4linux @ 2004-03-06 20:31:16 by reinelt]
	  Complete rewrite of the evaluator to get rid of the code
	  from mark Morley (because of license issues).
	  The new Evaluator does a pre-compile of expressions, and
	  stores them in trees. Therefore it should be reasonable faster...

2004-03-03  hejl

	* [r386]
	  [lcd4linux @ 2004-03-03 08:40:07 by hejl]
	  Fixed memory leak in hash_get_regex

2004-03-03  reinelt

	* [r385]
	  [lcd4linux @ 2004-03-03 04:44:16 by reinelt]
	  changes (cosmetics?) to the big patch from Martin
	  hash patch un-applied

	* [r384]
	  [lcd4linux @ 2004-03-03 03:47:04 by reinelt]
	  big patch from Martin Hejl:
	  - use qprintf() where appropriate
	  - save CPU cycles on gettimeofday()
	  - add quit() functions to free allocated memory
	  - fixed lots of memory leaks

	* [r383]
	  [lcd4linux @ 2004-03-03 03:41:02 by reinelt]
	  Crystalfontz Contrast issue fixed

2004-03-01  reinelt

	* [r382]
	  [lcd4linux @ 2004-03-01 04:29:51 by reinelt]
	  cfg_number() returns -1 on error, 0 if value not found (but
	  default val used),
	  and 1 if value was used from the configuration.
	  HD44780 driver adopted to new cfg_number()
	  Crystalfontz 631 driver nearly finished

2004-02-29  reinelt

	* [r381]
	  [lcd4linux @ 2004-02-29 17:09:53 by reinelt]
	  ChangeLog updated
	  Version number bumped to 0.10.0

	* [r380]
	  [lcd4linux @ 2004-02-29 14:30:59 by reinelt]
	  icon visibility fix for generic graphics from Xavier

2004-02-27  reinelt

	* [r379]
	  [lcd4linux @ 2004-02-27 07:06:24 by reinelt]
	  new function 'qprintf()' (simple but quick snprintf()
	  replacement)

	* [r378]
	  [lcd4linux @ 2004-02-27 06:07:55 by reinelt]
	  hash improvements from Martin

2004-02-26  reinelt

	* [r377]
	  [lcd4linux @ 2004-02-26 21:42:45 by reinelt]
	  memory leak fixes from Martin

2004-02-24  reinelt

	* [r376]
	  [lcd4linux @ 2004-02-24 06:00:22 by reinelt]
	  Status and Todo list from Xavier

	* [r375]
	  [lcd4linux @ 2004-02-24 05:54:57 by reinelt]
	  X11 driver ported

2004-02-23  reinelt

	* [r374]
	  [lcd4linux @ 2004-02-23 06:44:27 by reinelt]
	  "Lightning" widget from Xavier (lcd4linux.conf.sample)
	  removed obsolete Docs.

2004-02-22  reinelt

	* [r373]
	  [lcd4linux @ 2004-02-22 17:35:41 by reinelt]
	  some fixes for generic graphic driver and T6963
	  removed ^M from plugin_imon (Nico, are you editing under
	  Windows?)

2004-02-18  nicowallmeier

	* [r372]
	  [lcd4linux @ 2004-02-18 14:45:42 by nicowallmeier]
	  Imon/Telmon plugin ported

2004-02-18  reinelt

	* [r371]
	  [lcd4linux @ 2004-02-18 06:39:20 by reinelt]
	  T6963 driver for graphic displays finished

2004-02-17  reinelt

	* [r370]
	  [lcd4linux @ 2004-02-17 05:37:20 by reinelt]
	  Namespace clash between Curses driver and general text driver
	  resolved
	  (thanks to Martin Hejl)

2004-02-16  reinelt

	* [r369]
	  [lcd4linux @ 2004-02-16 13:03:37 by reinelt]
	  compile problem with missing frontend.h fixed

	* [r368]
	  [lcd4linux @ 2004-02-16 08:19:44 by reinelt]
	  i2c_sensors patch from Xavier

2004-02-15  reinelt

	* [r367]
	  [lcd4linux @ 2004-02-15 21:43:43 by reinelt]
	  T6963 driver nearly finished
	  framework for graphic displays done
	  i2c_sensors patch from Xavier
	  some more old generation files removed

	* [r366]
	  [lcd4linux @ 2004-02-15 08:22:47 by reinelt]
	  ported USBLCD driver to NextGeneration
	  added drv_M50530.c (I forgot yesterday, sorry)
	  removed old drivers M50530.c and USBLCD.c

	* [r365]
	  [lcd4linux @ 2004-02-15 07:23:04 by reinelt]
	  bug in netdev parsing fixed

2004-02-14  nicowallmeier

	* [r364]
	  [lcd4linux @ 2004-02-14 12:07:27 by nicowallmeier]
	  minor bugfix

2004-02-14  reinelt

	* [r363]
	  [lcd4linux @ 2004-02-14 11:56:11 by reinelt]
	  M50530 driver ported
	  changed lots of 'char' to 'unsigned char'

	* [r362]
	  [lcd4linux @ 2004-02-14 10:09:50 by reinelt]
	  I2C Sensors for 2.4 kernels (/proc instead of /sysfs)

2004-02-10  reinelt

	* [r361]
	  [lcd4linux @ 2004-02-10 07:42:35 by reinelt]
	  cut off all old-style files which are no longer used with
	  NextGeneration

	* [r360]
	  [lcd4linux @ 2004-02-10 06:54:38 by reinelt]
	  DVB plugin ported

2004-02-09  nicowallmeier

	* [r359]
	  [lcd4linux @ 2004-02-09 19:49:38 by nicowallmeier]
	  Minor bugfix

2004-02-07  reinelt

	* [r358]
	  [lcd4linux @ 2004-02-07 13:45:23 by reinelt]
	  icon visibility patch #2 from Xavier

2004-02-05  mkeil

	* [r357]
	  [lcd4linux @ 2004-02-05 23:58:18 by mkeil]
	  Fixed/Optimized Hashage-timings

2004-02-05  reinelt

	* [r356]
	  [lcd4linux @ 2004-02-05 07:10:23 by reinelt]
	  evaluator function names are no longer case-sensitive
	  Crystalfontz Fan PWM control, Fan RPM monitoring, temperature
	  monitoring

2004-02-04  reinelt

	* [r355]
	  [lcd4linux @ 2004-02-04 19:11:44 by reinelt]
	  icon visibility patch from Xavier

	* [r354]
	  [lcd4linux @ 2004-02-04 19:10:51 by reinelt]
	  Crystalfontz driver nearly finished

2004-02-02  reinelt

	* [r353]
	  [lcd4linux @ 2004-02-02 05:22:16 by reinelt]
	  Brightness fpr Noritake Displays avaliable as a plugin

2004-02-01  reinelt

	* [r352]
	  [lcd4linux @ 2004-02-01 19:37:40 by reinelt]
	  got rid of every strtok() incarnation.

	* [r351]
	  [lcd4linux @ 2004-02-01 18:08:50 by reinelt]
	  removed strtok() from layout processing (took me hours to find
	  this bug)
	  further strtok() removind should be done!

2004-02-01  hejl

	* [r350]
	  [lcd4linux @ 2004-02-01 11:51:22 by hejl]
	  Fixes for busy flag

2004-02-01  reinelt

	* [r349]
	  [lcd4linux @ 2004-02-01 08:05:12 by reinelt]
	  Crystalfontz 633 extensions (CRC checking and stuff)
	  Models table for HD44780
	  Noritake VFD BVrightness patch from Bill Paxton

2004-01-30  reinelt

	* [r348]
	  [lcd4linux @ 2004-01-30 20:57:55 by reinelt]
	  HD44780 patch from Martin Hejl
	  dmalloc integrated

	* [r347]
	  [lcd4linux @ 2004-01-30 07:12:35 by reinelt]
	  HD44780 busy-flag support from Martin Hejl
	  loadavg() uClibc replacement from Martin Heyl
	  round() uClibc replacement from Martin Hejl
	  warning in i2c_sensors fixed
	  [

2004-01-29  reinelt

	* [r346]
	  [lcd4linux @ 2004-01-29 05:55:30 by reinelt]
	  check for /sys mounted

	* [r345]
	  [lcd4linux @ 2004-01-29 05:53:47 by reinelt]
	  uClibc compatibility issues from Martin Hejl

	* [r344]
	  [lcd4linux @ 2004-01-29 04:40:02 by reinelt]
	  every .c file includes "config.h" now

2004-01-28  reinelt

	* [r343]
	  [lcd4linux @ 2004-01-28 06:43:31 by reinelt]
	  plugin_ppp finished.

2004-01-27  reinelt

	* [r342]
	  [lcd4linux @ 2004-01-27 08:13:39 by reinelt]
	  ported PPP token to plugin_ppp

	* [r341]
	  [lcd4linux @ 2004-01-27 06:34:14 by reinelt]
	  Cwlinux driver portet to NextGeneration (compiles, but not
	  tested!)

	* [r340]
	  [lcd4linux @ 2004-01-27 05:06:10 by reinelt]
	  i2c update from Xavier

	* [r339]
	  [lcd4linux @ 2004-01-27 04:48:57 by reinelt]
	  bug with hash_age() fixed (thanks to Markus Keil for pointing
	  this out)

2004-01-25  reinelt

	* [r338]
	  [lcd4linux @ 2004-01-25 05:30:08 by reinelt]
	  plugin_netdev for parsing /proc/net/dev added

2004-01-23  reinelt

	* [r337]
	  [lcd4linux @ 2004-01-23 07:04:03 by reinelt]
	  icons finished!

	* [r336]
	  [lcd4linux @ 2004-01-23 04:53:23 by reinelt]
	  icon widget added (not finished yet!)

2004-01-22  reinelt

	* [r335]
	  [lcd4linux @ 2004-01-22 08:55:30 by reinelt]
	  fixed unhandled kernel-2.6 entries in /prco/stat

	* [r334]
	  [lcd4linux @ 2004-01-22 07:57:45 by reinelt]
	  several bugs fixed where segfaulting on layout>display
	  Crystalfontz driver optimized, 632 display already works

2004-01-21  reinelt

	* [r333]
	  [lcd4linux @ 2004-01-21 14:29:03 by reinelt]
	  new helper 'hash_get_regex' which delivers the sum over regex
	  matched items
	  new function 'disk()' which uses this regex matching

	* [r332]
	  [lcd4linux @ 2004-01-21 12:36:19 by reinelt]
	  Crystalfontz NextGeneration driver added

	* [r331]
	  [lcd4linux @ 2004-01-21 11:32:48 by reinelt]
	  changelog commited

	* [r330]
	  [lcd4linux @ 2004-01-21 11:31:23 by reinelt]
	  two bugs with hash_age() ixed

	* [r329]
	  [lcd4linux @ 2004-01-21 10:48:17 by reinelt]
	  hash_age function added

	* [r328]
	  [lcd4linux @ 2004-01-21 06:39:27 by reinelt]
	  HD44780 missed the "clear display' sequence
	  asc255bug handling added
	  HD44780 tested, works here!

2004-01-20  reinelt

	* [r327]
	  [lcd4linux @ 2004-01-20 15:32:48 by reinelt]
	  first version of Next Generation HD44780 (untested! but it
	  compiles...)
	  some cleanup in the other drivers

	* [r326]
	  [lcd4linux @ 2004-01-20 14:35:38 by reinelt]
	  drv_generic_parport added, code from parport.c

	* [r325]
	  [lcd4linux @ 2004-01-20 14:26:09 by reinelt]
	  moved drv_generic to drv_generic_serial

	* [r324]
	  [lcd4linux @ 2004-01-20 14:25:12 by reinelt]
	  some reorganization
	  moved drv_generic to drv_generic_serial
	  moved port locking stuff to drv_generic_serial

	* [r323]
	  [lcd4linux @ 2004-01-20 12:45:47 by reinelt]
	  "Default screen" working with MatrixOrbital

	* [r322]
	  [lcd4linux @ 2004-01-20 05:36:59 by reinelt]
	  moved text-display-specific stuff to drv_generic_text
	  moved all the bar stuff from drv_generic_bar to generic_text

	* [r321]
	  [lcd4linux @ 2004-01-20 04:51:39 by reinelt]
	  moved generic stuff from drv_MatrixOrbital to drv_generic
	  implemented new-stylish bars which are nearly finished

2004-01-18  reinelt

	* [r320]
	  [lcd4linux @ 2004-01-18 21:25:16 by reinelt]
	  Framework for bar widget opened

	* [r319]
	  [lcd4linux @ 2004-01-18 09:01:45 by reinelt]
	  /proc/stat parsing finished

	* [r318]
	  [lcd4linux @ 2004-01-18 06:54:08 by reinelt]
	  bug in expr.c fixed (thanks to Xavier)
	  some progress with /proc/stat parsing

2004-01-16  reinelt

	* [r317]
	  [lcd4linux @ 2004-01-16 11:12:26 by reinelt]
	  some bugs in plugin_xmms fixed, parsing moved to own function
	  plugin_proc_stat nearly finished

2004-01-16  mkeil

	* [r316]
	  [lcd4linux @ 2004-01-16 10:09:49 by mkeil]
	  -include caching for values

2004-01-16  reinelt

	* [r315]
	  [lcd4linux @ 2004-01-16 07:26:25 by reinelt]
	  moved various /proc parsing to own functions
	  made some progress with /proc/stat parsing

	* [r314]
	  [lcd4linux @ 2004-01-16 05:04:53 by reinelt]
	  started plugin proc_stat which should parse /proc/stat
	  which again is a paint in the a**
	  thinking over implementation methods of delta functions
	  (CPU load, ...)

2004-01-15  reinelt

	* [r313]
	  [lcd4linux @ 2004-01-15 07:47:02 by reinelt]
	  debian/ postinst and watch added (did CVS forget about them?)
	  evaluator: conditional expressions (a?b:c) added
	  text widget nearly finished

	* [r312]
	  [lcd4linux @ 2004-01-15 04:32:14 by reinelt]

	* [r311]
	  [lcd4linux @ 2004-01-15 04:29:45 by reinelt]
	  moved lcd4linux.conf.sample to *.old
	  lcd4linux.conf.sample with new layout
	  new plugins 'loadavg' and 'meminfo'
	  text widget have pre- and postfix

2004-01-14  reinelt

	* [r310]
	  [lcd4linux @ 2004-01-14 11:33:00 by reinelt]
	  new plugin 'uname' which does what it's called
	  text widget nearly finished
	  first results displayed on MatrixOrbital

2004-01-13  reinelt

	* [r309]
	  [lcd4linux @ 2004-01-13 10:03:01 by reinelt]
	  new util 'hash' for associative arrays
	  new plugin 'cpuinfo'

	* [r308]
	  [lcd4linux @ 2004-01-13 08:18:07 by reinelt]
	  timer queues added
	  liblcd4linux deactivated turing transformation to new layout

2004-01-12  reinelt

	* [r307]
	  [lcd4linux @ 2004-01-12 03:51:01 by reinelt]
	  evaluating the 'Variables' section in the config file

2004-01-11  reinelt

	* [r306]
	  [lcd4linux @ 2004-01-11 18:26:02 by reinelt]
	  further widget and layout processing

	* [r305]
	  [lcd4linux @ 2004-01-11 09:26:15 by reinelt]
	  layout starts to exist...

2004-01-10  reinelt

	* [r304]
	  [lcd4linux @ 2004-01-10 20:22:33 by reinelt]
	  added new function 'cfg_list()' (not finished yet)
	  added layout.c (will replace processor.c someday)
	  added widget_text.c (will be the first and most important widget)
	  modified lcd4linux.c so that old-style configs should work, too

	* [r303]
	  [lcd4linux @ 2004-01-10 17:45:26 by reinelt]
	  changed initialization order so cfg() gets initialized before
	  plugins.
	  This way a plugin's init() can use cfg_get().
	  Thanks to Xavier for reporting this one!

	* [r302]
	  [lcd4linux @ 2004-01-10 17:36:56 by reinelt]
	  I2C Sensors plugin from Xavier added

	* [r301]
	  [lcd4linux @ 2004-01-10 17:34:40 by reinelt]
	  further matrixOrbital changes
	  widgets initialized

	* [r300]
	  [lcd4linux @ 2004-01-10 10:20:22 by reinelt]
	  new MatrixOrbital changes

2004-01-09  reinelt

	* [r299]
	  [lcd4linux @ 2004-01-09 17:03:06 by reinelt]
	  initiated transfer to new driver architecture
	  new file 'drv.c' will someday replace 'display.c'
	  new file 'drv_MatrixOrbital.c' will replace 'MatrixOrbital.c'
	  due to this 'soft' transfer lcd4linux should stay usable during
	  the switch
	  (at least I hope so)

	* [r298]
	  [lcd4linux @ 2004-01-09 04:16:06 by reinelt]
	  added 'section' argument to cfg_get(), but NULLed it on all calls
	  by now.

2004-01-08  reinelt

	* [r297]
	  [lcd4linux @ 2004-01-08 06:00:28 by reinelt]
	  allowed '.' in key names
	  allowed empty group keys (not only "group anything {", but
	  "anything {")

	* [r296]
	  [lcd4linux @ 2004-01-08 05:28:12 by reinelt]
	  Luk Claes added to AUTHORS
	  cfg: group handling ('{}') added

2004-01-07  reinelt

	* [r295]
	  [lcd4linux @ 2004-01-07 10:15:41 by reinelt]
	  small glitch in evaluator fixed
	  made config table sorted and access with bsearch(),
	  which should be much faster

2004-01-06  reinelt

	* [r294]
	  [lcd4linux @ 2004-01-06 23:01:37 by reinelt]
	  more copyright issues

	* [r293]
	  [lcd4linux @ 2004-01-06 22:33:13 by reinelt]
	  Copyright statements cleaned up

	* [r292]
	  [lcd4linux @ 2004-01-06 21:14:51 by reinelt]
	  more debianizing

	* [r291]
	  [lcd4linux @ 2004-01-06 18:22:41 by reinelt]
	  debian updates

	* [r290]
	  [lcd4linux @ 2004-01-06 17:56:43 by reinelt]
	  autotools update

	* [r289]
	  [lcd4linux @ 2004-01-06 17:37:00 by reinelt]

	* [r288]
	  [lcd4linux @ 2004-01-06 17:33:45 by reinelt]
	  Evaluator: functions with variable argument lists
	  Evaluator: plugin_sample.c and README.Plugins added

	* [r287]
	  [lcd4linux @ 2004-01-06 15:19:12 by reinelt]
	  Evaluator rearrangements...

2004-01-05  reinelt

	* [r286]
	  [lcd4linux @ 2004-01-05 11:57:38 by reinelt]
	  added %y tokens to make the Evaluator useable

2004-01-02  reinelt

	* [r285]
	  [lcd4linux @ 2004-01-02 14:20:15 by reinelt]
	  debianization added

	* [r284]
	  [lcd4linux @ 2004-01-02 14:18:54 by reinelt]
	  Changelog, TODO updated

2003-12-19  reinelt

	* [r283]
	  [lcd4linux @ 2003-12-19 06:27:33 by reinelt]
	  added XMMS plugin from Markus Keil

	* [r282]
	  [lcd4linux @ 2003-12-19 05:56:13 by reinelt]
	  added .cvsignore containing '*.lo'

	* [r281]
	  [lcd4linux @ 2003-12-19 05:50:34 by reinelt]
	  added plugin_math.c and plugin_string.c

	* [r280]
	  [lcd4linux @ 2003-12-19 05:49:23 by reinelt]
	  extracted plugin_math and plugin_string into extra files

	* [r279]
	  [lcd4linux @ 2003-12-19 05:35:13 by reinelt]
	  renamed 'client' to 'plugin'

2003-12-01  reinelt

	* [r278]
	  [lcd4linux @ 2003-12-01 07:08:50 by reinelt]
	  Patches from Xavier:
	  - WiFi: make interface configurable
	  - "quiet" as an option from the config file
	  - ignore missing "MemShared" on Linux 2.6

2003-11-30  reinelt

	* [r277]
	  [lcd4linux @ 2003-11-30 16:18:36 by reinelt]
	  Cwlinux: invalidate Framebuffer in case a char got redefined

2003-11-28  nicowallmeier

	* [r276]
	  [lcd4linux @ 2003-11-28 18:34:55 by nicowallmeier]
	  Minor bugfixes

2003-11-24  reinelt

	* [r275]
	  [lcd4linux @ 2003-11-24 11:34:54 by reinelt]
	  'Fixed' Rows which do not scroll by Lars Kempe
	  temporary workaround for debian kernel-header bug

2003-11-16  reinelt

	* [r274]
	  [lcd4linux @ 2003-11-16 09:45:49 by reinelt]
	  Crystalfontz changes, small glitch in getopt() fixed

2003-11-14  reinelt

	* [r273]
	  [lcd4linux @ 2003-11-14 05:59:37 by reinelt]
	  added wifi.c wifi.h which have been forgotten at the last checkin

2003-11-12  reinelt

	* [r272]
	  [lcd4linux @ 2003-11-12 05:42:35 by reinelt]
	  small changes to the 16x4 handling

2003-11-11  reinelt

	* [r271]
	  [lcd4linux @ 2003-11-11 04:40:20 by reinelt]
	  WIFI patch from Xavier Vello

	* [r270]
	  [lcd4linux @ 2003-11-11 04:30:41 by reinelt]
	  very minor changes

2003-10-27  reinelt

	* [r269]
	  [lcd4linux @ 2003-10-27 09:05:42 by reinelt]
	  README.Rows, README.Tokens, lcd4linux.conf.sample from Thomas
	  Siedentopf

2003-10-22  reinelt

	* [r268]
	  [lcd4linux @ 2003-10-22 04:32:25 by reinelt]
	  fixed icon bug found by Rob van Nieuwkerk

	* [r267]
	  [lcd4linux @ 2003-10-22 04:19:16 by reinelt]
	  Makefile.in for imon.c/.h, some MatrixOrbital clients

2003-10-12  nicowallmeier

	* [r266]
	  [lcd4linux @ 2003-10-12 06:08:28 by nicowallmeier]
	  imond/telmond support

2003-10-12  reinelt

	* [r265]
	  [lcd4linux @ 2003-10-12 04:46:19 by reinelt]
	  first try to integrate the Evaluator into a display driver
	  (MatrixOrbital here)
	  small warning in processor.c fixed (thanks to Zachary Giles)
	  workaround for udelay() on alpha (no msr.h avaliable) (thanks to
	  Zachary Giles)

2003-10-11  reinelt

	* [r264]
	  [lcd4linux @ 2003-10-11 06:01:52 by reinelt]
	  renamed expression.{c,h} to client.{c,h}
	  added config file client
	  new functions 'AddNumericVariable()' and 'AddStringVariable()'
	  new parameter '-i' for interactive mode

2003-10-08  reinelt

	* [r263]
	  [lcd4linux @ 2003-10-08 14:21:10 by reinelt]
	  Changelog; small type in parport.c

2003-10-08  andy-b

	* [r262]
	  [lcd4linux @ 2003-10-08 13:39:53 by andy-b]
	  Cleaned up code in MilfordInstruments.c, and added descriptions
	  for other display sizes (untested)

2003-10-08  nicowallmeier

	* [r261]
	  [lcd4linux @ 2003-10-08 06:48:47 by nicowallmeier]
	  special handling for 16x4 displays

	* [r260]
	  [lcd4linux @ 2003-10-08 06:45:00 by nicowallmeier]
	  Support of two displays of the same size

2003-10-07  reinelt

	* [r259]
	  [lcd4linux @ 2003-10-07 04:12:38 by reinelt]
	  AM_PROG_LIBTOOL removed

2003-10-06  reinelt

	* [r258]
	  [lcd4linux @ 2003-10-06 05:51:15 by reinelt]
	  functions: min(), max()

	* [r257]
	  [lcd4linux @ 2003-10-06 05:47:27 by reinelt]
	  operators: ==, \!=, <=, >=

	* [r256]
	  [lcd4linux @ 2003-10-06 04:34:06 by reinelt]
	  expression evaluator added

	* [r255]
	  [lcd4linux @ 2003-10-06 04:33:06 by reinelt]
	  files 'libtool' and 'bootstrap' added

	* [r254]
	  [lcd4linux @ 2003-10-06 04:30:43 by reinelt]
	  libtool stuff again...

2003-10-05  reinelt

	* [r253]
	  [lcd4linux @ 2003-10-05 17:58:50 by reinelt]
	  libtool junk; copyright messages cleaned up

2003-10-04  reinelt

	* [r252]
	  [lcd4linux @ 2003-10-04 07:54:17 by reinelt]
	  autoconf/automake/libtool fixes from Ronald Landheer-Cieslak

2003-10-03  reinelt

	* [r251]
	  [lcd4linux @ 2003-10-03 03:53:12 by reinelt]
	  compile error in parport fixed (thanks to Andrew from FilmCan)

	* [r250]
	  [lcd4linux @ 2003-10-03 03:51:14 by reinelt]
	  start support for new MatrixOrbital MX2 displays

2003-09-29  reinelt

	* [r249]
	  [lcd4linux @ 2003-09-29 06:58:36 by reinelt]
	  new driver for Milford Instruments MI420 by Andy Baxter

	* [r248]
	  [lcd4linux @ 2003-09-29 06:12:56 by reinelt]
	  changed default HD44780 wiring: unused signals are GND

2003-09-21  reinelt

	* [r247]
	  [lcd4linux @ 2003-09-21 06:43:02 by reinelt]
	  MatrixOrbital: bidirectional communication
	  HD44780: special handling for 16x1 displays (thanks to anonymous
	  bug report on sf.net)

2003-09-19  reinelt

	* [r246]
	  [lcd4linux @ 2003-09-19 08:40:32 by reinelt]
	  increased version number to 0.9.12
	  port locking is done as /var/lock/LCK..usb_tts_0 for
	  /dev/usb/tts/0

	* [r245]
	  [lcd4linux @ 2003-09-19 03:51:29 by reinelt]
	  minor fixes, widget.c added

2003-09-13  reinelt

	* [r244]
	  [lcd4linux @ 2003-09-13 07:20:51 by reinelt]
	  Changelog

	* [r243]
	  [lcd4linux @ 2003-09-13 06:45:43 by reinelt]
	  icons for all remaining drivers

	* [r242]
	  [lcd4linux @ 2003-09-13 06:20:39 by reinelt]
	  HD44780 timings changed; deactivated libtool

2003-09-11  reinelt

	* [r241]
	  [lcd4linux @ 2003-09-11 15:05:24 by reinelt]
	  missing files for autoconf/automake/libtool

	* [r240]
	  [lcd4linux @ 2003-09-11 04:09:52 by reinelt]
	  minor cleanups

2003-09-10  reinelt

	* [r239]
	  [lcd4linux @ 2003-09-10 15:59:39 by reinelt]
	  minor cleanups

	* [r238]
	  [lcd4linux @ 2003-09-10 15:09:21 by reinelt]
	  ChangeLog

	* [r237]
	  [lcd4linux @ 2003-09-10 14:01:52 by reinelt]
	  icons nearly finished\!

	* [r236]
	  [lcd4linux @ 2003-09-10 08:37:09 by reinelt]
	  icons: reorganized tick_* again...

	* [r235]
	  [lcd4linux @ 2003-09-10 03:48:22 by reinelt]
	  Icons for M50530, new processing scheme (Ticks.Text...)

2003-09-09  reinelt

	* [r234]
	  [lcd4linux @ 2003-09-09 11:47:47 by reinelt]
	  basic icon support for HD44780

	* [r233]
	  [lcd4linux @ 2003-09-09 06:54:43 by reinelt]
	  new function 'cfg_number()'

	* [r232]
	  [lcd4linux @ 2003-09-09 05:30:33 by reinelt]
	  even more icons stuff

2003-09-01  reinelt

	* [r231]
	  [lcd4linux @ 2003-09-01 07:07:03 by reinelt]
	  shared liblcd4linux

	* [r230]
	  [lcd4linux @ 2003-09-01 04:09:34 by reinelt]
	  icons nearly finished, but MatrixOrbital only

2003-08-24  reinelt

	* [r229]
	  [lcd4linux @ 2003-08-24 05:28:31 by reinelt]
	  ChangeLog

	* [r228]
	  [lcd4linux @ 2003-08-24 05:17:58 by reinelt]
	  liblcd4linux patch from Patrick Schemitz

	* [r227]
	  [lcd4linux @ 2003-08-24 04:31:56 by reinelt]
	  icon.c icon.h added

2003-08-22  reinelt

	* [r226]
	  [lcd4linux @ 2003-08-22 03:45:08 by reinelt]
	  bug in parallel port code fixed, more icons stuff

2003-08-20  reinelt

	* [r225]
	  [lcd4linux @ 2003-08-20 05:26:43 by reinelt]
	  small bug in bar compaction fixed

2003-08-19  reinelt

	* [r224]
	  [lcd4linux @ 2003-08-19 05:23:55 by reinelt]
	  HD44780 dual-controller patch from Jesse Brook Kovach

	* [r223]
	  [lcd4linux @ 2003-08-19 04:28:41 by reinelt]
	  more Icon stuff, minor glitches fixed

2003-08-17  reinelt

	* [r222]
	  [lcd4linux @ 2003-08-17 16:37:39 by reinelt]
	  more icon framework

	* [r221]
	  [lcd4linux @ 2003-08-17 12:11:58 by reinelt]
	  framework for icons prepared

	* [r220]
	  [lcd4linux @ 2003-08-17 08:25:30 by reinelt]
	  preparations for liblcd4linux; minor bugs in SIN.c and Skeleton.c

	* [r219]
	  [lcd4linux @ 2003-08-17 06:57:04 by reinelt]
	  complete rewrite of the Crystalfontz driver

	* [r218]
	  [lcd4linux @ 2003-08-17 04:38:57 by reinelt]
	  added config.guess

2003-08-16  reinelt

	* [r217]
	  [lcd4linux @ 2003-08-16 07:31:35 by reinelt]
	  double buffering in all drivers

2003-08-15  reinelt

	* [r216]
	  [lcd4linux @ 2003-08-15 07:54:07 by reinelt]
	  HD44780 4 bit mode implemented

2003-08-14  reinelt

	* [r215]
	  [lcd4linux @ 2003-08-14 04:59:30 by reinelt]
	  changed version to 0.9.11, added curses.m4 to Makefile.am

	* [r214]
	  [lcd4linux @ 2003-08-14 03:48:54 by reinelt]
	  ChangeLog

	* [r213]
	  [lcd4linux @ 2003-08-14 03:47:40 by reinelt]
	  remove PID file if driver initialisation fails

2003-08-12  reinelt

	* [r212]
	  [lcd4linux @ 2003-08-12 05:10:31 by reinelt]
	  first version of HD44780 4Bit-Mode patch

2003-08-11  reinelt

	* [r211]
	  [lcd4linux @ 2003-08-11 04:51:28 by reinelt]
	  another uClibc issue: realloc

2003-08-08  reinelt

	* [r210]
	  [lcd4linux @ 2003-08-08 23:11:34 by reinelt]

	* [r209]
	  [lcd4linux @ 2003-08-08 23:08:38 by reinelt]
	  CVS Id and Log missing from dvb.{c,h}

	* [r208]
	  [lcd4linux @ 2003-08-08 08:05:23 by reinelt]
	  added PID file handling

	* [r207]
	  [lcd4linux @ 2003-08-08 06:58:06 by reinelt]
	  improved forking

	* [r206]
	  [lcd4linux @ 2003-08-08 05:42:51 by reinelt]
	  uClibc compatibility issue; small glitch in dvb.c

2003-08-01  reinelt

	* [r205]
	  [lcd4linux @ 2003-08-01 05:15:42 by reinelt]
	  last cleanups for 0.9.9

2003-07-29  reinelt

	* [r204]
	  [lcd4linux @ 2003-07-29 04:56:13 by reinelt]
	  disable Raster driver automagically if gd.h not found

2003-07-28  reinelt

	* [r203]
	  [lcd4linux @ 2003-07-28 08:22:17 by reinelt]
	  several README's moved to web page

2003-07-24  reinelt

	* [r202]
	  [lcd4linux @ 2003-07-24 04:48:09 by reinelt]
	  'soft clear' needed for virtual rows

2003-07-21  reinelt

	* [r201]
	  [lcd4linux @ 2003-07-21 06:34:14 by reinelt]
	  bars on virtual rows fixed

	* [r200]
	  [lcd4linux @ 2003-07-21 06:10:11 by reinelt]
	  removed maxlen parameter from process_row()

	* [r199]
	  [lcd4linux @ 2003-07-21 05:56:48 by reinelt]
	  check for HAVE_LINUX_DVB_FRONTEND_H needs config.h

2003-07-19  reinelt

	* [r198]
	  [lcd4linux @ 2003-07-19 09:42:42 by reinelt]
	  check for dvb/frontend.h and disable DVB client if not found.

2003-07-18  reinelt

	* [r197]
	  [lcd4linux @ 2003-07-18 04:43:14 by reinelt]
	  udelay: unnecessary sanity check removed

2003-06-26  reinelt

	* [r196]
	  [lcd4linux @ 2003-06-26 05:31:16 by reinelt]
	  bug in /proc/net/dev parsing fixed

2003-06-22  reinelt

	* [r195]
	  [lcd4linux @ 2003-06-22 19:31:24 by reinelt]
	  added dvb.c dvb.h

2003-06-21  reinelt

	* [r194]
	  [lcd4linux @ 2003-06-21 05:46:18 by reinelt]
	  DVB client integrated

2003-06-13  reinelt

	* [r193]
	  [lcd4linux @ 2003-06-13 06:35:56 by reinelt]
	  added scrolling capability

	* [r192]
	  [lcd4linux @ 2003-06-13 05:11:10 by reinelt]
	  error message cosmetics

2003-05-19  reinelt

	* [r191]
	  [lcd4linux @ 2003-05-19 05:55:17 by reinelt]
	  Cwlinux sleep optimization

2003-05-14  reinelt

	* [r190]
	  [lcd4linux @ 2003-05-14 06:17:39 by reinelt]
	  added support for CW1602

2003-04-12  reinelt

	* [r189]
	  [lcd4linux @ 2003-04-12 16:23:10 by reinelt]
	  small glitch in XWindow.c (thanks to Moe Wibble)

2003-04-07  reinelt

	* [r188]
	  [lcd4linux @ 2003-04-07 06:02:58 by reinelt]
	  further parallel port abstraction

2003-04-04  reinelt

	* [r187]
	  [lcd4linux @ 2003-04-04 06:01:59 by reinelt]
	  new parallel port abstraction scheme

2003-02-27  reinelt

	* [r186]
	  [lcd4linux @ 2003-02-27 07:48:57 by reinelt]
	  changed versioning scheme from 0.99 to 0.9.9

	* [r185]
	  [lcd4linux @ 2003-02-27 07:43:10 by reinelt]
	  asm/msr.h: included hard-coded definition of rdtscl() if msr.h
	  cannot be found.
	  
	  autoconf/automake/autoanything: switched back to 1.4. Hope it
	  works again.

2003-02-24  reinelt

	* [r184]
	  [lcd4linux @ 2003-02-24 04:50:57 by reinelt]
	  cwlinux fixes

2003-02-22  reinelt

	* [r183]
	  [lcd4linux @ 2003-02-22 07:53:09 by reinelt]
	  cfg_get(key,defval)

	* [r182]
	  [lcd4linux @ 2003-02-22 07:23:24 by reinelt]
	  Cwlinux fixes

2003-02-18  reinelt

	* [r181]
	  [lcd4linux @ 2003-02-18 06:13:44 by reinelt]
	  X11 driver fixes and cleanup

2003-02-17  reinelt

	* [r180]
	  [lcd4linux @ 2003-02-17 06:06:12 by reinelt]
	  small bug in X11 driver: omit pixel gap between cahracters

	* [r179]
	  [lcd4linux @ 2003-02-17 04:27:58 by reinelt]
	  Text (curses) driver: cosmetic changes

2003-02-13  reinelt

	* [r178]
	  [lcd4linux @ 2003-02-13 10:40:17 by reinelt]
	  changed "copyright" to "2003"
	  added slightly different protocol for MatrixOrbital "LK202"
	  displays

2003-02-05  reinelt

	* [r177]
	  [lcd4linux @ 2003-02-05 04:31:38 by reinelt]
	  T_EXEC: remove trailing CR/LF
	  T_EXEC: deactivated maxlen calculation (for I don't understand
	  what it is for :-)

2003-01-12  reinelt

	* [r176]
	  [lcd4linux @ 2003-01-12 06:51:27 by reinelt]
	  fixed bug in bar compaction

2002-12-08  reinelt

	* [r175]
	  [lcd4linux @ 2002-12-08 07:36:06 by reinelt]
	  autoconf/automake cleanup

2002-12-06  reinelt

	* [r174]
	  [lcd4linux @ 2002-12-06 07:38:43 by reinelt]
	  libgd/libpng bugfix: removed '-lpng -lz' from LDFLAGS

2002-12-05  reinelt

	* [r173]
	  [lcd4linux @ 2002-12-05 19:23:01 by reinelt]
	  fixed undefined operations found by gcc3

	* [r172]
	  [lcd4linux @ 2002-12-05 19:12:47 by reinelt]
	  sensors factor and offset patch from Petri Damsten
	  <petri.damsten@raketti.net>

	* [r171]
	  [lcd4linux @ 2002-12-05 19:09:57 by reinelt]
	  patches for gcc-3.2

2002-09-12  reinelt

	* [r170]
	  [lcd4linux @ 2002-09-12 05:24:54 by reinelt]
	  code cleanup, character defining for bars

2002-09-11  reinelt

	* [r169]
	  [lcd4linux @ 2002-09-11 05:32:35 by reinelt]
	  changed to use new bar functions

	* [r168]
	  [lcd4linux @ 2002-09-11 05:16:32 by reinelt]
	  added Cwlinux driver

2002-08-30  reinelt

	* [r167]
	  [lcd4linux @ 2002-08-30 03:54:01 by reinelt]
	  bug in curses driver fixed

2002-08-22  reinelt

	* [r166]
	  [lcd4linux @ 2002-08-22 05:51:36 by reinelt]
	  cosmetic changes

2002-08-21  reinelt

	* [r165]
	  [lcd4linux @ 2002-08-21 06:09:53 by reinelt]
	  some T6963 fixes, ndelay wrap

2002-08-19  reinelt

	* [r164]
	  [lcd4linux @ 2002-08-19 10:51:06 by reinelt]
	  M50530 driver using new generic bar functions

	* [r163]
	  [lcd4linux @ 2002-08-19 09:43:43 by reinelt]
	  BeckmannEgle using new generic bar functions

	* [r162]
	  [lcd4linux @ 2002-08-19 09:30:18 by reinelt]
	  MatrixOrbital uses generic bar funnctions

	* [r161]
	  [lcd4linux @ 2002-08-19 09:11:34 by reinelt]
	  changed HD44780 to use generic bar functions

	* [r160]
	  [lcd4linux @ 2002-08-19 07:52:19 by reinelt]
	  corrected type declaration of (*defchar)()

	* [r159]
	  [lcd4linux @ 2002-08-19 07:36:29 by reinelt]
	  finished bar.c, USBLCD is the first driver that uses the generic
	  bar functions

	* [r158]
	  [lcd4linux @ 2002-08-19 04:41:20 by reinelt]
	  introduced bar.c, moved bar stuff from display.h to bar.h

2002-08-18  reinelt

	* [r157]
	  [lcd4linux @ 2002-08-18 08:11:11 by reinelt]
	  USBLCD buffered I/O

2002-08-17  reinelt

	* [r156]
	  [lcd4linux @ 2002-08-17 14:14:21 by reinelt]
	  USBLCD fixes

	* [r155]
	  [lcd4linux @ 2002-08-17 13:10:22 by reinelt]
	  USBLCD driver added

	* [r154]
	  [lcd4linux @ 2002-08-17 12:54:08 by reinelt]
	  minor T6963 changes

2002-04-30  reinelt

	* [r153]
	  [lcd4linux @ 2002-04-30 07:20:15 by reinelt]
	  implemented the new ndelay(nanoseconds) in all parallel port
	  drivers

2002-04-29  reinelt

	* [r152]
	  [lcd4linux @ 2002-04-29 11:00:25 by reinelt]
	  added Toshiba T6963 driver
	  added ndelay() with nanosecond resolution

2001-09-14  reinelt

	* [r151]
	  [lcd4linux @ 2001-09-14 05:57:06 by reinelt]

2001-09-13  reinelt

	* [r150]
	  [lcd4linux @ 2001-09-13 07:40:57 by reinelt]
	  TODO update

2001-09-12  reinelt

	* [r149]
	  [lcd4linux @ 2001-09-12 06:17:22 by reinelt]

	* [r148]
	  [lcd4linux @ 2001-09-12 05:58:16 by reinelt]
	  fixed bug in mail2.c

	* [r147]
	  [lcd4linux @ 2001-09-12 05:37:22 by reinelt]
	  fixed a bug in seti.c (file was never closed, lcd4linux run out
	  of fd's
	  
	  improved socket debugging

2001-09-11  reinelt

	* [r146]
	  [lcd4linux @ 2001-09-11 06:43:43 by reinelt]
	  TODO items

	* [r145]
	  [lcd4linux @ 2001-09-11 05:31:37 by reinelt]
	  M50530 driver

2001-09-10  reinelt

	* [r144]
	  [lcd4linux @ 2001-09-10 13:55:53 by reinelt]
	  M50530 driver

2001-09-09  reinelt

	* [r143]
	  [lcd4linux @ 2001-09-09 12:26:03 by reinelt]
	  GPO bug: INIT is _not_ inverted

2001-09-07  reinelt

	* [r142]
	  [lcd4linux @ 2001-09-07 05:58:44 by reinelt]
	  wrong Pin numbers

2001-09-05  reinelt

	* [r141]
	  [lcd4linux @ 2001-09-05 09:38:52 by reinelt]

2001-08-08  reinelt

	* [r140]
	  [lcd4linux @ 2001-08-08 05:40:24 by reinelt]
	  renamed CLK_TCK to CLOCKS_PER_SEC

2001-08-05  reinelt

	* [r139]
	  [lcd4linux @ 2001-08-05 17:13:29 by reinelt]
	  cleaned up inlude of sys/time.h and time.h

2001-06-04  reinelt

	* [r138]
	  [lcd4linux @ 2001-06-04 07:49:58 by reinelt]
	  configure for X11 modified

2001-05-31  ltoetsch

	* [r137]
	  [lcd4linux @ 2001-05-31 10:26:41 by ltoetsch]
	  added tests for X and ncurses

2001-05-27  reinelt

	* [r136]
	  [lcd4linux @ 2001-05-27 17:32:35 by reinelt]
	  updated README with the seti@home client stuff

	* [r135]
	  [lcd4linux @ 2001-05-27 07:19:28 by reinelt]
	  fixed a warning in pixmap.c
	  temporarily fixed a bug in isdn.c (ISDN_MAX_CHANNELS is no longer
	  defined?)
	  fixed a bug in configure.in (--with-drivers=xyz did not work)

2001-05-26  reinelt

	* [r134]
	  [lcd4linux @ 2001-05-26 06:51:28 by reinelt]
	  added TODO entry

2001-05-06  reinelt

	* [r133]
	  [lcd4linux @ 2001-05-06 10:01:27 by reinelt]
	  fixed a bug which prevented extendet tokens to be used for GPO's
	  many thanks to Carsten Nau!

2001-04-27  reinelt

	* [r132]
	  [lcd4linux @ 2001-04-27 05:04:57 by reinelt]
	  replaced OPEN_MAX with sysconf()
	  replaced mktemp() with mkstemp()
	  unlock serial port if open() fails

2001-03-24  reinelt

	* [r131]
	  [lcd4linux @ 2001-03-24 09:26:25 by reinelt]
	  new TODO item

	* [r130]
	  [lcd4linux @ 2001-03-24 09:04:19 by reinelt]
	  new TODO item

2001-03-17  ltoetsch

	* [r129]
	  [lcd4linux @ 2001-03-17 11:44:10 by ltoetsch]
	  allow more then 1 BAR_T

	* [r128]
	  [lcd4linux @ 2001-03-17 11:11:31 by ltoetsch]
	  bugfix: max for BAR_T

2001-03-16  ltoetsch

	* [r127]
	  [lcd4linux @ 2001-03-16 16:40:17 by ltoetsch]
	  implemented time bar

	* [r126]
	  [lcd4linux @ 2001-03-16 09:28:08 by ltoetsch]
	  bugfixes

2001-03-15  ltoetsch

	* [r125]
	  [lcd4linux @ 2001-03-15 15:49:22 by ltoetsch]
	  fixed compile HD44780.c, cosmetics

	* [r124]
	  [lcd4linux @ 2001-03-15 14:25:05 by ltoetsch]
	  added unread/total news

	* [r123]
	  [lcd4linux @ 2001-03-15 11:10:53 by ltoetsch]
	  added quit/logout to pop/imap

2001-03-15  reinelt

	* [r122]
	  [lcd4linux @ 2001-03-15 09:47:13 by reinelt]
	  some fixes to ppdef
	  off-by-one bug in processor.c fixed

2001-03-15  ltoetsch

	* [r121]
	  [lcd4linux @ 2001-03-15 09:13:22 by ltoetsch]
	  delay first exec for faster start

2001-03-14  reinelt

	* [r120]
	  [lcd4linux @ 2001-03-14 16:47:41 by reinelt]
	  minor cleanups

	* [r119]
	  [lcd4linux @ 2001-03-14 15:30:53 by reinelt]
	  make ppdev compatible to earlier kernels

	* [r118]
	  [lcd4linux @ 2001-03-14 15:14:59 by reinelt]
	  added ppdev parallel port access

2001-03-14  ltoetsch

	* [r117]
	  [lcd4linux @ 2001-03-14 13:19:29 by ltoetsch]
	  Added pop3/imap4 mail support

2001-03-13  reinelt

	* [r116]
	  [lcd4linux @ 2001-03-13 08:34:15 by reinelt]
	  corrected a off-by-one bug with sensors

	* [r115]
	  [lcd4linux @ 2001-03-13 08:03:41 by reinelt]
	  added missing autoheader files

	* [r114]
	  [lcd4linux @ 2001-03-13 07:53:00 by reinelt]
	  added several files for the distribution

	* [r113]
	  [lcd4linux @ 2001-03-13 07:41:22 by reinelt]
	  added NEWS file

2001-03-12  reinelt

	* [r112]
	  [lcd4linux @ 2001-03-12 13:44:58 by reinelt]
	  new udelay() using Time Stamp Counters

	* [r111]
	  [lcd4linux @ 2001-03-12 12:49:24 by reinelt]
	  even better configure handling...

	* [r110]
	  [lcd4linux @ 2001-03-12 12:39:36 by reinelt]
	  reworked autoconf a lot: drivers may be excluded, #define's went
	  to config.h

2001-03-09  ltoetsch

	* [r109]
	  [lcd4linux @ 2001-03-09 16:24:30 by ltoetsch]
	  disable driver in configure

2001-03-09  reinelt

	* [r108]
	  [lcd4linux @ 2001-03-09 15:04:53 by reinelt]
	  rename 'raster' to 'Text in Text.c
	  added TOTO item

	* [r107]
	  [lcd4linux @ 2001-03-09 14:30:01 by reinelt]
	  new ideas for TODO

2001-03-09  ltoetsch

	* [r106]
	  [lcd4linux @ 2001-03-09 14:24:49 by ltoetsch]
	  exec: Scale_x ->Min/Max_x

	* [r105]
	  [lcd4linux @ 2001-03-09 13:08:11 by ltoetsch]
	  Added Text driver

2001-03-09  reinelt

	* [r104]
	  [lcd4linux @ 2001-03-09 12:14:24 by reinelt]
	  minor cleanups

2001-03-08  ltoetsch

	* [r103]
	  [lcd4linux @ 2001-03-08 15:25:38 by ltoetsch]
	  improved exec

2001-03-08  reinelt

	* [r102]
	  [lcd4linux @ 2001-03-08 09:02:04 by reinelt]
	  seti client cleanup

	* [r101]
	  [lcd4linux @ 2001-03-08 08:39:54 by reinelt]
	  fixed two typos

2001-03-07  ltoetsch

	* [r100]
	  [lcd4linux @ 2001-03-07 18:10:21 by ltoetsch]
	  added e(x)ec commands

2001-03-05  reinelt

	* [r99]
	  [lcd4linux @ 2001-03-05 18:20:21 by reinelt]
	  TOTO list update

2001-03-04  ltoetsch

	* [r98]
	  [lcd4linux @ 2001-03-04 15:01:12 by ltoetsch]
	  Added PNG

2001-03-02  reinelt

	* [r97]
	  [lcd4linux @ 2001-03-02 20:18:12 by reinelt]
	  allow compile on systems without net/if_ppp.h

	* [r96]
	  [lcd4linux @ 2001-03-02 18:06:18 by reinelt]
	  README for PNG added

	* [r95]
	  [lcd4linux @ 2001-03-02 17:18:52 by reinelt]
	  let configure find gd.h

	* [r94]
	  [lcd4linux @ 2001-03-02 11:04:08 by reinelt]
	  cosmetic cleanups (comment headers)

2001-03-02  ltoetsch

	* [r93]
	  [lcd4linux @ 2001-03-02 10:18:03 by ltoetsch]
	  added /proc/apm battery stat

2001-03-01  reinelt

	* [r92]
	  [lcd4linux @ 2001-03-01 22:33:50 by reinelt]
	  renamed Raster_flush() to PPM_flush()

2001-03-01  ltoetsch

	* [r91]
	  [lcd4linux @ 2001-03-01 15:11:30 by ltoetsch]
	  added PNG,Webinterface

2001-03-01  reinelt

	* [r90]
	  [lcd4linux @ 2001-03-01 11:08:16 by reinelt]
	  reworked configure to allow selection of drivers

2001-02-26  herp

	* [r89]
	  [lcd4linux @ 2001-02-26 00:33:37 by herp]
	  fixed X11 signal handler

2001-02-21  reinelt

	* [r88]
	  [lcd4linux @ 2001-02-21 04:48:13 by reinelt]
	  big mailbox patch from Axel Ehnert
	  thanks to herp for his idea to check mtime of mailbox

2001-02-19  reinelt

	* [r87]
	  [lcd4linux @ 2001-02-19 00:15:46 by reinelt]
	  integrated mail and seti client
	  major rewrite of parser and tokenizer to support double-byte
	  tokens

2001-02-18  reinelt

	* [r86]
	  [lcd4linux @ 2001-02-18 22:11:34 by reinelt]

	* [r85]
	  [lcd4linux @ 2001-02-18 21:16:06 by reinelt]

	* [r84]
	  [lcd4linux @ 2001-02-18 21:15:15 by reinelt]
	  added setiathome client

	* [r83]
	  [lcd4linux @ 2001-02-18 20:16:13 by reinelt]

2001-02-16  reinelt

	* [r82]
	  [lcd4linux @ 2001-02-16 14:15:11 by reinelt]
	  fixed type in processor.c
	  GPO documentation update from Carsten

	* [r81]
	  [lcd4linux @ 2001-02-16 08:23:09 by reinelt]
	  new token 'ic' (ISDN connected) by Carsten Nau <info@cnau.de>

2001-02-14  reinelt

	* [r80]
	  [lcd4linux @ 2001-02-14 07:40:16 by reinelt]
	  first (incomplete) GPO implementation

	* [r79]
	  [lcd4linux @ 2001-02-14 05:22:42 by reinelt]
	  added README from Carsten Nau

2001-02-13  reinelt

	* [r78]
	  [lcd4linux @ 2001-02-13 12:43:24 by reinelt]
	  HD_gpo() was missing

	* [r77]
	  [lcd4linux @ 2001-02-13 09:00:13 by reinelt]
	  prepared framework for GPO's (general purpose outputs)

2001-02-11  reinelt

	* [r76]
	  [lcd4linux @ 2001-02-11 23:34:07 by reinelt]
	  fixed a small bug where the throughput of an offline ISDN
	  connection is displayed as '----', but the
	  online value is 5 chars long. corrected to ' ----'.
	  thanks to Carsten Nau <info@cnau.de>

2000-12-07  reinelt

	* [r75]
	  [lcd4linux @ 2000-12-07 20:47:54 by reinelt]
	  first try for SIN bars

2000-12-01  reinelt

	* [r74]
	  [lcd4linux @ 2000-12-01 20:42:37 by reinelt]
	  added debugging of SIN driver output, probably found the
	  positioning bug (format %02x instead of %2x)

	* [r73]
	  [lcd4linux @ 2000-12-01 07:20:26 by reinelt]
	  modified text positioning: row starts with 0, column is
	  hexadecimal

2000-11-28  reinelt

	* [r72]
	  [lcd4linux @ 2000-11-28 20:20:38 by reinelt]
	  added debug.c
	  things like that should not hapen. debug.c exists for a few
	  months now, but was never added to CVS. Shit happens....

	* [r71]
	  [lcd4linux @ 2000-11-28 17:27:19 by reinelt]
	  changed decimal values for screen, row, column to ascii values
	  (shame on you!)

	* [r70]
	  [lcd4linux @ 2000-11-28 16:46:11 by reinelt]
	  first try to support display of SIN router

2000-11-17  reinelt

	* [r69]
	  [lcd4linux @ 2000-11-17 10:36:23 by reinelt]
	  fixed parsing of /proc/net/dev for 2.0 kernels

2000-10-25  reinelt

	* [r68]
	  [lcd4linux @ 2000-10-25 08:10:48 by reinelt]
	  added restart funnctionality
	  (lots of this code was stolen from sendmail.c)

2000-10-20  reinelt

	* [r67]
	  [lcd4linux @ 2000-10-20 07:17:07 by reinelt]
	  corrected a bug in HD_goto()
	  Thanks to Gregor Szaktilla <gregor@szaktilla.de>

2000-10-08  reinelt

	* [r66]
	  [lcd4linux @ 2000-10-08 09:16:40 by reinelt]
	  Linux-2.4.0-test9 changed the layout of /proc/stat (especially
	  the disk_io line)
	  rearranged parsing of some /proc files and (hopefully) made it
	  more robust in concerns of format changes

2000-08-10  reinelt

	* [r65]
	  [lcd4linux @ 2000-08-10 18:42:20 by reinelt]
	  fixed some bugs with the new syslog code

	* [r64]
	  [lcd4linux @ 2000-08-10 09:44:09 by reinelt]
	  new debugging scheme: error(), info(), debug()
	  uses syslog if in daemon mode

2000-08-09  reinelt

	* [r63]
	  [lcd4linux @ 2000-08-09 14:14:11 by reinelt]
	  new switch -F (do not fork)
	  added automatic forking if -F not specified

	* [r62]
	  [lcd4linux @ 2000-08-09 11:03:07 by reinelt]
	  fixed a bug in system.c where the format of /proc/net/dev was not
	  correctly
	  detected and parsed with different kernels

	* [r61]
	  [lcd4linux @ 2000-08-09 09:50:29 by reinelt]
	  opened 0.98 development
	  removed driver-specific signal-handlers
	  added 'quit'-function to driver structure
	  added global signal-handler

2000-07-31  reinelt

	* [r60]
	  [lcd4linux @ 2000-07-31 10:43:44 by reinelt]
	  some changes to support kernel-2.4 (different layout of various
	  files in /proc)

	* [r59]
	  [lcd4linux @ 2000-07-31 06:46:35 by reinelt]
	  eliminated some compiler warnings with glibc

2000-06-04  herp

	* [r58]
	  [lcd4linux @ 2000-06-04 21:43:50 by herp]
	  minor bugfix (zero length)

2000-05-21  reinelt

	* [r57]
	  [lcd4linux @ 2000-05-21 06:20:35 by reinelt]
	  added ppp throughput
	  token is '%t[iomt]' at the moment, but this will change in the
	  near future

2000-05-03  herp

	* [r56]
	  [lcd4linux @ 2000-05-03 17:14:51 by herp]

	* [r55]
	  [lcd4linux @ 2000-05-03 09:37:32 by herp]

2000-05-02  herp

	* [r54]
	  [lcd4linux @ 2000-05-02 23:07:48 by herp]
	  Crystalfontz initial coding

2000-05-02  reinelt

	* [r53]
	  [lcd4linux @ 2000-05-02 06:05:00 by reinelt]
	  driver for 3Com Palm Pilot added

2000-04-30  reinelt

	* [r52]
	  [lcd4linux @ 2000-04-30 06:40:42 by reinelt]
	  bars for Beckmann+Egle driver

2000-04-28  reinelt

	* [r51]
	  [lcd4linux @ 2000-04-28 05:19:55 by reinelt]
	  first release of the Beckmann+Egle driver

2000-04-20  reinelt

	* [r50]
	  [lcd4linux @ 2000-04-20 05:48:42 by reinelt]
	  added documentation to EXTRA_DIST so that they go into the
	  tarball

2000-04-19  reinelt

	* [r49]
	  [lcd4linux @ 2000-04-19 04:44:20 by reinelt]
	  README for HD44780 driver

2000-04-17  reinelt

	* [r48]
	  [lcd4linux @ 2000-04-17 05:14:27 by reinelt]
	  added README.44780

2000-04-15  reinelt

	* [r47]
	  [lcd4linux @ 2000-04-15 16:56:52 by reinelt]
	  moved delay loops to udelay.c
	  renamed -d (debugging) switch to -v (verbose)
	  new switch -d to calibrate delay loop
	  'Delay' entry for HD44780 back again
	  delay loops will not calibrate automatically, because this will
	  fail with hich CPU load

	* [r46]
	  [lcd4linux @ 2000-04-15 11:56:35 by reinelt]
	  more debug messages

	* [r45]
	  [lcd4linux @ 2000-04-15 11:13:54 by reinelt]
	  added '-d' (debugging) switch
	  added several debugging messages
	  removed config entry 'Delay' for HD44780 driver
	  delay loop for HD44780 will be calibrated automatically

2000-04-13  reinelt

	* [r44]
	  [lcd4linux @ 2000-04-13 06:09:52 by reinelt]
	  added BogoMips() to system.c (not used by now, maybe sometimes we
	  can
	  calibrate our delay loop with this value)
	  
	  added delay loop to HD44780 driver. It seems to be quite fast
	  now. Hopefully
	  no compiler will optimize away the delay loop!

2000-04-12  reinelt

	* [r43]
	  [lcd4linux @ 2000-04-12 08:05:45 by reinelt]
	  first version of the HD44780 driver

2000-04-10  reinelt

	* [r42]
	  [lcd4linux @ 2000-04-10 04:40:53 by reinelt]
	  minor changes and cleanups

2000-04-07  reinelt

	* [r41]
	  [lcd4linux @ 2000-04-07 05:42:20 by reinelt]
	  UUCP style lockfiles for the serial port

2000-04-05  reinelt

	* [r40]
	  [lcd4linux @ 2000-04-05 05:58:36 by reinelt]
	  fixed bug in XWindow.c: union semun isn't defined with glibc-2.1

	* [r39]
	  [lcd4linux @ 2000-04-05 04:12:00 by reinelt]
	  TODO added

2000-04-03  herp

	* [r38]
	  [lcd4linux @ 2000-04-03 23:53:23 by herp]
	  fixed a bug that caused pixel-errors ("fliegendreck") under high
	  load

2000-04-03  reinelt

	* [r37]
	  [lcd4linux @ 2000-04-03 17:31:52 by reinelt]
	  suppress welcome message if display is smaller than 20x2
	  change lcd4linux.ppm to 32 pixel high so KDE won't stretch the
	  icon

	* [r36]
	  [lcd4linux @ 2000-04-03 06:54:03 by reinelt]
	  KDE application link

	* [r35]
	  [lcd4linux @ 2000-04-03 06:53:09 by reinelt]
	  releasing 0.96
	  annoying X11 bugs hopefully fixed
	  KDE integration

	* [r34]
	  [lcd4linux @ 2000-04-03 04:46:38 by reinelt]
	  added '-c key=val' option

	* [r33]
	  [lcd4linux @ 2000-04-03 04:01:31 by reinelt]
	  if 'gap' is specified as -1, a gap of (pixelsize+pixelgap) is
	  selected automatically

2000-04-02  herp

	* [r32]
	  [lcd4linux @ 2000-04-02 22:07:10 by herp]
	  fixded a bug that occasionally caused Xlib errors

2000-04-01  herp

	* [r31]
	  [lcd4linux @ 2000-04-01 22:40:42 by herp]
	  geometric correction (too many pixelgaps)
	  lcd4linux main should return int, not void

	* [r30]
	  [lcd4linux @ 2000-04-01 19:33:45 by herp]
	  colors in format \#RRGGBB in config-file now understood

2000-04-01  reinelt

	* [r29]
	  [lcd4linux @ 2000-04-01 16:22:38 by reinelt]
	  bug that caused a segfault in processor.c fixed (thanks to herp)

2000-03-31  reinelt

	* [r28]
	  [lcd4linux @ 2000-03-31 04:41:22 by reinelt]
	  X11 driver: semaphore bug fixed

2000-03-30  reinelt

	* [r27]
	  [lcd4linux @ 2000-03-30 16:46:57 by reinelt]
	  configure now handles '--with-x' and '--without-x' correct

2000-03-28  reinelt

	* [r26]
	  [lcd4linux @ 2000-03-28 08:48:33 by reinelt]
	  README.X11 added

	* [r25]
	  [lcd4linux @ 2000-03-28 07:22:15 by reinelt]
	  version 0.95 released
	  X11 driver up and running
	  minor bugs fixed

2000-03-26  reinelt

	* [r24]
	  [lcd4linux @ 2000-03-26 20:00:44 by reinelt]
	  README.Raster added

	* [r23]
	  [lcd4linux @ 2000-03-26 19:03:52 by reinelt]
	  more Pixmap renaming
	  quoting of '#' in config file

	* [r22]
	  [lcd4linux @ 2000-03-26 18:46:28 by reinelt]
	  bug in pixmap.c that leaded to empty bars fixed
	  name conflicts with X11 resolved

	* [r21]
	  [lcd4linux @ 2000-03-26 12:55:03 by reinelt]
	  enhancements to the PPM driver

2000-03-25  reinelt

	* [r20]
	  [lcd4linux @ 2000-03-25 05:50:43 by reinelt]
	  memory leak in Raster_flush closed
	  driver family logic changed

2000-03-24  reinelt

	* [r19]
	  [lcd4linux @ 2000-03-24 11:37:43 by reinelt]
	  fontmap.h added

	* [r18]
	  [lcd4linux @ 2000-03-24 11:36:56 by reinelt]
	  new syntax for raster configuration
	  changed XRES and YRES to be configurable
	  PPM driver works nice

2000-03-23  reinelt

	* [r17]
	  [lcd4linux @ 2000-03-23 07:24:48 by reinelt]
	  PPM driver up and running (but slow!)

2000-03-22  reinelt

	* [r16]
	  [lcd4linux @ 2000-03-22 15:36:21 by reinelt]
	  added '-l' switch (list drivers)
	  generic pixmap driver added
	  X11 Framework done

	* [r15]
	  [lcd4linux @ 2000-03-22 07:33:50 by reinelt]
	  FAQ added
	  new modules 'processor.c' contains all data processing

2000-03-19  reinelt

	* [r14]
	  [lcd4linux @ 2000-03-19 08:41:28 by reinelt]
	  documentation available! README, README.MatrixOrbital,
	  README.Drivers
	  added Skeleton.c as a starting point for new drivers

2000-03-18  reinelt

	* [r13]
	  [lcd4linux @ 2000-03-18 10:31:06 by reinelt]
	  added sensor handling (for temperature etc.)
	  made data collecting happen only if data is used
	  (reading /proc/meminfo takes a lot of CPU!)
	  released lcd4linux-0.92

	* [r12]
	  [lcd4linux @ 2000-03-18 08:07:04 by reinelt]
	  vertical bars implemented
	  bar compaction improved
	  memory information implemented

2000-03-17  reinelt

	* [r11]
	  [lcd4linux @ 2000-03-17 09:21:42 by reinelt]
	  various memory statistics added

2000-03-13  reinelt

	* [r10]
	  [lcd4linux @ 2000-03-13 15:58:24 by reinelt]
	  release 0.9
	  moved row parsing to parser.c
	  all basic work finished

2000-03-10  reinelt

	* [r9]
	  [lcd4linux @ 2000-03-10 17:36:02 by reinelt]
	  first unstable but running release

	* [r8]
	  [lcd4linux @ 2000-03-10 12:02:43 by reinelt]
	  autoconf/automake

	* [r7]
	  [lcd4linux @ 2000-03-10 11:40:47 by reinelt]

	* [r6]
	  [lcd4linux @ 2000-03-10 10:49:53 by reinelt]
	  MatrixOrbital driver finished

2000-03-07  reinelt

	* [r5]
	  [lcd4linux @ 2000-03-07 11:01:34 by reinelt]
	  system.c cleanup

2000-03-06  reinelt

	* [r4]
	  [lcd4linux @ 2000-03-06 06:04:06 by reinelt]
	  minor cleanups

2000-01-16  reinelt

	* [r3]
	  [lcd4linux @ 2000-01-16 16:58:50 by reinelt]

	* [r2]
	  [lcd4linux @ 2000-01-16 12:17:59 by reinelt]
	  Initial revision

2000-01-16  root

	* [r1]
	  initial import