summaryrefslogtreecommitdiff
path: root/ChangeLog
blob: 590f99186cbdc9447f1ac23ae11551f9a5c986c9 (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
2002-06-10  Kevin Vandersloot <kfv101@psu.edu>

	* configure.in: Bump requirements. Release 2.0.0 :)

2002-06-02  Kevin Vandersloot <kfv101@psu.edu>

	* configure.in: release 1.105.0

2002-06-02 John Fleck <jfleck@inkstain.net>
 
       	* configure.in
       	* battstat/Makefile.am
       	* battstat/docs/Makefile.am
       	* battstat/docs/C/Makefile.am
       	add new batstatt docs to the build

2002-05-29  Sander Vesik <sander.vesik@sun.com>

	* configure.in, gkb-new/Makefile.am, gkb-new/help/Makefile.am,
	  gkb-new/help/C/Makefile.am: Integrate gnome2 docs for gkb-new
	
2002-05-27  Kevin Vandersloot <kfv101@psu.edu>

	* configure.in: release 1.104.0

2002-05-25  Leandro Noferini  <lnoferin@cybervalley.org>

	* po/it.po: finished (?)

2002-05-20  Kevin Vandersloot <kfv101@psu.edu>

	* configure.in: release 1.103.0

2002-05-16  Sander Vesik

	* configure.in, mixer/Makefile.am: Integrate new xml docs

2002-05-14  Kevin Vandersloot <kfv101@psu.edu>

	* configure.in, Makefile.am: make panel-menu-applet
	a conditional compile defaulting to no since it's still
	in a beta condition. Also clean some cruft. 

	* Release 1.102.1

2002-05-14  Anders Carlsson  <andersca@gnu.org>

	* configure.in: Require libwnck 0.11

2002-05-13  Kevin Vandersloot <kfv101@psu.edu>

	* configure.in: release 1.102.0

2002-05-10  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* configure.in: Added Vietnamese (vi) to ALL_LINGUAS

2002-05-09  Sander Vesik <sander.vesik@sun.com>

	* configure.in, gtik/Makefile.am, gtik/help/*:
	  xml docs from gtik

2002-05-08  Sander Vesik <sander.vesik@sun.com>

	* configure.in, geyes/Makefile.am: undisable geyes docs

2002-05-08  Sander Vesik <sander.vesik@sun.com>

	* configure.in, panel-menu/Makefile.am: Add help docs for menubar

2002-05-06  Kevin Vandersloot <kfv101@psu.edu>

	* configure.in: release 1.101.0

2002-04-28  Satyajit Kanungo <satyajit.kanungo@wipro.com> 

	* configure.in: Added rules for Makefiles under applets/doc
          defined DATADIR, LIBDIR, SYSCONFDIR and PREFIX to enable 
          help on applets.  

2002-04-28  Kevin Vandersloot <kfv101@psu.edu>

	* configure.in: release 1.100.0

2002-04-16  Kevin Vandersloot <kfv101@psu.edu>

	* configure.in: bump gail version requirement. realy do 1.99.0

2002-04-15  Abel Cheung  <maddog@linux.org.hk>

	* cdplayer/cdplayer.c(cd_panel_update): Unmarked empty strings as
	  untranslatable.

2002-04-14  Kevin Vandersloot <kfv101@psu.edu>

	* configure.in: release 1.99.0

2002-04-05  jacob berkman  <jacob@ximian.com>

	* configure.in: add X checks for gkb applet

2002-04-02  Kevin Vandersloot <kfv101@psu.edu>

	* configure.in: add in new accesabillity directory for gtik from
	Jagadeesh B.G. Now we require gail to build properly.

2002-03-28  jacob berkman  <jacob@ximian.com>

	* configure.in: do not AC_SUBST things like CPPFLAGS, LDFLAGS, and
	CFLAGS

2002-03-26  Kevin Vandersloot <kfv101@psu.edu>

	* configure.in, acconfig.h: determine the default cdrom device
	here. Should fix bug #75918

2002-03-25  Kevin Vandersloot <kfv101@psu.edu>

	* configure.in: release 1.98.0

2002-03-18  Kevin Vandersloot <kfv101@psu.edu>

	* configure.in: release 1.97.0

2002-03-13  Alexander Shopov <al_shopov@yahoo.com>

	* configure.in: added bg (ALL_LINGUAS)

2002-03-10  Kevin Vandersloot <kfv101@psu.edu>

	* configure.in: release 1.96.0

2002-03-05 Bastien Nocera <hadess@hadess.net>

	* */Makefile.am: undo the schemas install stuff

2002-03-04  Kevin Vandersloot <kfv101@psu.edu>

	* configure.in: release 1.95.0
	
	* Makefile.am: build omf-install and dist xmldocs.make

2002-03-03  Kevin Vandersloot <kfv101@psu.edu>

	* configure.in, Makefile.am: remove zvt check since mini-commander
	doesn't use zvt anymore

2002-03-03 John Fleck

	* configure.in
	adding mini-commander help

2002-03-03  Kevin Vandersloot <kfv101@psu.edu>

	* */Makefile.am: fixes for new changes - mostly forgotten semicolons

2002-03-02 John Fleck <jfleck@inkstain.net>

	* configure.in
	adding charpick/help to build now that it has docs

2002-02-24  Kevin Vandersloot <kfv101@psu.edu>

	* configure.in: release 1.94.0

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

	* */GNOME_*.server.in: Mark category names for translation.
	
2002-02-20  Kevin Vandersloot <kfv101@psu.edu>

	* configure.in, Makefile.am: don't build battstat on Solaris since it
	doesn't compile. Patch from laszlo.peter@ireland.sun.com (Laszlo (Laca) Peter)

2002-02-18  jacob berkman  <jacob@ximian.com>

	* Makefile.am (DIST_SUBDIRS): remove screenshooter as its makefile
	is not generated

2002-02-17  Kevin Vandersloot <kfv101@psu.edu>

	* configure.in: bump version, remove screenshooter from build

	* Makefile.am: remove screenshooter from build

	* release 1.93.0

2002-02-16  Kevin Vandersloot <kfv101@psu.edu>

	* configure.in: clean up and remove unecessary checks

	* MAINTAINERS: add myself

2002-02-11  Kevin Vandersloot <kfv101@psu.edu>

	* configure.in: bump version and gnome-core requirements 
	to go with applet API changes

	* release 1.92.2

2002-02-10  Kevin Vandersloot <kfv101@psu.edu>

	* configure.in: actually bump the version

	* really do 1.92.1

2002-02-10  Kevin Vandersloot <kfv101@psu.edu>

	* configure.in: remove need for libapm and bump version

	* 1.92.1

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

	* configure.in: Create makefile for man/
	* man/*: Added man pages from Christian Marillat.
	
2002-02-10  Kevin Vandersloot <kfv101@psu.edu>

	* configure.in: bump version

        * Makefile.am: dist conditional directories

        * release 1.92.0
        
2002-02-07  Johan Dahlin <jdahlin@telia.com>
 
 	* cdplayer/Makefile.am: Add cdrom-$(CDROM_HOST).c to
         cdplayer_applet2_DEPENDS to make automake 1.5 happy.
 	
 	* geyes/Makefile.am: Only use one EXTRA_DIST.
 	
2002-02-08  Szabolcs Ban  <shooby@gnome.hu>

	* configure.in: gkb sun build fix by Laca <laca@ireland.sun.com>

2002-02-06  Kevin Vandersloot <kfv101@psu.edu>

	* configure.in: remove autoconf 2.5 specific stuff

2002-02-05  Kevin Vandersloot <kfv101@psu.edu>

	* configure.in, Makefile.am: add battstat to the mix. Remove
	battery applets stuff

2002-02-02  Kevin Vandersloot <kfv101@psu.edu>

	* release 1.91.1

2002-01-31  Szabolcs Ban  <shooby@gnome.hu>

	* configure.in, gkb-new/Makefile.am: sun keyprop and keymap
        files, arch conditional rule. Thanks to Laca

2002-01-29  Kevin Vandersloot <kfv101@psu.edu>

	* configure.in, Makefile.am: patch from Todd Kalusza <fflewddur@dropline.net>
	to make building mini-commander conditional on libzvt

2002-01-28  Kevin Vandersloot <kfv101@psu.edu>

	* Makefile.am, configure.in: add back geyes since I like
	that applet. Bump version to 1.91.0. remove message of doom
	since the applets are rather harmless

	* Release 1.91.0

2002-01-24  Laszlo Peter  <laca@ireland.sun.com>

	* configure.in: fix building without libgtop.

2002-01-22  Kevin Vandersloot <kfv101@psu.edu>

	* Makefile.am, configure.in: add gweather and gtik

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

	* */docs/*: Merge sgml fixes from stable branch.
	
Thu Jan 17 22:16:00 2002  Owen Taylor  <otaylor@redhat.com>

	* configure.in (LDFLAGS): Honour ACLOCAL_FLAGS
	on automatic reautogen.

2002-01-17 Hasbullah Bin Pit <sebol@ikhlas.com>

	* configure.in: Added 'ms' at ALL_LINGUAS.
	* po/ms.po: Added Malay Translation.

2002-01-15  Kevin Vandersloot <kfv101@psu.edu>

	* configure.in, Makefile.am: add back charpick

2002-01-14  Kevin Vandersloot <kfv101@psu.edu>

	* First wave at removing unwanted applets

2002-01-13  Kevin Vandersloot <kfv101@psu.edu>

	* release 1.90.1

2002-01-11  Kevin Vandersloot <kfv101@psu.edu>

	* doh, 1.90.1 because of the panel-applet misspeling

2002-01-11  Kevin Vandersloot <kfv101@psu.edu>

	* release 1.90.0

2002-01-11  Kevin Vandersloot <kfv101@psu.edu>

	* Makefile.am: fix the latest change so that other modules 
	get build

2002-01-10  Kevin Vandersloot <kfv101@psu.edu>

	* woops, undo last change

2002-01-10  Kevin Vandersloot <kfv101@psu.edu>

	* Makefile.am, configure.in: add back charpick even thoough
	it doesn't really work

2002-01-09  Kevin Vandersloot <kfv101@psu.edu>

	* cdplayer/Makefile.am:
	* drivemount/Makefile.am:
	* mini-commander/Makefile.am:
	* mixer/Makefile.am: 
	* modemlights/Makefile.am:
	* multiload/Makefile.am:
	* screenshooter/Makefile.am: 
	remove -I{includedir} as it is not needed

2002-01-09  Kevin Vandersloot <kfv101@psu.edu>

	* configure.in: version 1.90.0. Remove some cruft and only build useful
	applets. Make requirements current.
	
	* Makefile.am: clean up so it passes make dist

2002-01-08  Kevin Vandersloot <kfv101@psu.edu>

	* configure.in, Makefile.am: add gkb-new

2002-01-06  Anders Carlsson  <andersca@gnu.org>

	* configure.in: Use AC_PROG_INTLTOOL.

2002-01-06  Kevin Vandersloot <kfv101@psu.edu>

	* configure.in, Makefile.am: add life

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

	* cdplayer/Makefile.am: dist cdrom-irix.c too.
	
2002-01-04  Kevin Vandersloot <kfv101@psu.edu>

	* configure.in: gconf schemas checks

2002-01-03  Kevin Vandersloot <kfv101@psu.edu>

	* Makefile.am, configure.in: add multiload

2002-01-01  Oliver Maruhn  <oliver@maruhn.com>

	* Makefile.am, configure.in: commented out mini-commander

	* AUTHORS, MAINTAINERS: replaced outdated email address
	<om@linuxhq.com> with <oliver@maruhn.com>

2001-12-17  Mark McLoughlin  <mark@skynet.ie>

	* cdplayer/cdplayer.c: (applet_factory), (applet_fill),
	(applet_save_session): update for panel-applet api changes.

2001-12-12  Richard Hult  <rhult@codefactory.se>

	* Makefile.am, configure.in: Add cd-player.

2001-12-11  Kevin Vandersloot <kfv101@psu.edu>

	* Makefile.am, configure.in: add geyes

2001-12-11  Kevin Vandersloot <kfv101@psu.edu>

	* Makefile.am, configure.in: add to odometer to the mix and
	fix the reference to screenshooter in Makefile.am

2001-12-10  Kevin Vandersloot <kfv101@psu.edu>

	Make this beast compile. 
	* configure.in: clean up and build all the applets that
	work

	* Makefile.am: add the applets that work

	* fifteen,modemlights,screenshooter/Makefile.am: don't build
	the docs for now

2001-12-10  Anders Carlsson  <andersca@gnu.org>

	* configure.in: Add mixer applet dir.

2001-12-10  Richard Hult  <rhult@codefactory.se>

	* Makefile.am: Add mixer applet dir.

2001-12-06  Kevin Vandersloot <kfv101@psu.edu>

	* screenshooter/*: Make the applet work. Properties don't
	work but the applet actually works :)

2001-12-02  Malcolm Tredinnick <malcolm@commsecure.com.au>
	* acconfig.h: introduce GETTEXT_PACKAGE

	* configure.in, Makefile.am: comment out tests that are just
	  broken for GNOME 2. Also make the relevant changes to the
	  build structure.

	* battery/battery.[ch], battery/properties.h:
	* battery/Makefile.am: Start to port to GNOME 2. This
	  _does_not_work^Wbuild_ yet, so don't even try.

	* battery/GNOME_BatteryApplet_Factory.server.in: bonobo support
	  for new panel applet.
	
	* battery/battery_applet.gnorba: removed.

2001-10-07  Fatih Demir <kabalak@gtranslator.org>

	* configure.in: Added "ta" to the languages list.

2001-09-26  Glynn Foster <glynn.foster@sun.com>

	* configure.in: Including some more pkg-config
	  checks for LIBGNOME and LIBGNOMEUI

2001-09-25  Glynn Foster <glynn.foster@sun.com>
	
	* Lesson No. 13939282 You can't have dnl's in 
	  the middle of AC_OUTPUT :)
	
2001-09-25  Glynn Foster <glynn.foster@sun.com>

	* Makefile.am, configure.in: Mass commenting out so 
	  if people want to work on porting to 2.0, they can
	  just uncomment the stuff they are interested in. Of 
	  course finished applet ports should remain uncommented.

2001-09-20  Glynn Foster <glynn.foster@sun.com>

	* configure.in: More build fixes

2001-09-20  Glynn Foster <glynn.foster@sun.com>

	* configure.in, Makefile.am: More slightly 
	  sensible changes. We just need libapplet as a 
	  pkg-config and then we can begin the next stage.
	
2001-09-20  Wang Jian  <lark@linux.net.cn>

	* configure.in(ALL_LINGUAS): Renamed zh_CN.GB2312 to zh_CN.

2001-09-19  Glynn Foster <glynn.foster@sun.com>

	* configure.in, applets/Makefile.am
	  Start making things happen for 2.0. Things won't 
	  compile, build or otherwise.
	  message-of-doom: Added

2001-09-10  Maciej Stachowiak  <mjs@noisehavoc.org>

	* Makefile.am: Don't build gtik if gnome-vfs is not found.
	* configure.in: Check for gnome-vfs properly

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

	* gtik/gtik2.c: Fixed the gdk_font_unref() calls
	thanks to Alex Larsson <alexl@redhat.com>.
	* NEWS, HACKING: Update for release.
	* MAINTAINERS: I guess I should be in here too.
	* configure.in: Bump version for release. (1.4.0.4)
	
2001-08-31  Abel Cheung  <maddog@linux.org.hk>

	* configure.in (ALL_LINGUAS): zh_TW.Big5 -> zh_TW

2001-08-14  Kjartan Maraas  <kmaraas@gnome.org>

	* */*/*.sgml: VALIDATE.
	
2001-08-04  Manuel de Vega barreiro  <mbarreiro@red.madritel.es>

        * configure.in
        loadavg help Spanish translation
        * multiload/docs/es/Makefile.am
        * multiload/docs/es/loadavg/*

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

	* configure.in: Add makefile creation for some dirs.
	And bump version for release.
		
2001-08-03  Abel Cheung  <maddog@linux.org.hk>

	* configure.in: Added "zh_TW.Big5" to ALL_LINGUAS.

2001-07-29  Manuel de Vega barreiro  <mbarreiro@red.madritel.es>

        * configure.in
        Charpick help Spanish translation
        * charpick/docs/Makefile.am
        * charpick/docs/es/*
        cpuload help Spanish translation
        * multiload/docs/es/Makefile.am
        * multiload/docs/es/cpuload/*
        * multiload/docs/es/memload/*
        * multiload/docs/es/netload/*
        * multiload/docs/es/swapload/*
        battery help Spanish translation
        * battery/docs/Makefile.am
        * battery/docs/es/*
        charpick help Spanish translation
        * charpick/docs/Makefile.am
        * charpick/docs/es/*
        diskusage help Spanish translation
        * diskusage/docs/Makefile.am
        * diskusage/docs/es/*
        geyes help Spanish translation
        * geyes/docs/Makefile.am
        * geyes/docs/es/*
        jbc help Spanish translation
        * jbc/docs/Makefile.am
        * jbc/docs/es/*

2001-07-28  Manuel de Vega barreiro  <mbarreiro@red.madritel.es>

        Whereami help Spanish translation
        * configure.in
        * whereami/docs/Makefile.am
        * whereami/docs/es/*

2001-07-22  Dan Mueth  <d-mueth@uchicago.edu>

	Updating doc build stuff to work with RH7.1 and other
	dists with the latest docbook stuff.

	* configure.in:
	* sgmldocs.make:

2001-07-15  Kjartan Maraas  <kmaraas@gnome.org>

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

2001-07-15 Manuel de Vega Barreiro <mbarreiro@re.madritel.es>

        More Spanish Translations
	* diskusage/docs/es/*
	* diskusage/docs/Makefile.am
	* multiload/docs/es/netload/Makefile.am
	* multiload/docs/es/netload/es/*

2001-07-07 Manuel de Vega Barreiro <mbarreiro@re.madritel.es>

        More Spanish Translations
	* mini-comander/docs/es/*
	* mini-comander/docs/Makefile.am
	* cdplayer/docs/es/*
	* cdplayer/docs/Makefile.am
	* drivemount/docs/es/*
	* drivemount/docs/Makefile.am
	* anotherclock/docs/es/*
	* anotherclock/docs/Makefile.am
	* life/docs/es/*
	* life/docs/Makefile.am
	* cpumemusage/docs/es/*
	* cpumemusage/docs/Makefile.am
	* mixer/docs/es/*
	* mixer/docs/Makefile.am
	* modemlight/docs/es/*
	* modemlight/docs/Makefile.am
	* geyes/docs/es/*
	* geyes/docs/Makefile.am
        * configure.in

2001-07-07  Kjartan Maraas  <kmaraas@gnome.org>

	* clockmail/themes/green-analog-digital/*: Added a new theme
	from Alex Bowley <alex.bowley@excitehome.net>
	
2001-07-04  Kjartan Maraas  <kmaraas@gnome.org>

	* webcontrol/properties.c: Mark a string for translation.
	* webcontrol/webcontrol.c: Check for NULL before strcmp().
	
2001-07-03  Kjartan Maraas  <kmaraas@gnome.org>

	Applied patch from Richard Kinder <r_kinder@yahoo.com>
	
	* battery/battery.c: Force the applet to check the panel size before starting
	to ensure if the applet is started on a small panel, it does not flicker.
	
2001-07-02  Manuel de Vega Barreiro <mbarreiro@red.madritel.es>
	New Spanish trasnlations
 	
	* battery/docs/es
	* battery/docs/Makefile.am
	* configure.in

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

	* webcontrol/*.c: #include <config.h> to make translations work.
	
2001-06-17  Kjartan Maraas  <kmaraas@gnome.org>

	* asclock/*.c: Fix c++ comments. All these are from <drk@sgi.com>
	* diskusage/*.c: Fix c++ comments.
	* cpumemusage/cpumemusage.c: Fix c++ comments.
	* configure.in: Added patch for a typo s/iric/irix/ from
	David KAELBLING <drk@sgi.com> to make compilation on Irix work.
	And also add checks for <dmedia/audio.h>.
	* gtik/gtik.c: Remove // comment.
	
2001-06-03  Manuel de Vega Barreiro <mbarreiro@red.madritel.es>
	New Spanish trasnlations
 	
	* cpumemusage/docs/es
	* cpumemusage/docs/Makefile.am
	* configure.in

2001-06-03  Manuel de Vega Barreiro <mbarreiro@red.madritel.es>
	New Spanish trasnlations
 	
	* geyes/docs/es
	* geyes/docs/Makefile.am
	* configure.in

2001-05-30  John Gotts <jgotts@linuxsavvy.com>

	* gnome-applets.spec.in: Added new omf directory.

2001-04-07  Manuel de Vega Barreiro <mbarreiro@red.madritel.es>
	New Spanish trasnlations
 	
	* mixer/docs/es
	* mixer/docs/Makefile.am

2001-04-04  John Gotts <jgotts@linuxsavvy.com>

	* gnome-applets.spec.in: Also allow the user to build snapshots.

2001-03-24  Yukihiro Nakai <nakai@gnome.gr.jp>

	* battery/docs/ja: Add Japanese translation.
	* cdplayer/docs/ja: Add Japanese translation.
	* charpick/docs/ja: Add Japanese translation.
	* clockmail/docs/ja: Add Japanese translation.
	* cpumemusage/docs/ja: Add Japanese translation.
	* diskusage/docs/ja: Add Japanese translation.
	* drivemount/docs/ja: Add Japanese translation.

2001-03-23  Yukihiro Nakai <nakai@gnome.gr.jp>

	* asclock/docs/ja: Add Japanese translation.

2001-03-20  Dan Mueth  <dan@eazel.com>

        Updating doc build stuff to new build system.  Note that
        figures belong in a directory called "figures".

	* cpumemusage/docs/C/Makefile.am:
	* cpumemusage/docs/C/cpumemusage-applet.png:
	* cpumemusage/docs/C/cpumemusage.sgml:
	* cpumemusage/docs/C/figures/cpumemusage-applet.png:
	* cpumemusage/docs/it/Makefile.am:
	* cpumemusage/docs/it/cpumemusage-applet.png:
	* cpumemusage/docs/it/cpumemusage.sgml:
	* cpumemusage/docs/it/figures/cpumemusage-applet.png:

	Fixed some bugs in the metadata.

	* cdplayer/docs/C/cdplayer_applet-C.omf:
	* life/docs/C/Makefile.am:
	* life/docs/it/Makefile.am:
	* multiload/docs/C/memload/memload_applet-C.omf:
	* multiload/docs/C/memload/memload_applet.sgml:

2001-03-20  Dan Mueth  <dan@eazel.com>

	Fixed incorrect file name.

	* multiload/docs/it/swapload/swapload_applet-C.omf:
	* multiload/docs/it/swapload/swapload_applet-it.omf:

2001-03-20  Dan Mueth  <dan@eazel.com>

	Removed bad tab at end of line.

	* multiload/docs/C/loadavg/Makefile.am:
	* multiload/docs/it/loadavg/Makefile.am:

2001-03-20  Dan Mueth  <dan@eazel.com>

        Updating doc build stuff to new build system.  Note that
        figures belong in a directory called "figures".

	* multiload/docs/C/cpuload/Makefile.am:
	* multiload/docs/C/cpuload/cpuload-applet-default.png:
	* multiload/docs/C/cpuload/cpuload-applet-greyed.png:
	* multiload/docs/C/cpuload/cpuload-applet-properties.png:
	* multiload/docs/C/cpuload/cpuload-applet.png:
	* multiload/docs/C/cpuload/cpuload.sgml:
	* multiload/docs/C/cpuload/figures/cpuload-applet-default.png:
	* multiload/docs/C/cpuload/figures/cpuload-applet-greyed.png:
	* multiload/docs/C/cpuload/figures/cpuload-applet-properties.png:
	* multiload/docs/C/cpuload/figures/cpuload-applet.png:
	* multiload/docs/C/loadavg/Makefile.am:
	* multiload/docs/C/loadavg/figures/loadavg-applet-default.png:
	* multiload/docs/C/loadavg/figures/loadavg-applet-greyed.png:
	* multiload/docs/C/loadavg/figures/loadavg-applet-properties.png:
	* multiload/docs/C/loadavg/figures/loadavg-applet.png:
	* multiload/docs/C/loadavg/loadavg-applet-default.png:
	* multiload/docs/C/loadavg/loadavg-applet-greyed.png:
	* multiload/docs/C/loadavg/loadavg-applet-properties.png:
	* multiload/docs/C/loadavg/loadavg-applet.png:
	* multiload/docs/C/loadavg/loadavg.sgml:
	* multiload/docs/C/memload/Makefile.am:
	* multiload/docs/C/memload/figures/memload-applet-default.png:
	* multiload/docs/C/memload/figures/memload-applet-greyed.png:
	* multiload/docs/C/memload/figures/memload-applet-properties.png:
	* multiload/docs/C/memload/figures/memload-applet.png:
	* multiload/docs/C/memload/memload-applet-default.png:
	* multiload/docs/C/memload/memload-applet-greyed.png:
	* multiload/docs/C/memload/memload-applet-properties.png:
	* multiload/docs/C/memload/memload-applet.png:
	* multiload/docs/C/memload/memload.sgml:
	* multiload/docs/C/netload/Makefile.am:
	* multiload/docs/C/netload/figures/netload-applet-default.png:
	* multiload/docs/C/netload/figures/netload-applet-greyed.png:
	* multiload/docs/C/netload/figures/netload-applet-properties.png:
	* multiload/docs/C/netload/figures/netload-applet.png:
	* multiload/docs/C/netload/netload-applet-default.png:
	* multiload/docs/C/netload/netload-applet-greyed.png:
	* multiload/docs/C/netload/netload-applet-properties.png:
	* multiload/docs/C/netload/netload-applet.png:
	* multiload/docs/C/netload/netload.sgml:
	* multiload/docs/C/swapload/Makefile.am:
	* multiload/docs/C/swapload/figures/swapload-applet-default.png:
	* multiload/docs/C/swapload/figures/swapload-applet-greyed.png:
	* multiload/docs/C/swapload/figures/swapload-applet-properties.png:
	* multiload/docs/C/swapload/figures/swapload-applet.png:
	* multiload/docs/C/swapload/swapload-applet-default.png:
	* multiload/docs/C/swapload/swapload-applet-greyed.png:
	* multiload/docs/C/swapload/swapload-applet-properties.png:
	* multiload/docs/C/swapload/swapload-applet.png:
	* multiload/docs/C/swapload/swapload.sgml:
	* multiload/docs/it/cpuload/Makefile.am:
	* multiload/docs/it/cpuload/cpuload-applet-default.png:
	* multiload/docs/it/cpuload/cpuload-applet-greyed.png:
	* multiload/docs/it/cpuload/cpuload-applet-properties.png:
	* multiload/docs/it/cpuload/cpuload-applet.png:
	* multiload/docs/it/cpuload/cpuload.sgml:
	* multiload/docs/it/cpuload/figures/cpuload-applet-default.png:
	* multiload/docs/it/cpuload/figures/cpuload-applet-greyed.png:
	* multiload/docs/it/cpuload/figures/cpuload-applet-properties.png:
	* multiload/docs/it/cpuload/figures/cpuload-applet.png:
	* multiload/docs/it/loadavg/Makefile.am:
	* multiload/docs/it/loadavg/figures/loadavg-applet-default.png:
	* multiload/docs/it/loadavg/figures/loadavg-applet-greyed.png:
	* multiload/docs/it/loadavg/figures/loadavg-applet-properties.png:
	* multiload/docs/it/loadavg/figures/loadavg-applet.png:
	* multiload/docs/it/loadavg/loadavg-applet-default.png:
	* multiload/docs/it/loadavg/loadavg-applet-greyed.png:
	* multiload/docs/it/loadavg/loadavg-applet-properties.png:
	* multiload/docs/it/loadavg/loadavg-applet.png:
	* multiload/docs/it/loadavg/loadavg.sgml:
	* multiload/docs/it/memload/Makefile.am:
	* multiload/docs/it/memload/figures/memload-applet-default.png:
	* multiload/docs/it/memload/figures/memload-applet-greyed.png:
	* multiload/docs/it/memload/figures/memload-applet-properties.png:
	* multiload/docs/it/memload/figures/memload-applet.png:
	* multiload/docs/it/memload/memload-applet-default.png:
	* multiload/docs/it/memload/memload-applet-greyed.png:
	* multiload/docs/it/memload/memload-applet-properties.png:
	* multiload/docs/it/memload/memload-applet.png:
	* multiload/docs/it/memload/memload.sgml:
	* multiload/docs/it/netload/Makefile.am:
	* multiload/docs/it/netload/figures/netload-applet-default.png:
	* multiload/docs/it/netload/figures/netload-applet-greyed.png:
	* multiload/docs/it/netload/figures/netload-applet-properties.png:
	* multiload/docs/it/netload/figures/netload-applet.png:
	* multiload/docs/it/netload/netload-applet-default.png:
	* multiload/docs/it/netload/netload-applet-greyed.png:
	* multiload/docs/it/netload/netload-applet-properties.png:
	* multiload/docs/it/netload/netload-applet.png:
	* multiload/docs/it/netload/netload.sgml:
	* multiload/docs/it/swapload/Makefile.am:
	* multiload/docs/it/swapload/figures/swapload-applet-default.png:
	* multiload/docs/it/swapload/figures/swapload-applet-greyed.png:
	* multiload/docs/it/swapload/figures/swapload-applet-properties.png
	:
	* multiload/docs/it/swapload/figures/swapload-applet.png:
	* multiload/docs/it/swapload/swapload-applet-default.png:
	* multiload/docs/it/swapload/swapload-applet-greyed.png:
	* multiload/docs/it/swapload/swapload-applet-properties.png:
	* multiload/docs/it/swapload/swapload-applet.png:
	* multiload/docs/it/swapload/swapload.sgml:

2001-03-20  Dan Mueth  <dan@eazel.com>

	Fixing a few OMF and Makefile bugs.

	* another_clock/docs/C/anotherclock_applet-C.omf:
	* another_clock/docs/it/anotherclock_applet-it.omf:
	* another_clock/docs/uk/anotherclock_applet-uk.omf:
	* asclock/docs/C/asclock_applet-C.omf:
	* asclock/docs/it/asclock_applet-it.omf:
	* life/docs/C/life_applet-C.omf:
	* mixer/docs/C/mixer_applet-C.omf:
	* tickastat/docs/it/Makefile.am:

2001-03-20  Dan Mueth  <dan@eazel.com>

        Updating doc build stuff to new build system.  Note that
        figures belong in a directory called "figures".

	* diskusage/docs/it/Makefile.am:
	* diskusage/docs/it/diskusage-applet-prefs.png:
	* diskusage/docs/it/diskusage-applet.png:
	* diskusage/docs/it/diskusage.sgml:
	* diskusage/docs/it/figures/diskusage-applet-prefs.png:
	* diskusage/docs/it/figures/diskusage-applet.png:
	* geyes/docs/it/Makefile.am:
	* geyes/docs/it/figures/geyes_applet.png:
	* geyes/docs/it/geyes.sgml:
	* geyes/docs/it/geyes_applet.png:
	* gweather/docs/it/Makefile.am:
	* gweather/docs/it/figures/gweather_applet.png:
	* gweather/docs/it/figures/gweather_settings.png:
	* gweather/docs/it/figures/gweather_weather.png:
	* gweather/docs/it/gweather.sgml:
	* gweather/docs/it/gweather_applet.png:
	* gweather/docs/it/gweather_settings.png:
	* gweather/docs/it/gweather_weather.png:
	* jbc/docs/it/Makefile.am:
	* jbc/docs/it/figures/jbc_applet.png:
	* jbc/docs/it/jbc.sgml:
	* jbc/docs/it/jbc_applet.png:
	* mini-commander/docs/C/Makefile.am:
	* mini-commander/docs/C/figures/mini-commander_applet.png:
	* mini-commander/docs/C/figures/mini-commander_settings_general.png
	:
	* mini-commander/docs/C/mini-commander.sgml:
	* mini-commander/docs/C/mini-commander_applet.png:
	* mini-commander/docs/C/mini-commander_settings_general.png:
	* mini-commander/docs/it/Makefile.am:
	* mini-commander/docs/it/figures/mini-commander_applet.png:
	* mini-commander/docs/it/figures/mini-commander_settings_general.pn
	g:
	* mini-commander/docs/it/mini-commander.sgml:
	* mini-commander/docs/it/mini-commander_applet.png:
	* mini-commander/docs/it/mini-commander_settings_general.png:
	* modemlights/docs/C/Makefile.am:
	* modemlights/docs/C/figures/modemlights-advpref.png:
	* modemlights/docs/C/figures/modemlights-prefs.png:
	* modemlights/docs/C/figures/modemlights.png:
	* modemlights/docs/C/modemlights-advpref.png:
	* modemlights/docs/C/modemlights-prefs.png:
	* modemlights/docs/C/modemlights.png:
	* modemlights/docs/C/modemlights.sgml:
	* modemlights/docs/it/Makefile.am:
	* modemlights/docs/it/figures/modemlights-advpref.png:
	* modemlights/docs/it/figures/modemlights-prefs.png:
	* modemlights/docs/it/figures/modemlights.png:
	* modemlights/docs/it/modemlights-advpref.png:
	* modemlights/docs/it/modemlights-prefs.png:
	* modemlights/docs/it/modemlights.png:
	* modemlights/docs/it/modemlights.sgml:
	* quicklaunch/docs/it/Makefile.am:
	* quicklaunch/docs/it/figures/quicklaunch_applet.png:
	* quicklaunch/docs/it/quicklaunch.sgml:
	* quicklaunch/docs/it/quicklaunch_applet.png:
	* sound-monitor/docs/it/Makefile.am:
	* sound-monitor/docs/it/figures/soundmonitor_applet.png:
	* sound-monitor/docs/it/figures/soundmonitor_applet_settings.png:
	* sound-monitor/docs/it/figures/soundmonitor_applet_themes.png:
	* sound-monitor/docs/it/figures/soundmonitor_manager_server.png:
	* sound-monitor/docs/it/sound-monitor.sgml:
	* sound-monitor/docs/it/soundmonitor_applet.png:
	* sound-monitor/docs/it/soundmonitor_applet_settings.png:
	* sound-monitor/docs/it/soundmonitor_applet_themes.png:
	* sound-monitor/docs/it/soundmonitor_manager_server.png:

2001-03-19  Dan Mueth  <dan@eazel.com>

        Updating doc build stuff to new build system.  Note that
        figures belong in a directory called "figures".

	* clockmail/docs/C/Makefile.am:
	* clockmail/docs/C/clockmail-prefs-general.png:
	* clockmail/docs/C/clockmail-prefs-theme.png:
	* clockmail/docs/C/clockmail.sgml:
	* clockmail/docs/C/clockmail_applet.png:
	* clockmail/docs/C/figures/clockmail-prefs-general.png:
	* clockmail/docs/C/figures/clockmail-prefs-theme.png:
	* clockmail/docs/C/figures/clockmail_applet.png:
	* clockmail/docs/it/Makefile.am:
	* gkb-new/docs/C/Makefile.am:
	* gkb-new/docs/C/figures/gkb_add_list.png:
	* gkb-new/docs/C/figures/gkb_applet.png:
	* gkb-new/docs/C/figures/gkb_applet_settings.png:
	* gkb-new/docs/C/figures/gkb_applet_settings2.png:
	* gkb-new/docs/C/figures/gkb_edit_keymap.png:
	* gkb-new/docs/C/gkb.sgml:
	* gkb-new/docs/C/gkb_add_list.png:
	* gkb-new/docs/C/gkb_applet.png:
	* gkb-new/docs/C/gkb_applet_settings.png:
	* gkb-new/docs/C/gkb_applet_settings2.png:
	* gkb-new/docs/C/gkb_edit_keymap.png:
	* gkb-new/docs/hu/Makefile.am:
	* gkb-new/docs/hu/figures/gkb_applet.png:
	* gkb-new/docs/hu/figures/gkb_applet_settings.png:
	* gkb-new/docs/hu/gkb.sgml:
	* gkb-new/docs/hu/gkb_applet.png:
	* gkb-new/docs/hu/gkb_applet_settings.png:
	* tickastat/docs/C/Makefile.am:
	* tickastat/docs/C/figures/tickastat_applet.png:
	* tickastat/docs/C/figures/tickastat_coredump.png:
	* tickastat/docs/C/figures/tickastat_loadaverage.png:
	* tickastat/docs/C/figures/tickastat_settings.png:
	* tickastat/docs/C/tickastat.sgml:
	* tickastat/docs/C/tickastat_applet.png:
	* tickastat/docs/C/tickastat_coredump.png:
	* tickastat/docs/C/tickastat_loadaverage.png:
	* tickastat/docs/C/tickastat_settings.png:
	* tickastat/docs/it/Makefile.am:
	* tickastat/docs/it/figures/tickastat_applet.png:
	* tickastat/docs/it/figures/tickastat_coredump.png:
	* tickastat/docs/it/figures/tickastat_loadaverage.png:
	* tickastat/docs/it/figures/tickastat_settings.png:
	* tickastat/docs/it/tickastat.sgml:
	* tickastat/docs/it/tickastat_applet.png:
	* tickastat/docs/it/tickastat_coredump.png:
	* tickastat/docs/it/tickastat_loadaverage.png:
	* tickastat/docs/it/tickastat_settings.png:

2001-03-19  Dan Mueth  <dan@eazel.com>

        Updating doc build stuff to new build system.  Note that
        figures belong in a directory called "figures".

	* fifteen/docs/C/Makefile.am:
	* fifteen/docs/C/fifteen.sgml:
	* fifteen/docs/C/fifteen_applet.png:
	* fifteen/docs/C/figures/fifteen_applet.png:
	* fifteen/docs/it/Makefile.am:
	* fifteen/docs/it/fifteen.sgml:
	* fifteen/docs/it/fifteen_applet.png:
	* fifteen/docs/it/figures/fifteen_applet.png:
	* webcontrol/docs/C/Makefile.am:
	* webcontrol/docs/C/figures/webcontrol-applet-prefs.png:
	* webcontrol/docs/C/figures/webcontrol-applet.png:
	* webcontrol/docs/C/webcontrol-applet-prefs.png:
	* webcontrol/docs/C/webcontrol-applet.png:
	* webcontrol/docs/C/webcontrol.sgml:
	* webcontrol/docs/it/Makefile.am:
	* webcontrol/docs/it/figures/webcontrol-applet-prefs.png:
	* webcontrol/docs/it/figures/webcontrol-applet.png:
	* webcontrol/docs/it/webcontrol-applet-prefs.png:
	* webcontrol/docs/it/webcontrol-applet.png:
	* webcontrol/docs/it/webcontrol.sgml:

2001-03-15 John Fleck <jfleck@swcp.com>

	* woohoo - adding the last of the omf files:
	modemlights/docs/it/modemlights_applet-it.omf 
	tickastat/docs/it/tickastat_applet-it.omf 
	fifteen/docs/it/fifteen_applet-it.omf 
	webcontrol/docs/it/webcontrol_applet-it.omf 
	clockmail/docs/it/clockmail_applet-it.omf 
	gkb-new/docs/hu/gkb_applet-hu.omf 
	quicklaunch/docs/it/quicklaunch_applet-it.omf 
	jbc/docs/it/jbc_applet-it.omf 
	diskusage/docs/it/diskusage_applet-it.omf 
	sound-monitor/docs/it/sound-monitor_applet-it.omf 
	geyes/docs/it/geyes_applet-it.omf 
	gweather/docs/it/gweather_applet-it.omf

2001-03-15 John Fleck <jfleck@swcp.com>

	* adding more omf files from patanjali
	tickastat/docs/C/tickastat_applet-C.omf 
	modemlights/docs/C/modemlights_applet-C.omf 
	whereami/docs/C/whereami_applet-C.omf 


2001-03-14  Dan Mueth  <dan@eazel.com>

        Updating doc build stuff to new build system.  Note that
        figures belong in a directory called "figures".

	* charpick/docs/C/Makefile.am:
	* charpick/docs/C/charpick.sgml:
	* charpick/docs/C/charpick_applet.png:
	* charpick/docs/C/charpick_applet_settings.png:
	* charpick/docs/C/charpick_characters.png:
	* charpick/docs/C/figures/charpick_applet.png:
	* charpick/docs/C/figures/charpick_applet_settings.png:
	* charpick/docs/C/figures/charpick_characters.png:
	* charpick/docs/it/Makefile.am:
	* charpick/docs/it/charpick.sgml:
	* charpick/docs/it/charpick_applet.png:
	* charpick/docs/it/charpick_applet_settings.png:
	* charpick/docs/it/charpick_characters.png:
	* charpick/docs/it/figures/charpick_applet.png:
	* charpick/docs/it/figures/charpick_applet_settings.png:
	* charpick/docs/it/figures/charpick_characters.png:
	* whereami/docs/C/Makefile.am:
	* whereami/docs/C/figures/whereami_applet.png:
	* whereami/docs/C/whereami.sgml:
	* whereami/docs/C/whereami_applet.png:
	* whereami/docs/it/Makefile.am:
	* whereami/docs/it/figures/whereami_applet.png:
	* whereami/docs/it/whereami.sgml:
	* whereami/docs/it/whereami_applet.png:

2001-03-14  Dan Mueth  <dan@eazel.com>

        Updating doc build stuff to new build system.  Note that
        figures belong in a directory called "figures".

	* diskusage/docs/C/Makefile.am:
	* diskusage/docs/C/diskusage-applet-prefs.png:
	* diskusage/docs/C/diskusage-applet.png:
	* diskusage/docs/C/diskusage.sgml:
	* diskusage/docs/C/figures/diskusage-applet-prefs.png:
	* diskusage/docs/C/figures/diskusage-applet.png:
	* geyes/docs/C/Makefile.am:
	* geyes/docs/C/figures/geyes_applet.png:
	* geyes/docs/C/figures/geyes_settings.png:
	* geyes/docs/C/geyes.sgml:
	* geyes/docs/C/geyes_applet.png:
	* geyes/docs/C/geyes_settings.png:
	* gweather/docs/C/Makefile.am:
	* gweather/docs/C/figures/gweather_applet.png:
	* gweather/docs/C/figures/gweather_settings.png:
	* gweather/docs/C/figures/gweather_weather.png:
	* gweather/docs/C/gweather.sgml:
	* gweather/docs/C/gweather_applet.png:
	* gweather/docs/C/gweather_settings.png:
	* gweather/docs/C/gweather_weather.png:
	* jbc/docs/C/Makefile.am:
	* jbc/docs/C/figures/jbc_applet.png:
	* jbc/docs/C/jbc.sgml:
	* jbc/docs/C/jbc_applet.png:
	* quicklaunch/docs/C/Makefile.am:
	* quicklaunch/docs/C/figures/quicklaunch_applet.png:
	* quicklaunch/docs/C/quicklaunch.sgml:
	* quicklaunch/docs/C/quicklaunch_applet.png:
	* sound-monitor/docs/C/Makefile.am:
	* sound-monitor/docs/C/figures/soundmonitor_applet.png:
	* sound-monitor/docs/C/figures/soundmonitor_applet_settings.png:
	* sound-monitor/docs/C/figures/soundmonitor_applet_themes.png:
	* sound-monitor/docs/C/figures/soundmonitor_manager_server.png:
	* sound-monitor/docs/C/sound-monitor.sgml:
	* sound-monitor/docs/C/soundmonitor_applet.png:
	* sound-monitor/docs/C/soundmonitor_applet_settings.png:
	* sound-monitor/docs/C/soundmonitor_applet_themes.png:
	* sound-monitor/docs/C/soundmonitor_manager_server.png:

2001-03-14  Dan Mueth  <dan@eazel.com>

        Updating doc build stuff to new build system.  Note that
        figures belong in a directory called "figures".

	* gnotes/docs/C/Makefile.am:
	* gnotes/docs/C/figures/gnotes-fig.png:
	* gnotes/docs/C/figures/gnotes-properties.png:
	* gnotes/docs/C/gnotes-fig.png:
	* gnotes/docs/C/gnotes-properties.png:
	* gnotes/docs/C/gnotes.sgml:
	* gnotes/docs/it/Makefile.am:
	* gnotes/docs/it/figures/gnotes-fig.png:
	* gnotes/docs/it/figures/gnotes-properties.png:
	* gnotes/docs/it/gnotes-fig.png:
	* gnotes/docs/it/gnotes-properties.png:
	* gnotes/docs/it/gnotes.sgml:
	* odometer/docs/C/Makefile.am:
	* odometer/docs/C/figures/odometer_applet.png:
	* odometer/docs/C/figures/odometer_settings.png:
	* odometer/docs/C/figures/odometer_themes.png:
	* odometer/docs/C/odometer.sgml:
	* odometer/docs/C/odometer_applet.png:
	* odometer/docs/C/odometer_settings.png:
	* odometer/docs/C/odometer_themes.png:
	* odometer/docs/fr/Makefile.am:
	* odometer/docs/fr/figures/odometer_applet.png:
	* odometer/docs/fr/figures/odometer_settings.png:
	* odometer/docs/fr/figures/odometer_themes.png:
	* odometer/docs/fr/odometer.sgml:
	* odometer/docs/fr/odometer_applet.png:
	* odometer/docs/fr/odometer_settings.png:
	* odometer/docs/fr/odometer_themes.png:
	* odometer/docs/it/Makefile.am:
	* odometer/docs/it/figures/odometer_applet.png:
	* odometer/docs/it/figures/odometer_settings.png:
	* odometer/docs/it/figures/odometer_themes.png:
	* odometer/docs/it/odometer.sgml:
	* odometer/docs/it/odometer_applet.png:
	* odometer/docs/it/odometer_settings.png:
	* odometer/docs/it/odometer_themes.png:

2001-03-14  Dan Mueth  <dan@eazel.com>

        Updating doc build stuff to new build system.  Note that
        figures belong in a directory called "figures".

	* drivemount/docs/C/Makefile.am:
	* drivemount/docs/C/drivemount.sgml:
	* drivemount/docs/C/drivemount_applet_all.png:
	* drivemount/docs/C/drivemount_applet_floppy.png:
	* drivemount/docs/C/drivemount_applet_settings.png:
	* drivemount/docs/C/drivemount_applet_tooltip.png:
	* drivemount/docs/C/figures/drivemount_applet_all.png:
	* drivemount/docs/C/figures/drivemount_applet_floppy.png:
	* drivemount/docs/C/figures/drivemount_applet_settings.png:
	* drivemount/docs/C/figures/drivemount_applet_tooltip.png:
	* drivemount/docs/it/Makefile.am:
	* drivemount/docs/it/drivemount.sgml:
	* drivemount/docs/it/drivemount_applet_all.png:
	* drivemount/docs/it/drivemount_applet_floppy.png:
	* drivemount/docs/it/drivemount_applet_settings.png:
	* drivemount/docs/it/drivemount_applet_tooltip.png:
	* drivemount/docs/it/figures/drivemount_applet_all.png:
	* drivemount/docs/it/figures/drivemount_applet_floppy.png:
	* drivemount/docs/it/figures/drivemount_applet_settings.png:
	* drivemount/docs/it/figures/drivemount_applet_tooltip.png:

2001-03-14  Dan Mueth  <dan@eazel.com>

        Updating doc build stuff to new build system.  Note that
        figures belong in a directory called "figures".

	* life/docs/C/Makefile.am:
	* life/docs/C/figures/life-applet.png:
	* life/docs/C/life-applet.png:
	* life/docs/it/Makefile.am:
	* life/docs/it/figures/life-applet.png:
	* life/docs/it/life-applet.png:
	* screenshooter/docs/C/Makefile.am:
	* screenshooter/docs/it/Makefile.am:

2001-03-14 John Fleck <jfleck@swcp.com>

	* omf flood continues, from me and more from the great and
	quick-working patanjali:
	fifteen/docs/C/fifteen_applet-C.omf 
	webcontrol/docs/C/webcontrol_applet-C.omf 
	clockmail/docs/C/clockmail_applet-C.omf 
	gkb-new/docs/C/gkb_applet-C.omf 
	charpick/docs/C/charpick_applet-C.omf 
	charpick/docs/it/charpick_applet-it.omf 
	whereami/docs/C/whereami_applet-C.omf 
	whereami/docs/it/whereami_applet-it.omf

2001-03-14 John Fleck <jfleck@swcp.com>

	* committing a batch of omf files contributed by Patanjali:
	diskusage/docs/C/diskusage_applet-C.omf 
	geyes/docs/C/geyes_applet-C.omf 
	gweather/docs/C/gweather_applet-C.omf 
	jbc/docs/C/jbc_applet-C.omf 
	quicklaunch/docs/C/quicklaunch_applet-C.omf 
	sound-monitor/docs/C/sound-monitor_applet-C.omf

2001-03-13 John Fleck <jfleck@swcp.com>

	* another batch of omf files:
	odometer/docs/C/odometer_applet-C.omf 
	odometer/docs/it/odometer_applet-it.omf 
	odometer/docs/fr/odometer_applet-fr.omf 
	gnotes/docs/C/gnotes_applet-C.omf 
	gnotes/docs/it/gnotes_applet-it.omf

2001-03-13  Dan Mueth  <dan@eazel.com>

	Bug fix.

	* asclock/docs/it/Makefile.am:

2001-03-13  Dan Mueth  <dan@eazel.com>

        Updating doc build stuff to new build system.  Note that
        figures belong in a directory called "figures".

	* cdplayer/docs/C/Makefile.am:
	* cdplayer/docs/C/cdplayer.sgml:
	* cdplayer/docs/C/cdplayer_applet.png:
	* cdplayer/docs/C/figures/cdplayer_applet.png:
	* cdplayer/docs/it/Makefile.am:
	* cdplayer/docs/it/cdplayer.sgml:
	* cdplayer/docs/it/cdplayer_applet.png:
	* cdplayer/docs/it/figures/cdplayer_applet.png:

2001-03-13  Dan Mueth  <dan@eazel.com>

        Updating doc build stuff to new build system.  Note that
        figures belong in a directory called "figures".

	* asclock/docs/C/Makefile.am:
	* asclock/docs/C/asclock.sgml:
	* asclock/docs/C/asclock_applet.png:
	* asclock/docs/C/asclock_settings.png:
	* asclock/docs/C/figures/asclock_applet.png:
	* asclock/docs/C/figures/asclock_settings.png:
	* asclock/docs/it/Makefile.am:
	* battery/docs/C/Makefile.am:
	* battery/docs/C/battery-applet-ac-offline-25-20.png:
	* battery/docs/C/battery-applet-ac-online-25-20.png:
	* battery/docs/C/battery-applet-graph.png:
	* battery/docs/C/battery-applet-properties-general.png:
	* battery/docs/C/battery-applet-properties-graph.png:
	* battery/docs/C/battery-applet-properties-messages.png:
	* battery/docs/C/battery-applet-properties-readout.png:
	* battery/docs/C/battery.sgml:
	* battery/docs/C/figures/battery-applet-ac-offline-25-20.png:
	* battery/docs/C/figures/battery-applet-ac-online-25-20.png:
	* battery/docs/C/figures/battery-applet-graph.png:
	* battery/docs/C/figures/battery-applet-properties-general.png:
	* battery/docs/C/figures/battery-applet-properties-graph.png:
	* battery/docs/C/figures/battery-applet-properties-messages.png:
	* battery/docs/C/figures/battery-applet-properties-readout.png:
	* battery/docs/it/Makefile.am:
	* battery/docs/it/battery-applet-ac-offline-25-20.png:
	* battery/docs/it/battery-applet-ac-online-25-20.png:
	* battery/docs/it/battery-applet-graph.png:
	* battery/docs/it/battery-applet-properties-general.png:
	* battery/docs/it/battery-applet-properties-graph.png:
	* battery/docs/it/battery-applet-properties-messages.png:
	* battery/docs/it/battery-applet-properties-readout.png:
	* battery/docs/it/battery.sgml:
	* battery/docs/it/figures/battery-applet-ac-offline-25-20.png:
	* battery/docs/it/figures/battery-applet-ac-online-25-20.png:
	* battery/docs/it/figures/battery-applet-graph.png:
	* battery/docs/it/figures/battery-applet-properties-general.png:
	* battery/docs/it/figures/battery-applet-properties-graph.png:
	* battery/docs/it/figures/battery-applet-properties-messages.png:
	* battery/docs/it/figures/battery-applet-properties-readout.png:

2001-03-13  Dan Mueth  <dan@eazel.com>

        Updating doc build stuff to new build system.  Note that
        figures belong in a directory called "figures".

	* another_clock/docs/C/Makefile.am:
	* another_clock/docs/C/anotherclock-applet.png:
	* another_clock/docs/C/anotherclock-properties.png:
	* another_clock/docs/C/anotherclock.sgml:
	* another_clock/docs/C/figures/anotherclock-applet.png:
	* another_clock/docs/C/figures/anotherclock-properties.png:
	* another_clock/docs/it/Makefile.am:
	* another_clock/docs/it/anotherclock-applet.png:
	* another_clock/docs/it/anotherclock.sgml:
	* another_clock/docs/it/figures/anotherclock-applet.png:
	* another_clock/docs/ru/Makefile.am:
	* another_clock/docs/uk/Makefile.am:
	* another_clock/docs/uk/anotherclock-applet.png:
	* another_clock/docs/uk/anotherclock-properties.png:
	* another_clock/docs/uk/anotherclock.sgml:
	* another_clock/docs/uk/figures/anotherclock-applet.png:
	* another_clock/docs/uk/figures/anotherclock-properties.png:

2001-03-13  Dan Mueth  <dan@eazel.com>

	Adding file I forget to add last time:

	* sgmldocs.make:

2001-03-13  Dan Mueth  <dan@eazel.com>

	Fixing up the doc build stuff.

	Adding FDL license
	* COPYING-DOCS:
	* Makefile.am:

	Fixing up the doc build stuff.
	* configure.in:
	* omf-install/Makefile.am:

	Fixing up doc build stuff for Mixer applet
	* mixer/docs/C/figures/mixer_applet.png:
	* mixer/docs/C/mixer.sgml:
	* mixer/docs/C/mixer_applet.png:
	* mixer/docs/C/Makefile.am:

2001-03-12 John Fleck <jfleck@swcp.com>

	* adding a new batch of omf files:
	C/netload/netload_applet-C.omf C/swapload/swapload_applet-C.omf
	C/cpuload/cpuload_applet-C.omf C/memload/memload_applet-C.omf
	C/loadavg/loadavg_applet-C.omf it/netload/netload_applet-it.omf
	it/swapload/swapload_applet-C.omf it/cpuload/cpuload_applet-it.omf
	it/memload/memload_applet-it.omf it/loadavg/loadavg_applet-it.omf 

2001-03-12 John Fleck <jfleck@inkstain.net>

	add omf files for cpumemusage (C and it)

2001-03-12 John Fleck <jfleck@inkstain.net>

	* add a bunch of omf files (Dan Mueth will visit shortly do do the
	makefile magic to incorporate these)
	mini-commander/docs/C/mini-commander_applet-C.omf 
	mini-commander/docs/it/mini-commander_applet-it.omf 
	drivemount/docs/C/drivemount_applet-C.omf 
	drivemount/docs/it/drivemount_applet-it.omf 
	life/docs/C/life_applet-C.omf 
	life/docs/it/life_applet-it.omf  
	screenshooter/docs/C/screenshooter_applet-C.omf 
	screenshooter/docs/it/screenshooter_applet-it.om

2001-03-11  Kjartan Maraas  <kmaraas@gnome.org>

	* configure.in: Generate Makefile for mixer/docs/es
	
Tue Feb 27 05:19:36 2001  George Lebl <jirka@5z.com>

	* AUTHORS: added Rusty

	* Applying:

	Mon Feb 26 23:45:45  Rusty Geldmacher <rusty@wpi.edu>

	* webcopntrol/properties.[ch]: Added browser configuration 
	dialog box.

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

	* gkb-new/descs/Basque.keyprop.in: added Basque keyprop files
	* gkb-new/xmodmap/xmodmap.eu: added xmodmap
	* gkb-new/gkb/eu.png: added few flag
	from Iñigo Serna <inigoserna@terra.es>

2001-02-26  Dan Mueth <dan@eazel.com>

	Doing some initial setup of OMF installation.  Added a handful
	of OMF files.  Note: Make sure not to set $prefix to have
	RPM_BUILD_ROOT in it or you will break this stuff.  Set
	DESTDIR=RPM_BUILD_ROOT if you like, but $prefix should refer
	to the path on the user's machine.  I'm just griping about this
	because the Ximian spec file (which I borrowed for my testing;)
	did this wrong.

	Adding directory where omf files are collected before installation:
	* Makefile.am: added omf-install in SUBDIRS
	* configure.in: Added omf-install
	* omf-install/Makefile.am:

	The real build stuff went in here for OMF files:
	* applet-docs.make: Updated

	Actual OMF files and their Makefiles:
	* another_clock/docs/C/Makefile.am:
	* another_clock/docs/C/anotherclock_applet-C.omf:
	* another_clock/docs/it/Makefile.am:
	* another_clock/docs/it/anotherclock_applet-it.omf:
	* another_clock/docs/ru/Makefile.am:
	* another_clock/docs/ru/anotherclock_applet-ru.omf:
	* another_clock/docs/uk/Makefile.am:
	* another_clock/docs/uk/anotherclock_applet-uk.omf:
	* asclock/docs/C/Makefile.am:
	* asclock/docs/C/asclock_applet-C.omf:
	* asclock/docs/it/Makefile.am:
	* asclock/docs/it/asclock_applet-it.omf:
	* asclock/docs/ru/Makefile.am:
	* asclock/docs/ru/asclock_applet-ru.omf:
	* asclock/docs/uk/Makefile.am:
	* asclock/docs/uk/asclock_applet-uk.omf:
	* battery/docs/C/Makefile.am:
	* battery/docs/C/battery_applet-C.omf:
	* battery/docs/it/Makefile.am:
	* battery/docs/it/battery_applet-it.omf:
	* cdplayer/docs/C/Makefile.am:
	* cdplayer/docs/C/cdplayer_applet-C.omf:
	* cdplayer/docs/it/Makefile.am:
	* cdplayer/docs/it/cdplayer_applet-it.omf:
	* mixer/docs/C/Makefile.am:
	* mixer/docs/C/mixer_applet-C.omf:

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

	* gkb-new/descs/*.keyprop.in: added tons of keyprop files
	* gkb-new/xmodmap/xmodmap.*: added few xmodmaps
	* gkb-new/gkb/*.png: added few flags
        Macedonian ones from Zlatko Trajceski <zlat@freemail.org.mk>

Wed Feb 07 21:31:09 2001  George Lebl <jirka@5z.com>

	* acconfig.h, configure.in, battery/read-battery.[ch],
	  mixer/Makefile.am, mixer/mixer.c: Apply patch from
	  Johnny C. Lam <jlam@netbsd.org>, for NetBSD support

	* applet-docs.make: from Johnny C. Lam <jlam@netbsd.org>:
	  Install the topic.dat files in the documentation by correctly
	  defining helpdir in applet-doc.make.

2001-02-05  Gustavo Maciel Dias Vieira  <gdvieira@zaz.com.br>

	* configure.in (ALL_LINGUAS): Added pt_BR to ALL_LINGUAS.

Sun Feb 04 20:19:53 2001  George Lebl <jirka@5z.com>

	* po/POTFILES.in: add missing files

	* wbcontrol/Makefile.am: make distcheck fixes

Thu Feb 01 16:20:00 2001 Rusty Geldmacher <rusty@wpi.edu>

	* webcontrol/webcontrol.c: Changed the way browsers are executed 
	  so as to better support multiple browsers

Sun Feb 04 04:55:25 2001  George Lebl <jirka@5z.com>

	* multiload/Makefile.am:  fix makefile bug so that ALL desktops
	  are included in the data line  (missing backslash)

Fri Jan 26 21:38:19 2001  George Lebl <jirka@5z.com>

	* asclock/Makefile.am, mini-commander/src/Makefile.am,
	  odometer/Makefile.am:  Fix rules for the i18n stuff

2001-01-25  Gediminas Paulauskas <menesis@delfi.lt>

	Require xml-i18n-tools to build from CVS, otherwise use them.
	So finally translators will be happy -- they need to translate only one
	file!
	* */Makefile.am: automatically rebuild *.desktop files, distribute both
	.desktop and .desktop.in. Misc cleanups.
	* */.cvsignore: added *.desktop.
	* .cvsignore: added xml-i18n-*.
	* */*.desktop: removed.
	* */*.desktop.in: generated new empty files.
	* configure.in: added xml-i18n macro.

Fri Dec 29 23:09:00 2000  Rusty Geldmacher <rusty@wpi.edu>

	* webcontrol/session.c, webcontrol/session.h: Added these two 
	  files to put session handling stuff in.  Implemented complete
	  sesison saving and restoring.
	* webcontrol/properties.c: Added property for setting the length
	  of the URL history and for clearing the URL history.
	* webcontrol/webcontrol.b, webcontrol/properties.c: Added cursory
	  support for multiple browsers.  Made config options and lauch
	  options. MAde browsers selectable in the property box.
	
Thu Dec 14 00:49:45 2000  Rusty Geldmacher <rusty@wpi.edu>

	* webcontrol/webcontrol.c, webcontrol/properties.c: Split up the 
	  webconotrol functionality and the properties stuff int two 
	  separate c and header files.  Reformatted code.
	* webcontrol/webcontrol.c, webcontrol/properties.c: Added a width 
	  property.
	* webcontrol/webcontrol.c. webcontrol/properties.c: Made option for 
	  the "Clear" button to be displayed or not. So now, if you want, 
	  the applet fits on a 'tiny' sized panel.
	* webcontrol/webcontrol.c: The URL input box is now a combo that 
	  keeps track of the URLs you have typed in. Every time you type a 
	  new URL it adds it to the history and doesn't let duplicates in.

Thu Dec 14 03:42:37 2000  George Lebl <jirka@5z.com>

	* configure.in:  check for canvas pixbuf stuff

Tue Dec 05 20:11:24 2000  George Lebl <jirka@5z.com>

	* another_clock/another_clock.c, battery/battery.c,
	  clockmail/clockmail.c, diskusage/diskusage.c,
	  drivemount/drivemount.c, fifteen/fifteen.c, gkb-new/gkb.c,
	  gnotes/gnotes_applet.c, life/life.c, mixer/mixer.c, 
	  modemlights/modemlights.c, screenshooter/screenshooter_applet.c,
	  slashapp/slashapp.c, sound-monitor/main.c:
	  I have not yet figured out why we wrote docs, since no one seems
	  to be using it.  Hmm, bind signals on applet widget before we
	  call applet_widget_add as otherwise we have a race.

Wed Nov 29 2000  Darragh O'Brien <darragh.obrien@sun.com>

	* cdplayer/cdplayer.c, cdplayer/cdrom-solaris.c: Added Solaris
	  support.

Sat Nov 25 14:50:34 2000  George Lebl <jirka@5z.com>

	* webcontrol/webcontrol.c: Use gnome-moz-remote instead of netscape,
	  as this does all the right stuff, and will also work with mozilla.
	  If that didn't work use gnome_url_show, as that will launch
	  "something".

Sat Nov 25 13:50:46 2000  George Lebl <jirka@5z.com>

	* gtik/gtik.c:  Fix several most obvious possible overflow errors,
	  a couple of crashes, corruption of clist data, and do the first
	  update in an idle handler so that we first draw, that's ugly
	  but better then the current behaviour of hanging with an invisible
	  applet.  Also get rid of a gccism.

2000-11-20  Dan Mueth <d-mueth@uchicago.edu>

    * applet-docs.make: Have it install GIF's in stylesheet-images/
      (I'm not sure why it is trying to install PNG's and leaving
       out the GIF's which these normally are.  However we need
       this to work both for people who like their system to work
       properly and also so that we can actually test that other
       parts of the system and the help browser are not broken.)

2000-11-08  Yukihiro Nakai  <nakai@gnome.gr.jp>

	* */*.desktop: Add sk(Slovak) translation and sort all! :(

Mon Nov  6 18:08:31 2000  Jonathan Blandford  <jrb@redhat.com>

	* */*-applet.sgml: removed.

2000-11-06  Dan Mueth <d-mueth@uchicago.edu>

        * Nautilus requires that the doc names match the directory names:
          .../gnome/help/<appname>/<lang>/<appname>.sgml where one would
          type "gnome-help:<appname>" in Nautilus.  It is currently broken
          for all applets, since we use
          .../gnome/help/<name>_applet/<lang>/<name>-applet.sgml.
          Thus, we have to change all <name>-applet.sgml to
          <name>_applet.sgml.
        * First, jrb is renaming the files as described above:
        * applet-docs.make: Change all "-applet" to "_applet"

2000-11-05  Yukihiro Nakai <nakai@gnome.gr.jp>

	* configure.in: Just sort ALL_LINGUAS

2000-11-04  Dan Mueth <d-mueth@uchicago.edu>

        * applet-docs.make: Fixed one bug.  Have it install $(sgml_files).

2000-10-20  Christophe Merlet  <christophe@merlet.net>

	* */*.desktop : Updated somes french strings.

Tue Oct 17 10:05:47 2000  George Lebl <jirka@5z.com>

	* diskusage/diskusage.c: use gulong instead of unsigned
	  for the free_space.  Hopefully this will work fine on very
	  large filesystems.  I'm accepting donations of such hard drives
	  to test this properly.  Money and beer also accepted.

2000-10-17  Yukihiro Nakai  <nakai@gnome.gr.jp>

	* configure.in: Add zh_CN.GB2312 to ALL_LINGUAS.

Thu Oct 12 17:27:15 2000  George Lebl <jirka@5z.com>

	* configure.in:  Add another_clock/docs/uk/Makefile

Sat Oct 07 11:26:05 2000  George Lebl <jirka@5z.com>

	* diskusage/diskusage.c: Added a modified fix from Paul Hirst
	  <p.hirst@jach.hawaii.edu> to fix it reporting free space above
	  4GB.  Basically we just assume we get the kB and we don't multiply
	  by 1024 to get bytes.

2000-10-02  Christophe Merlet  <christophe@merlet.net>

	* */*.desktop : Added french strings when needed.

Wed Sep 27 17:10:50 2000  George Lebl <jirka@5z.com>

	* cdplayer/cdplayer.[ch]: store the path to the device in the
	  CDPlayerData structure.  This fixes a problem of the cdplayer
	  not working sometimes as it was using freed data.

Tue Aug 29 19:02:36 2000  George Lebl <jirka@5z.com>

	* configure.in: added the it directory makefile for webcontrol

2000-08-25  Leandro su Nerone  <lnoferin@cybervalley.org>

	* configure.in (gnomelocaledir): (Re) added tickastat/docs/it and
	webcontrol/docs/it

2000-08-22  Dan Damian  <dand@dnttm.ro>

	* configure.in (ALL_LINGUAS): Added Romanian (ro).

Mon Aug 21 21:28:43 2000  George Lebl <jirka@5z.com>

	* configure.in, tickastat/docs/Makefile.am,
	  webcontrol/docs/Makefile.am:  Removed the "it" directory from
	  the build as it's non-existant and makes things fail

Thu Aug 10 13:43:26 2000  George Lebl <jirka@5z.com>

	* cdplayer/cdplayer.c: Close the cd device after each operation so
	  that we don't "hog" the CD if the applet is on the panel.  Taken
	  from owen taylors patch.

2000-07-19  Leandro su Nerone  <lnoferin@cybervalley.org>

	* configure.in: added italian translation for Where Am I?,
	tick-a-stat and screenshooter and updated it.po

2000-07-17  Szabolcs BAN <shooby@gnome.hu>

	* gkb-new: Made LOTS ofbugfixes, added Hungarian documentation,
        thanx for my dear Emese <emese@eik.bme.hu>

2000-07-04  Szabolcs BAN <shooby@gnome.hu>

	* gkb-new: added another keymap from Alexandre Leduc
	<alexleduc@yahoo.com> and his LUG.

2000-07-13  Leandro su Nerone  <lnoferin@cybervalley.org>

	* configure.in: added italian translation for Quicklaunch

2000-07-10  Leandro su Nerone  <lnoferin@cybervalley.org>

	* configure.in: added itlian translation for gweather

2000-06-15  Leandro su nerone  <lnoferin@cybervalley.org>

	* configure.in (gnomelocaledir): Added Makefiles for odometer
	life and mini-commander (italian translations)

2000-06-13  Leandro su nerone  <lnoferin@cybervalley.org>

	* configure.in (gnomelocaledir): Added italian translation for
	sound-monitor
	Modified email contact for italian translation for diskusage

2000-06-10  Leandro su nerone  <lnoferin@cybervalley.org>

	* configure.in (gnomelocaledir): Added italian translation for
	charpick, gkb-new.
	Fixed lang="it" for drivemount-applet.sgml, memload-applet.sgml,
	loadavg-applet.sgml, netload-applet.sgml, swapload-applet.sgml,
	cpuload-applet.sgml, diskusage-applet.sgml and gnotes-applet.sgml.
	Added italian translation for jbc.

2000-05-24  Leandro su nerone  <lnoferin@cybervalley.org>

	* configure.in : italian translation for Another Clock,
	cpumemusage, mixer, fifteen, geyes 

2000-05-22  Kjartan Maraas  <kmaraas@gnu.org>

	* cpumemusage/cpumemusage.c: Added bindtextdomain() and 
	textdomain() in main().
	
2000-05-14  Andreas Hyden  <a.hyden@cyberpoint.se>

	* webcontrol/webcontrol_applet.desktop: Added Swedish translation.

2000-05-14  Andreas Hyden  <a.hyden@cyberpoint.se>

	* asclock/asclock_applet.desktop: Added Swedish translation.

Mon May 08 21:36:42 2000  George Lebl <jirka@5z.com>

	* gkb-new/prop.c (delmap_cb) (pathtoicon_cb): fix warnings

Mon May 08 19:11:49 2000  George Lebl <jirka@5z.com>

	* asclock/asclock.c: only define close_application if building for
	  GTK only

Mon May 08 18:45:26 2000  George Lebl <jirka@5z.com>

	* cdplayer/cdplayer.[ch]: apply patch from Robert Wittams
	  <robert.wittams@ic.ac.uk> and massage it a lot.  It will now
	  correctly set itself up on more size/orient configurations
	  small/tiny vertical still is too big but oh well.  Also fixed
	  a bad segfault when cdrom was not available.

	* gkb-new/gkb_xmmap: remove as this is a generated file

2000-05-09  Karl Eichwalder  <ke@suse.de>

	* configure.in (AC_OUTPUT): Add multiload/docs/it/Makefile.

2000-05-01  Dan Mueth <d-mueth@uchicago.edu>

	* gkb-new/docs/C: Merged Shooby's docs with mine.  Took new
	screenshots with standard theme.
	* gkb-new/gkb.c: Swapped positions of About... and Help in menu
	* gkb-new/prop.c: Fixed properties URL.

2000-04-27  Szabolcs BAN <shooby@gnome.hu>

	* Added gkb-new (the new gkb applet)
	- more keyboard maps at same time
	- gdk-pixbuf
	- documentations

2000-04-25 John Fleck <jfleck@inkstain.net>

	* updated dtd in:
	* ../diskusage/docs/C/diskusage-applet.sgml
	* ../modemlights/docs/C/modemlights-applet.sgml
	* ../webcontrol/docs/C/webcontrol-applet.sgml

2000-04-25  Fatih Demir	<kabalak@gmx.net>
	
	* ./*/*.desktop : Added [tr] sections ..

2000-04-20  Christopher R. Gabriel  <cgabriel@linux.it>

	* configure.in: added Makefile for cdplayer italian translation

2000-04-20  Jacob Berkman  <jacob@helixcode.com>

	* gnome-applets.spec.in (Requires): new gdk-pixbuf

	* applet-docs.make (install-data-am): copy topic.dat

2000-04-17  Karl EICHWALDER  <ke@suse.de>

	* README: Add requirements.

2000-04-15 Dan Mueth <d-mueth@uchicago.edu>

	* asclock/docs/*: Fixed screenshot names.  Fixed markup and
	layout problems and cleaned up some.

2000-04-15  Eric Baudais  <baudais@okstate.edu>

	* asclock/docs/C/asclock-applet.sgml: Added a bit about trademarks.
	* cpumemusage/docs/C/cpumemusage-applet.sgml: Added a bit about trademarks.
	* gkb/docs/C/gkb-applet/sgml: Added a bit about trademarks.

2000-04-14 Dan Mueth <d-mueth@uchicago.edu>

	* Added docs to Tick-a-Stat and made binding from Help menu
	but not from Help buttons

2000-04-14  Eric Baudais  <baudais@okstate.edu>

	* asclock/docs/C/Makefile.am: Installed new screenshots.
	* cpumemusage/docs/C/Makefile.am: Installed new screenshot.

2000-04-14 Dan Mueth <d-mueth@uchicago.edu>

	* Added docs from Chris Lyttle (but with newer template) to
	cdplayer applet and bound into app.

2000-04-14  Eric Baudais  <baudais@okstate.edu>

	* cpumemusage/docs/C/*.sgml: Added a screenshot to the docs.

	*cpumemusage/docs/C/cpumemusage-applet.png: Pic added for screenshot.

2000-04-14 Aaron Weber <aaron@helixcode.com>
	* same as below, but did it right this time.

2000-04-14 Aaron Weber <aaron@helixcode.com>

	* asclock/docs/C/*.sgml: moved documentation to template for GNOME 1.2 release, added
	screenshots.

2000-04-11  Eric Baudais  <baudais@okstate.edu>

	* cpumemusage/docs/C/*.sgml: Changed the license to the FDL and
	corrected some typos.

2000-04-11  Pablo Saratxaga <pablo@mandrakesoft.com>

	* *.desktop: Added Lithuanian strings from Gediminas Paulauskas
	  <menesis@delfi.lt>

2000-04-08  Dan Mueth <d-mueth@uchicago.edu>

	* gkb/docs/C/*.sgml: Updated docs to latest template.
	* gkb/gkb.c: Connected docs. Added phelp_cb().
	* gkb/docs: Added doc files and directories

2000-04-06  Dan Mueth <d-mueth@uchicago.edu>
	* charpick/properties.c: Link to docs
	* charpick/charpick.c: Link to docs
	* charpick/docs/*: Added docs

2000-04-04  Jacob Berkman  <jacob@helixcode.com>

	* Makefile.am (DIST_SUBDIRS): don't build clipboard applet
	by default per request from author

	* webcontrol/webcontrol.c (phelp_cb): use correct anchor

	* diskusage/properties.c (phelp_cb): use correct anchor

	* asclock/dialogs.c (property_help_cb): use correct anchor

2000-03-28  Jason Leach  <leach@wam.umd.edu>

	* gkb/gkb.c (gkb_expose): oops, made a boo-boo, we need to have
	the expose callback because if the user adds an applet then moves
	their panel we need to redraw.

2000-03-27  Jason Leach  <leach@wam.umd.edu>

	(cleaning up and closing bug #6686)
	
	* gkb/gkb.c (struct _GKB): removed unnecessary variable 'curpix'
	(create_gkb_widget): no need to connect all the other signals
	besides the "button_press_event".
	(gkb_expose): removed the now unused function (and its prototype).
	(gkb_empty): ditto.
	(load_properties): we don't really need a static gkb_properties
	struct of 'defaults', its gone.  spaced things out a little nicer
	here too.
	(gkb_activator): organize the right click popup as Properties then
	About

2000-03-30  Jacob Berkman  <jacob@helixcode.com>

	* cpumemusage/docs/C/cpumemusage.sgml: remove DOCTYPE

2000-03-27  Christopher R. Gabriel  <cgabriel@firenze.linux.it>

	* configure.in: added clockmail manual (italian
	translation)

2000-03-25  Jacob Berkman  <jacob@helixcode.com>

	* diskusage/properties.c (properties): 
	* asclock/dialogs.c (properties_dialog): hook up help button

2000-03-27  Christopher R. Gabriel  <cgabriel@firenze.linux.it>

	* configure.in: added asclock manual
	italian translation.

2000-03-18  Jacob Berkman  <jacob@helixcode.com>

	* configure.in: generate docs Makefiles

2000-03-17  Jacob Berkman  <jacob@helixcode.com>

	* cpumemusage/cpumemusage.c (main): add docs from Telsa

2000-03-15  Jason Leach  <leach@wam.umd.edu>

	* cdplayer/cdplayer.c (main): renamed "run gtcd..." to "Run CD
	Player...", bug #6946
	
	* cdplayer/cdplayer.c (about_cb): Added About dialog, bug #6844

2000-03-14  Jason Leach  <leach@wam.umd.edu>

	* diskusage/properties.c (create_frame): re-designed preferences
	for aesthetic purposes.

	* diskusage/properties.c: Added the ability to configure the font
	used in the applet display

	* diskusage/diskusage.c (draw_v): corrected the calculations for
	displaying free space, bug #7162
	(draw_h): fixed that here too

	* diskusage/properties.c:
	* diskusage/diskusage.c: removed a bunch of unecessary #include's
	
	* diskusage/properties.c (create_frame): fixed a bug where each
	time you opened the properties it would give a Gtk-warning to
	console about gnome_property_box_changed() and page_num

	* diskusage/diskusage.c (main): fixed a bug where on each run you
	would see 15-20 Gtk-warnings about "gc != NULL".

	* cpumemusage/cpumemusage.c (cpumemusage_about): Added About
	dialog, bug #7292
	
2000-02-29  Jacob Berkman  <jacob@helixcode.com>

	* webcontrol/webcontrol.c (main): rearrange and use stock
	pixmap

	* diskusage/diskusage.c (main): rearrange and use stock pixmap

	* asclock/asclock.c: add help menu item

	* asclock/docs/: docs from telsa

2000-02-26 Gregory McLean <gregm@comstar.net>

	* New and improved (tm) spec file.

2000-02-26  Martin Baulig  <martin@home-of-linux.org>

	* diskusage/: Added docs from John Fleck <jfleck@inkstain.net>
	and "Help" button.

	* modemlights/: Added docs from John Fleck <jfleck@inkstain.net>
	and "Help" button.

	* webcontrol/: Added docs from John Fleck <jfleck@inkstain.net>
	and "Help" button.

2000-02-26  Martin Baulig  <martin@home-of-linux.org>

	* docs/: New directory.
	* docs/C/: New directory.
	* docs/C/gpl.sgml: GNU General Public license in SGML format (<verb>).
	* docs/C/gpl2.sgml: GNU General Public license as "real" SGML file.

2000-02-24  Martin Baulig  <martin@home-of-linux.org>

	* multiload/ChangeLog: We now have our own ChangeLog file here.
	Added everything until back to the "MultiLoad Applet Revolution".

2000-02-24  Martin Baulig  <martin@home-of-linux.org>

	* multiload/cpuload.c: Added "About" dialog.
	* multiload/memload.c: Added "About" dialog.
	* multiload/swapload.c: Added "About" dialog.
	* multiload/loadavg.c: Added "About" dialog.
	* multiload/netload.c: Added "About" dialog.

2000-02-24  Martin Baulig  <martin@home-of-linux.org>

	* diskusage/diskusage.c: Added "About" dialog.
	[FIXME: Bruno, if you read this - your email address in the AUTHORS
	file doesn't seem to work anymore.]

	* diskusage/diskusage.c: Added "Update" menu entry to immediately
	update the widget. Make sure things are immediately redrawn when
	configuration changes, not only after the first timeout.

	* diskusage/diskusage.c: Comment out the "Browse" button until this
	actually works.

	* diskusage/diskusage.c (diskusage_get_best_size_h): Calculate best
	height for a horizontal applet.
	(diskusage_resize): Use diskusage_get_best_size_h () to determine the
	applet height for horizontal applets when the corresponding options was
	set in the preferences dialog.

2000-02-22  Shooby Ban <bansz@szif.hu>

	* gkb/gkb.c: Fixed the rendering error (at clicking the flag it
          didn't want to change)...

2000-02-22  Martin Baulig  <martin@home-of-linux.org>

	* diskusage/diskusage.c (diskusage_get_best_size_v): Calculate best
	height for a vertical applet.
	(diskusage_resize): Use diskusage_get_best_size_v () to determine the
	applet height for vertical applets when the corresponding options was
	set in the preferences dialog. Call gtk_widget_set_usize () on
	`my_applet', not on `disp' so we don't make the panel larger.

	* diskusage/properties.h (diskusage_properties): Added `best_size'.
	* diskusage/properties.c (properties): Added "Automatically pick best
	applet size" option to the preferences dialog.

Mon Feb 21 04:18:41 2000  George Lebl <jirka@5z.com>

	* gkb/gkb.c: fixed redrawing after switching the layout

2000-02-21  Martin Baulig  <martin@home-of-linux.org>

	Implement size/orientation hints in the diskusage applet.

	* diskusage/properties.h (diskusage_properties): Replaced `width'
	and `height' with `size'.
	* diskusage/properties.c (properties): Only provide an "Applet size"
	option in the properties dialog; this is the width an an horizontal
	panel and the height in a vertical one.
	(apply_cb): Call applet_widget_sync_config ().

	* diskusage/diskusage.h (DiskusageInfo): Added `pixel_size'.
	* diskusage/diskusage.c (diskusage_resize): Honor size/orientation
	hints from the panel.
	(draw_v): Display sizes in kilobytes and megabytes for small vertical
	panels as it was suggested by Matthias Warkus on the bug tracker.
	Also did some changes here to make it look a bit better on smaller
	panels.
	(applet_change_orient_cb): Updated.
	(applet_change_pixel_size): New static function.
	(applet_save_settion): Fixed session managing code.

2000-02-20  Jacob Berkman  <jacob@helixcode.com>

	* multiload/netload.c (make_netload_applet): have netload use
	netload local properties instead of swapload's properties

2000-02-20  Martin Baulig  <martin@home-of-linux.org>

	Added a load average applet to the multiload applet.

	* multiload/loadavg.c: New file.
	* multiload/loadavg_applet.desktop: New file.

2000-02-20  Martin Baulig  <martin@home-of-linux.org>

	Changed most of the properties code from the multiload applet. We
	now have two types of properties: global properties (which you can
	configure using the "Default Properties" applet menu entry) and local
	ones (which you can configure using the "Properties" applet menu entry).

	Global properties are default values which are used for newly created
	instances of the load applets.

	Additionally, each of the load applet also has local properties which
	are only for this single instance. This means that you can now have
	two or more cpuload applets with different size, speed, etc. The
	local properties dialog also has a "use default properties" checkbox;
	if it is checked, the global properties are used.

	This is especially useful when you have more than one panel ...

	* multiload/local-properties.h: New file.
	* multiload/local-properties.c: New file.

	* multiload/*: Larger changes in the properties code to do what is
	described above.

2000-02-19  Martin Baulig  <martin@home-of-linux.org>

	Implemented panel size and orientation hints.

	* multiload/properties.h (LoadGraphProperties): `adj_data' is now
	an array of size 2, not 3.
	* multiload/load-graph.h (LoadGraph): Removed `width' and `height'.
	Added `applet', `size', `orient', `pixel_size' and `allocated'.
	* multiload/load-graph.c (load_graph_new): Replaced `width' and
	`height' parameters with `size' and added new `applet' parameter.

2000-02-17  Jason Leach  <leach@wam.umd.edu>

	(closing bug #2613)

	* configure.in: if $host is *irix*, set CDROM_HOST accordingly
	(and define CDROM_LIBS as irix needs it)

	* cdplayer/Makefile.am: LDADD needs CDROM_LIBS
	
	* cdplayer/cdrom-irix.c: new file, submitted via patch from David
	Kaelbling <drk@sgi.com>

	* cdplayer/cdrom-interface.h: appropriate changes for sgi cd-rom
	devices

2000-02-16  Fatih Demir <kabalak@gmx.net>

	* configure.in : Added tr to ALL_LINGUAS .

2000-02-14  Jacob Berkman  <jacob@helixcode.com>

	* configure.in: patch from Dave Larson <davlarso@acm.org> for
	Solaris support

	* gnome-applets.spec.in: an attempt at keeping my
	inbox a bit less cluttered when I make a release

	* .cvsignore:
	* configure.in: 
	* Makefile.am: add gnome-applets.spec

Sun Feb 13 12:49:28 2000  George Lebl <jirka@5z.com>

	* configure.in: use AM_GNOME_GETTEXT instead of AM_GNU_GETTEXT

2000-02-06  Martin Baulig  <martin@home-of-linux.org>

	* configure.in: Disable modemlights if we're not on one of
	either Linux, FreeBSD, NetBSD or OpenBSD.

2000-01-30  Fabrice Bellet  <Fabrice.Bellet@creatis.insa-lyon.fr>

	* configure.in : odometer/def_theme useless now.

2000-01-29  Jacob Berkman  <jacob@helixcode.com>

	* Makefile.am: add quicklaunch, and don't build gumma by default

Sat Jan 29 19:12:01 2000  Tom Gilbert  <gilbertt@tomgilbert.freeserve.co.uk>

	* On an anti-warning hunt using CFLAGS="-O6 -g -W -Wall
        -Wmissing-prototypes -Wmissing-declarations". Don't mind me.

Fri Jan 28 23:13:16 2000  Tom Gilbert  <gilbertt@tomgilbert.freeserve.co.uk>

	* Oops. The screenshooter makefile was being generated twice.

2000-01-04  Yuri Syrota  <rasta@renome.rovno.ua>

	* configure.in (ALL_LINGUAS): Added Ukrainian (uk)

1999-12-07  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* multiload/main.c: 
	* multiload/netload.c:
	* multiload/linux-proc.c: fix broken code.  Now this
	all works, plus there is now support for eth devices.

	slip/ppp/lo fix inspired by patch from Eduardo Perez 
	<100018135@alumnos.uc3m.es>

Fri Nov 19 00:29:34 1999  Pablo Saratxaga <pablo@mandrakesoft.com>

	* */*.desktop: added Greek descriptions from
	Simos Xenitellis <simos@hellug.gr> to the menu files

Sun Oct 31 17:06:03 1999  George Lebl  <jirka@5z.com>

	* mixer/mixer.c: use pixel sizes

Sun Oct 31 16:08:15 1999  George Lebl  <jirka@5z.com>

	* gkb/gkb.c: use pixel size stuff, remove warnings and add
	  implementation of create_icon_entry, you shouldn't assume
	  any panel-util.c functions, I'll prolly have to make sure
	  that they aren't linked, 

Sun Oct 31 15:51:34 1999  George Lebl  <jirka@5z.com>

	* cpumemusage/cpumemusage.c: use the pixel sizes and fix a warning
	  on startup

Sun Oct 31 00:31:57 1999  George Lebl  <jirka@5z.com>

	* configure.in,Makefile.am: really only build screenshooter when we
	  have wordexp

Sat Oct 30 22:29:31 1999  George Lebl  <jirka@5z.com>

	* configure.in: rather then checking for wordexp.h check for the
	  actual function since it seems some versions of glibc have
	  included the include file and not the implementation

Fri Oct 29 19:40:51 1999  Tom Gilbert  <gilbertt@tomgilbert.freeserve.co.uk>

	* configure.in: checks for wordexp.h
	* Makefile.am: conditional screenshooter compile

1999-10-29  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* configure.in: 
	* Makefile.am: add screenshooter applet
	
1999-10-22  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* configure.in: bump to 1.1.0 and add warning,
	don't make gnome-pager/Makefile

	* Makefile.am: don't dist/build gnome-pager

1999-10-21  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* MAINTAINERS (Email): add tim janik (desk-guide)

1999-10-18  Martin Baulig  <martin@home-of-linux.org>

	* cpumemusage/proc.c (needed_cpu_flags): `GLIBTOP_CPU_NICE'
	and `GLIBTOP_CPU_SYS' are not essential for the functionality of
 	this applet.

1999-10-17  Matthias Warkus  <mawa@iname.com>

	* another_clock/gnome-another-clock.png: Icon by Sean added in all
	the appropriate places.

1999-10-07  Jesus Bravo Alvarez  <jba@pobox.com>

	* configure.in (ALL_LINGUAS): Added Galician (gl)

1999-10-05  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* configure.in: got rid of some unnecessary checks (fixes 
	bug #2437)

	* configure.in: fix up checks for XML, so that now we can
	continue our build if XML is not present.

	* configure.in:
	* Makefile.am: add bug-applet

1999-10-01  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* mixer/mixer.c (openMixer): display a dialog instead of
	a g_warning so that the user will actually see the message
	(main): try to open the mixer after initializing gtk, so 
	that we *can* show the dialog

	fixes bug #2502

1999-09-28  Pablo Saratxaga <pablo@mandrakesoft.com>

        * gkb/gkb.c,gkb/gkb/ee.xpm,gkb/xmodmap/xmodmap.ee:
        added Estonian keyboard sent by Lauris Kaplinski <lauris@ariman.ee>

1999-09-26  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* multiload/main.c (main): fix startup crash (from 1-0)

Tue Sep 21 12:18:49 1999  John Ellis  <johne@bellatlantic.net>

	* sound-monitor/themes/Makefile.am: Fix installed files for blue theme.

1999-09-14  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* configure.in: make sound-monitor/pvd/Makefile

1999-09-12  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* configure.in: fix so jwise can compile his sound-monitor

	* config.h.in: remove duplicate PACKAGE and VERSION

1999-09-11  Pablo Saratxaga <pablo@mandrakesoft.com>

	* gweather/weather.c: corrected an english typo and changed
	"Clear" to "Clear Sky" as "Clear" is also usead for the "Clear"
	button on text input widgets; and those two translate very
	differently on several languages.

1999-09-10  Pablo Saratxaga <pablo@mandrakesoft.com>

	* configure.in: updated ALL_LINGUAS line

1999-09-09  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* batmon/THIS_APPLET_IS_DEAD:
	bussign/THIS_APPLET_IS_DEAD:
	esd-manager/THIS_APPLET_IS_DEAD:
	freshapp/THIS_APPLET_IS_DEAD:
	fvwm-pager/THIS_APPLET_IS_DEAD:
	gticker/THIS_APPLET_IS_DEAD:
	icewm-pager/THIS_APPLET_IS_DEAD:
	netload/THIS_APPLET_IS_DEAD:
	netwatch/THIS_APPLET_IS_DEAD:
	oldslashapp/THIS_APPLET_IS_DEAD:
	winlist/THIS_APPLET_IS_DEAD: hints for translators etc.
	
	* clipboard/Makefile.am:
	gumma/cd/Makefile.am:
	geyes/Makefile.am:
       	gumma/gqmpeg/Makefile.am:
	geyes/themes/Makefile.am:
	gumma/xmms/Makefile.am:
	gnotes/Makefile.am:
	tickastat/news_scripts/Makefile.am:
	gumma/Makefile.am: fixes for distcheck (still doesn't work yet)

	* configure.in: no longer make non-made Makefiles
	don't make themes/*/Makefile

	* Makefile.am: no longer dist non-made applets

	* */themes/Makefile.am: hack so that we don't have to
	traverse the directories to install themes (so autoconf
	doesn't take a week to run)

	* */themes/*/Makefile.am: remove these unnecessarily files

	* configure.in: little improvement from yesterday's
	xmms attempt

1999-09-08  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* Makefile.am (always_built_SUBDIRS): added gumma

	* configure.in: check for xmms (improvements welcome)

1999-09-05  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* cdplayer/cdplayer.c (create_cdplayer_widget): remove
	unused variable and fixed memory leak

1999-09-04  Fabrice Bellet  <Fabrice.Bellet@creatis.insa-lyon.fr>

	* configure.in (AC_OUTPUT): Added odometer/themes directories

1999-08-26  Fabrice Bellet  <Fabrice.Bellet@imag.fr>

	* Makefile.am (always_built_SUBDIRS): 
	* configure.in (AC_OUTPUT): Added odometer. This is a mouse
	travel counter.

1999-08-25  Dave Camp  <campd@oit.edu>

	* configure.in (AC_OUTPUT): Added Default-tiny theme makefile.

1999-08-25  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* Makefile.am: maybe try building/installing gweather and 
	slashapp these days?

1999-08-24  Radek Doulik  <rodo@aquarius>

	* cpumemusage/cpumemusage.c (pack_procbars): (fix) set proper size on start

1999-08-23  Alexandre Owen Muniz  <munizao@cyberhighway.net>

	* Makefile.am (always_built_SUBDIRS):
	* configure.in (AC_OUTPUT): Added clipboard. This is a text clipboard
	applet with history.

1999-08-22  John Kodis  <kodis@jagunet.com>

	* whereami/whereami.c (button_handler): Added code to display the
	cursor position immediately after getting the clicked signal
	rather than waiting to receive the initial motion event.

1999-08-20  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* whereami/whereami.c: made state enum types
	capital letters so that idle does not conflict with
	one defined in <unistd.h> on my freshly installed
	system

1999-08-18  Shooby Ban  <bansz@szif.hu>
	* gkb/gkb/uy.xpm: Added beautiful flag for Uruguay,
	thank you, Eduardo Roldan <trazor@internet.com.uy>

1999-08-15  Matthias Warkus  <mawa@iname.com>

	* cdplayer/cdplayer_applet.desktop: Made it use mc/i-cdrom.png as
	menu icon. Only when I was trying to commit this I realised Jacob
	had already made it use tcd/cdrom.xpm. The reason I changed it
	again is that png icons are of higher quality and that any Gnome
	installation should have gmc, while not all have gnome-media for gtcd.

1999-08-14  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* mixer/mixer.c (create_computer_mixer_widget): applied
	patch from Tom Gilbert <gilbertt@tomgilbert.freeserve.co.uk>
	to make it a bit smaller
	(mute_cb): remove unused variable 'nvol'

	* mixer/mixer_applet.desktop (Icon): use the mixer's
	new icon

	* cdplayer/cdplayer_applet.desktop (Icon): use
	gtcd's (if available)

1999-08-11  Shooby Ban  <bansz@szif.hu>
	* gkb/gkb.c: Fixed compiling error.
	I hope. Sorry.

1999-08-10  Shooby Ban  <bansz@szif.hu>
	* gkb/gkb.c: Added code of 
	Charles Levert <charles@comm.polymtl.ca>
	New feature: dynamic list of xkb maps.
	Please feedback us if fails.

1999-08-03  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* configure.in: add geyes Horrid makefile

1999-08-01  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* multiload/swapload.c (make_swapload_applet): 
	* multiload/memload.c (make_memload_applet): 
	* multiload/cpuload.c (make_cpuload_applet): use index menu
	image

	* cdplayer/cdplayer.c (main): use CD menu image

	* README.CVS: renamed README.cvs to conform to GNOME
	programming guildelines.  Also added a recommendation
	to read the GNOME Programming Guidelines

1999-07-31  John Kodis  <kodis@jagunet.com>

	* Makefile.am (always_built_SUBDIRS):
	* configure.in (AC_OUTPUT): Added the whereami applet, a simply
	little applet for displaying the cursor position and drag area.

	* AUTHORS: Added myself, based on whereami applet authorship.

1999-07-28  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* MAINTAINERS:
	* AUTHORS: add gnotes author
	
	* Makefile.am: add gnotes

	* configure.in: check for XML, and create gnotes/Makefile

1999-07-26  Radek Doulik  <rodo@aquarius.localnet>

	* cpumemusage/cpumemusage.c (applet_change_size): implement resizing
	* cpumemusage/AUTHORS: new file

1999-07-18  Jacob Berkman  <jberkman@andrew.cmu.edu>
	
	* Makefile.am (ghttp_applets): 
	* configure.in: added gweather

	* MAINTAINERS: 
	* AUTHORS: added gweather author

Mon Jul 12 23:34:24 1999  John Ellis  <johne@bellatlantic.net>

	* configure.in (AC_OUTPUT): Added tickastat/news_scripts.

1999-07-12  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* battery/battery.c (make_new_battery_applet): Move the dialog
	here, this didn't work exactly how I thought it did

1999-07-12  Shooby Ban  <bansz@szif.hu>

	* gkb/gkb/ca.xpm,qc.xpm: Updated canadian and quebecois flags,
	thanx Charles Levert <charles@comm.polymtl.ca>...

1999-07-12  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* battery/battery.c (make_new_battery_applet): Do a test run of
	battery_read_charge() so we can do an error box and die before
	we make an applet  (I tried putting this where the other dialog
	was, but it would put 4 dialogs up)

1999-07-11  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* gkb/gkb.c (gkb_activator): load properties after creating widget
	in order to eliminate GTK warnings

	* asclock/dialogs.c (properties_dialog): 
	* asclock/timezone.c (enum_timezones): 
	* cdplayer/cdplayer.c (cd_panel_update): ANSI C patch provided by 
	Drazen Kacar <dave@srce.hr> in GNOME bug report #861

	* asclock/asclock.c (main): Tomas broke this; the properties dialog
	expects to get something from the callback.

	* diskusage/diskusage.c (main): pass VERSION to applet_widget_init
	
	* another_clock/another_clock.c (cb_about): 
	* gkb/gkb.c (about_cb): 
	* webcontrol/webcontrol.c (about_cb): 
	* life/life.c (about): Use VERSION in about box

1999-07-10  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* README: a little blurb saying that gnome-core is required

1999-07-10  Tomas Ogren  <stric@ing.umu.se>

	* */*: i18n updates

1999-07-10  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* another_clock/another_clock_applet.desktop: fix a typo which
	caused panel not to add this as a menu item

	* gnome-applets take 2.  Miguel did a copy on the cvs machine of
	gnome-core/applets to gnome-applets, so now this has the CVS 
	history.  I then synched it back to the changes that were needed
	to make it its own module.

Tue Jul  6 10:31:36 1999  John Ellis  <johne@bellatlantic.net>

	* configure.in (AC_OUTPUT): Added clockmail/themes directories.

1999-07-05  Raja R Harinath  <harinath@cs.umn.edu>

	* configure.in (GNOME_INIT): Use instead of GNOME_INIT_HOOK.
	* Makefile.am (macros/macros.dep): Add rule for updating
	aclocal.m4. 

1999-07-05  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* The gnome-core/gnome-applets split.  Moved applets here
	from gnome-core/applets.

	* MAINTAINERS: new file to make the gnome-applets-maint@gnome.org
	mailing list work

	* geyes/: gEyes applet

	* sound-monitor/: esd sound monitor applet

	* tickastat/: file tailing/load monitoring/core dump catching
	applet
	
	* */Makefile.am: use $(GNOME_APPLETS_LIBS) instead of lots
	of other vars; don't include ../panel; misc fixes to work
	with the new module

Tue Jun 22 04:48:51 1999  John Ellis  <johne@bellatlantic.net>

	* properties.c (property_load): Fix for newest esound, make sure
	esd_host is NULL for local machine.

Tue Jun 22 04:48:51 1999  John Ellis  <johne@bellatlantic.net>

	* properties.c (property_load): Fix for newest esound, make sure
	esd_host is NULL for local machine.

1999-07-06  Anders Carlsson  <anders.carlsson@tordata.se>

	* tasklist/*: Added tasklist applet

1999-06-28  Jaka Mocnik  <jaka.mocnik@kiss.uni-lj.si>

	* gen_util/mailcheck.c (check_mail_file_status): properly check for
	unread mail on remote servers. fix trouble with newmail and local
	mailspools. hopefully. things should work fine now - they do for
	me at least.
	(mail_check_timeout): use animation when unreadmail is true, one
	image when anymail is true and another one when anymail is false.
	the code from yesterday's commit broke things with remote servers.
	(struct _MailCheck): removed mailcleared.
	* main.c, popcheck.c, printer.c: removed a bunch of unused variables.

1999-06-27  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* multiload/swapload.c (make_swapload_applet): added a tooltip
	(fixes gnome bug 1436 by putting in patches from bug originator)

	* multiload/memload.c (make_memload_applet): again

	* multiload/netload.c (make_netload_applet): ditto

	* multiload/cpuload.c (make_cpuload_applet): one more time

	* gen_util/mailcheck.c: added an enum for mailbox types; fixed
	indentation; added disabling/enabling of commands
	(check_mail_file_status): moved the sound playing from here to
	where the newmail command gets exec()'d; use the new enum
	(mail_check_timeout): moved sound playing here; use the enabled
	status for the commands
	(exec_clicked_cmd): use enabled status
	(apply_properties_callback): enabled status stuff
	(mailbox_properties_page): use new enums
	(mailcheck_properties_page): use check boxes instead of labels
	for commands
	(applet_save_session): save enabling stuff
	(mailcheck_about): *cough*
	(make_mailcheck_applet): load enabling stuff
	(create_mail_widgets): really fix the don't-check-at-startup thing

	* cdplayer/cdplayer.c (main): don't do a stock_callback, just
	a normal one (fixes a crash)

	* multiload/swapload.c (make_swapload_applet): ditto

	* multiload/cpuload.c (make_cpuload_applet): same

	* multiload/memload.c (make_memload_applet): one more time

Sat Jun 26 01:20:49 1999  Tim Janik  <timj@gtk.org>

	* Makefile.am: add the desk-guide applet.

1999-06-21  Jaka Mocnik  <jaka.mocnik@kiss.uni-lj.si>

	* gen_util/mailcheck.c: add support for playing sounds when new
	mail arrives. based on a patch submitted by Eric M. Hopper
	<hopper@omnifarious.omnifarious.mn.org>.
	* gen_util/mailcheck.soundlist: just that. still looking for a
	better sound than phone.wav.
	* gen_util/Makefile.am: install mailcheck.soundlist.
	
Wed Jun 16 14:52:59 1999 Timur Bakeyev <mc@bat.ru>

	* gen_util/popcheck.c: Swap an order of includes, to allow some
	defenitions for sys/socket.h.

1999-06-08  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* gen_util/mailcheck.c (create_mail_widgets): don't check mail
	when applet is first created.  This is done to avoid blocking
	the panel on session login when using something like fetchmail
	to check for messages.

Sun May 30 17:21:17 1999  George Lebl  <jirka@5z.com>

	* gen_util/mailcheck.c: support full sizing of the panel

Sun May 30 15:01:02 1999  George Lebl  <jirka@5z.com>

	* life/life.c: fully support panel sizing

Sun May 30 14:32:09 1999  George Lebl  <jirka@5z.com>

	* gen_util/clock.c: make this support the SIZE_TINY panel size in
	  a way

Sun May 30 11:43:21 1999  George Lebl  <jirka@5z.com>

	* mixer/mixer.c: make this work in SIZE_TINY mode

1999-05-27  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* hal/Makefile.in: removed file

1999-05-24  Richard Hestilow <hestgray@ionet.net>
	* Added applet 'hal'

1999-05-25  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* applet-dirs/Makefile.am: add Clocks applet folder

	* applet-dirs/Clocks.directory: added file for new folder
	
	* gen_util/Makefile.am: 
	* asclock/Makefile.am: 
	* another_clock/Makefile.am: put in Clocks applet folder
	
1999-05-24  Cody Russell <bratsche@dfw.net>
	* dialer/*: Removed. Obsoleted by gnome-ppp-dialer in
	gnome-network package.

1999-05-22  George Lebl <jirka@5z.com>

	* life/life.c: fixed a leak

1999-05-22  Jacob Berkman  <jberk+@cmu.edu>

	* gen_util/mailcheck.c (mailcheck_properties): removed
	some commented out code from the last commit

1999-05-21  Jacob Berkman  <jberk+@cmu.edu>

	* gen_util/mailcheck.c: cosmetic changes to the 
	properties dialog

1999-05-19  Jacob Berkman  <jberk+@cmu.edu>

	* gen_util/clock.c: revert the sizing thing that I 
	accidentally (sorry) committed

1999-05-17  Jacob Berkman  <jberk+@cmu.edu>

	* gen_util/mailcheck.c (mailcheck_properties_page): make
	seconds minimum 0 (so people can do n minutes, 0 seconds)
	
	* gen_util/mailcheck.c (apply_properties_callback): check
	for time frequency of 0 here

1999-05-16  Jacob Berkman  <jberk+@cmu.edu>

	* gen_util/mailcheck.c (make_mailcheck_applet): save
	clicked command in session setting (fix typo/bug)

1999-05-16  Jacob Berkman  <jberk+@cmu.edu>

	* gen_util/popcheck.[ch]: C++ style comments -> C style

1999-05-16  Jacob Berkman  <jberk+@cmu.edu>
	
	* gen_util/mailcheck.c: made check mail configurable by 
	minutes, got rid of millisecond precision (come on, nobody
	really needs this)  Also, 1 C++ comment -> C stlye
	
1999-05-16  Jacob Berkman  <jberk+@cmu.edu>

	* gen_util/mailcheck.c: added ability to execute a command
	when new mail arrives

	* gen_util/mailcheck.c: made the mail spool file configurable

	* gen_util/mailcheck.c: formatting/memory leak fixes from imap/pop
	support patch

1999-05-15  Jacob Berkman  <jberk+@cmu.edu>

	* asclock/default_theme/.cvsignore: added .cvsignore

1999-05-12  Yukihiro Nakai <nacai@iname.com>

	* applets/life desktop entry [ja] update (Now complete)

Wed Apr 28 03:00:35 1999  George Lebl  <jirka@5z.com>

	* Makefile.am,multiload/*: Applied patch from esr to add the netload
	  thingie to multiload

1999-04-21  Jaka Mocnik  <jaka.mocnik@kiss.uni-lj.si>

	* gen_util/popcheck.c, gen_util/popcheck.h: routines to check
	for mail status on POP3 and IMAP mail servers. provided by
	Lennart Poettering <poettering@gmx.net>. also added support
	for POP3 "LAST" command.
	* gen_util/Makefile.am: added the above files to applet
	sources.
	* gen_util/mailcheck.c: added a new property page for
	mailbox configuration. added checking of POP3 and IMAP
	mailboxes.


1999-04-16  Jacob Berkman  <jberk+@cmu.edu>

        * multiload/main.c, multiload/global.h (start_gtop_cb): added 
        function to run gtop (gnome bug #1025)
        
        * multiload/*load.c (make_*load_applet): added "run gtop..." 
        menu item

1999-04-16  Matthias Warkus  <mawa@iname.com>

	* applet-dirs/*.directory: Minor fixes to German translations.

1999-04-15  Michael Zucchi  <zucchi@zzedzone.mmc.com.au>

	* another_clock/another_clock.c (cb_about): Added a missing ';'
	after the i++ in the author table lookup.

1999-04-14  Matthias Warkus  <mawa@iname.com>

	* */*_applet.desktop: Fixed and completed German translations.

Fri Apr 09 14:51:44 1999  George Lebl  <jirka@5z.com>

	* cdplayer/led.c: clear the pixmaps after creating to avoid ugly
	  garbage

Thu Apr 08 16:47:40 1999  George Lebl  <jirka@5z.com>

	* cdplayer/led.c: just a sanity fix not to draw on NULL gc's

1999-04-08  Miguel de Icaza  <miguel@nuclecu.unam.mx>

	* asclock/dialogs.c (properties_timezone_render): Create the
	temporary file with O_CREAT|O_EXCL and tell xearth to append to
	this file instead of creating it.

1999-03-29  Bj|rn Augustsson <d3august@dtek.chalmers.se>

	* asclock/dialogs.c (properties_dialog): Close the directory in
	the correct spot.  Fixes crash.

Wed Apr  7 23:03:11 1999  Jacob Berkman <jberk+@cmu.edu>

	* multiload/load-graph.c (load_graph_properties_init): 
	Set the minimum values for update time and width to
	avoid lock up/crash

Wed Apr  7 14:51:31 1999  Owen Taylor  <otaylor@redhat.com>

	* gen_util/printer.c (printer_widget): Removed
	excess trailing comma

	* mixer/[vh]slider.c: Fix some compile time warnings
	* mixer/[vh]slider.c: Set the adjustment parameter
	 initially to avoid warnings about !constructed.

Tue Apr  6 14:35:40 1999  Owen Taylor  <otaylor@redhat.com>

	* cdplayer/cdplayer.c (create_cdplayer_widget): Avoid
	 warnings by instead of calling cdpanel_update from
	 on an unrealized widget, do it in a "realize" callback.

Thu Apr 01 12:59:24 1999  George Lebl  <jirka@5z.com>

	* cdplayer/cdrom-linux.c: don't check for tray position if that
	  ioctl is not defined

Wed Mar 31 16:30:41 1999  George Lebl  <jirka@5z.com>

	* cdplayer/{cdrom-interface.h,cdrom-solaris.c,cdrom-linux.c,
	  cdplayer.c}: sort of reverted the patch for the eject/load, I left
	  the functionality in, and added new status errors for finding
	  out if the tray is open, however this seems to be broke at least
	  on my box, so the eject button only ejects, however, the play
	  button will now try to load the cd if it detects an open tray

Wed Mar 31 02:28:36 1999  George Lebl  <jirka@5z.com>

	* cdplayer/{cdrom-interface.h,cdrom-linux.c,cdrom-solaris.c,
	  cdplayer.c}: applied patch from Nick Lamb <njl98r@ecs.soton.ac.uk>
	  and slightly modified it. It allows one to close the cdrom
	  with the eject button

1999-03-26  Federico Mena Quintero  <federico@nuclecu.unam.mx>

	* battery/Makefile.am (EXTRA_DIST): Sigh, another missing file.
	Added bolt.xpm to EXTRA_DIST.

	* asclock/default_theme/Makefile.am: Added a Makefile.am here.  It
	is amazing how people do not care if their stuff builds at all.

	* asclock/themes/shaped/Makefile.am: 
	* asclock/themes/classic/Makefile.am: 
	* asclock/themes/beats/Makefile.am: 
	* asclock/themes/Stone/Makefile.am: 
	* asclock/themes/Orb/Makefile.am: 
	* asclock/themes/Newstone/Makefile.am: 
	* asclock/themes/Freeamp/Makefile.am: Put the theme data files in
	EXTRA_DIST.  WILL PEOPLE *PLEASE* SEE THAT THEIR STUFF PASSES MAKE
	DISTCHECK BEFORE COMMITTING?

1999-03-26  Nat Friedman  <nat@nat.org>

	* battery/bolt.xpm: New file.  Thanks to Will LaShell
 	<wlashell@cland.net> for this excellent drawing!

	* battery/session.c (battery_session_load): Handle full_notify_enable.
	(battery_session_save): Likewise.
	(battery_session_defaults): Likewise.

	* battery/properties.c (battery_properties_window): Added the
 	check box for full-battery-notification enabling/disabling.

	* battery/battery.c (battery_update): Display an error dialog if
 	we can't read the battery data.
	(battery_update): Notify the user if the battery has fully charged
 	and he has the full-charge-notification bit on.
	(battery_update): Draw a little lightning bolt on the battery
 	picture if the AC is plugged in.
	(battery_update): Handle miniature applets.  This will be
 	important for PDAs.
	(battery_set_mode): Handle miniature applets.
	(make_new_battery_applet): Create the percentage_small label for
 	miniature applets.
	(make_new_battery_applet): Load the pixmap of the lightning bolt.

1999-03-25  Nat Friedman  <nat@nat.org>

	* battery/properties.c (prop_apply): Set the size before allowing
 	the update function to run.

	* battery/battery.c (battery_update): Always update the graph when
 	we're called.
	(battery_update): Don't set the graph_height/graph_width greater
 	than bat->height and bat->width.
	(battery_change_mode): Fixed a subtle memory leak with
 	bat->mode_string.
	(battery_set_size): Ignore bat->setup.

	* battery/properties.c (battery_properties_window): Don't let the
 	user set the applet size to 0.
	(battery_properties_window): Fix memory leak with bat->mode_string.

1999-03-25  Nat Friedman  <nat@nat.org>

	* battery/properties.h: Added copyright statement.

	* battery/session.h: Added copyright statement.

	* battery/session.c (battery_session_defaults): Handle low-battery
 	settings and warning settings.
	(battery_session_save): Likewise.
	(battery_session_load): Likewise.
	Added copyright statement.

	* battery/properties.c (prop_apply): i18n'd the notebook tab
 	titles.  Added update interval stuff to main notebook tab.  Added
 	low-battery color options.  Added "warning" notebook tab.  Added
 	copyright statement.

	* battery/battery.h: Changed the (default) battery size to 48x48.
  	graph_timeout_id changed to update_timeout_id.  Likewise with
 	graph_timeout_interval.  Added the low-battery color fields.
  	Added low-battery warning variables.  Added copyright statement.

	* battery/battery.c: Added copyright statement.
	(battery_update): Keep track of whether or not the ac-online
 	status changes, and use this to determine when to update the
 	picture as well.
	(battery_update): Pop up a warning dialog if (a) warnings are
 	enabled (b) the battery charge has dipped below a threshold value
 	as specified by the user.
	(battery_update): Set the graph color to graph_color_low if the
 	battery charge is below a threshold value.
	(battery_update): Likewise for the readout color.  Fill the
 	battery chamber white to distinguish it from its surroundings.
	(battery_update): Left justify the percentage label.  Blank the
 	time-remaining label if it is meaningless data.
	(make_new_battery_applet): Readjusted the paddings.  Removed the
 	readout picture bevel.  Set the label font to 6x10.  Use a table
 	to store the labels.  Connect to the button click signal of the
 	whole applet.  
	(battery_setup_picture): Now generates a better-proportioned
 	picture.
	(battery_set_size): Allocate only 25% of the applet's width for
 	the readout picture.
	(battery_setup_colors): Allocate the low-battery colors.
	(battery_warn): New function to pop up the warning dialog.

1999-03-24  Nat Friedman  <nat@nat.org>

	* battery/battery.h (BATTERY_DEFAULT_HEIGHT): Changed the default
 	height to 48.

	* battery/battery.c (battery_update): Use the actual graph area's
 	height and width when drawing instead of the applet height and
 	width.

	* battery/properties.c (battery_properties_window): Make the graph
 	tick color configurable.
	(prop_apply): Update the tick color.

	* battery/battery.h: Added graph_line_color_sel to the BatteryData
 	structure.
	(BATTERY_DEFAULT_GRAPH_LINE_COLOR): New macro.

	* battery/battery.c (main): Call applet_factory_new.
	(applet_start_new_applet): Correct signature.
	(make_new_battery_applet): Return the newly created applet widget.
	(battery_update): Draw graph ticks.
	(battery_setup_colors): Allocate the graph tick color.

	* battery/properties.c (battery_properties_window): Raise the
 	properties window if the user selects 'Properties' from the
 	context menu and the window is already mapped.

1999-03-23  Nat Friedman  <nat@nat.org>

	* battery/battery.c (make_new_battery_applet): Added the About box.
	(about_cb): New function.
	(destroy_about): Likewise.

	* battery/properties.c (battery_properties_window): Set the state
 	of the graph-direction radio buttons correctly.
	(prop_apply): Don't let the update function run while the values
 	are being changed.  Update the graph data if the direction
 	changes.
	(prop_apply): Update the size after the direction is updated.

Fri Mar 19 12:48:41 1999  George Lebl  <jirka@5z.com>

	* asclock/gnome_config.c: the path passed from the panel already
	  contains the '/' so when we push it we have to use "section/key"
	  not "/section/key"

1999-03-17  Nat Friedman  <nat@nat.org>

	* battery/properties.c (battery_properties_window): Set the
 	close_hides property on the window.

	* battery/battery.c (make_new_battery_applet): Set bat->setup
 	before calling battery_set_size.  This fixes the bug Jes Sorensen
 	<Jes.Sorensen@cern.ch> reported about the applet size not being
 	set correctly when the applet first starts up.
	(battery_set_size): Don't unref the pixmaps if they're NULL.

1999-03-13  Federico Mena Quintero  <federico@nuclecu.unam.mx>

	* gen_util/mailcheck.c: Applied patch by Jacob Berkman's
	<jberkman@andrew.cmu.edu> to allow launching a mail program when
	you click on the mailcheck applet.

1999-02-27  Federico Mena Quintero  <federico@nuclecu.unam.mx>

	* battery/battery.c (make_new_battery_applet): Made the timeout
	actually be bat->graph_interval seconds.

	* battery/properties.c (prop_apply): Re-set the timeout when the
	properties are applied.

1999-02-27  Miguel de Icaza  <miguel@nuclecu.unam.mx>

	* gkb/gkb.c (apply_callback): Do not apply properties more than
	once (chech for page == -1)

Mon Feb 22 21:44:34 1999  George Lebl  <jirka@5z.com>

	* gen_util/clock.c:  add unix time option for people that want their
	  time in the way it was meant to be displayed

1999-02-22  Martin Baulig  <martin@home-of-linux.org>

	* multiload: Resize the widget after changing the size in the
	properties dialog. Add "destroy" signal handler to the load
	graph and correctly destroy it so it will no longer dump core
	when you remove on of the applets.

	* multiload: Applied the patch from Jacob Berkman that makes
	the multiload applet honor the width and height settings in
	the properties dialog on next startup.

1999-02-15  Owen Taylor  <otaylor@redhat.com>

	* webcontrol/Makefile.am (gnorba_DATA): Add the .gnorba
	to the EXTRA_DIST and add rules for installing it.

1999-02-13  Nuno Ferreira  <nmrf@rnl.ist.utl.pt>

	* gkb/xmodmap/.cvsignore, gkb/gkb/.cvsignore: Added these files.

1999-02-07  Federico Mena Quintero  <federico@nuclecu.unam.mx>

	* multiload/load-graph.c (load_graph_update): Now this is the
	timeout handler.
	(load_graph_draw): Do not update the graph's data, just redraw.
	(load_graph_properties_update): Redraw the load graphs, to make
	properties take effect immediately when the user hits Apply.

	* multiload/properties.c (multiload_properties_cb): Invoke the
	properties for the correct part of the applet.
	(multiload_show_properties): Show the property page corresponding
	to the type of applet the user clicked on.

1999-02-07  Tomas Ogren  <stric@ing.umu.se>

	* winlist/fvwm-winlist.c: #include <stdio.h> please...

1999-02-04  Jonathan Blandford  <jrb@redhat.com>

	* mixer/mixer.c (create_computer_mixer_widget): make the colors a
	bit less subtle.

1999-02-04  Nat Friedman  <nat@nat.org>

	* battery/read-battery.c (battery_read_charge): The Linux support
 	has been completely rewritten.  I am now caching the fd of
 	/proc/apm, and then using dup() when I need to fetch new battery
 	data to ensure that we only call open() once.  Now the battery
 	applet never touches the disk while it's running.  Nice for laptops.

	* battery/properties.c (col_value_changed_cb): New function.
	(adj_value_changed_cb): Likewise.
	(col_value_changed_cb): Likewise.  This fixes a bug as reported by
 	Roberto Zunino <zunino@cli.di.unipi.it>.  Thanks!
	(prop_apply): Call battery_update so the changes take effect
 	immediately.

	* battery/battery.h: Added force_update.

	* battery/battery.c (battery_update): Only update the pictures if
 	the battery data has changed.  Pay attention to bat->force_update.
	(battery_configure_handler): Call battery_update.
	(battery_setup_picture): More readable.
	(battery_set_size): Call battery_update.

1999-02-03  Jonathan Blandford  <jrb@redhat.com>

	* mixer/vslider.c (vslider_class_init): now we no longer draw the
	trough, and let mixer.c handle that.  VOILA! no more flashes. (:
	* mixer/hslider.c (hslider_class_init):ditto
	
1999-02-02  Jonathan Blandford  <jrb@redhat.com>

	* mixer/mixer.c (create_computer_mixer_widget): make the
	adjustments page size bigger.

1999-01-24  Anders Carlsson <anders.carlsson@tordata.se>

	* gnome-pager/gnomepager_applet.c: Fixed a bug with the task list
	  arrow and a vertical panel.

Sun Jan 24 03:39:02 1999  Timur Bakeyev <mc@bat.ru>

	* mixer/mixer.c: Add conditional #include for {linux,machine,sys}/
	soundcard.h.

1999-01-22  The Rasterman <raster@redhat.com>

	* Makefile.am: removed icewm-pager from build, removed esdmanager from
	  build as it hasnt been finished, removed fvwm pager from build as it 
	  should become gnome compiant with patches sometime...

1999-01-18  Jeff Garzik  <jgarzik@pobox.com>

	* batmon/batmon.c, battery/battery.c, fish/fish.c, gen_util/clock.c,
	  gen_util/mailcheck.c, gen_util/printer.c, gkb/gkb.c,
	  gnome-pager/gnomepager_applet.c, mini-commander/src/command_line.c,
	  mini-commander/src/message.c,
	  mini-commander/src/mini-commander_applet.c,
	  mini-commander/src/preferences.c, multiload/load-graph.c,
	  multiload/property-entries.c:
	Gtk+ s/old-name/new-name/ substitutions, from gtkcompat.h

	* gnome-pager/gnomepager_applet.c:
	64-bitness casts.  Added a FIXME for a value apparently never used.

1999-01-18  Nat Friedman  <nat@nat.org>

	* asclock/dialogs.c (properties_dialog): Fixed a typo.  Use
 	gnome_app_id for the name of the root help directory.

	* battery/properties.c (battery_properties_window): Use
 	gnome_app_id for the name of the root help directory.

	* cpuload/properties.c (properties): Likewise.

	* netload/properties.c (properties): Likewise.

	* multiload/properties.c (multiload_show_properties): Likewise.

	* gkb/gkb.c (properties_dialog): Likewise.

	* gen_util/printer.c (printer_properties): Likewise.

	* gen_util/mailcheck.c (mailcheck_properties): Likewise.

	* gen_util/clock.c (clock_properties): Likewise.

	* diskusage/properties.c (properties): Likewise.

1999-01-18  Nat Friedman  <nat@nat.org>

	* asclock/dialogs.c (properties_dialog): Connected the help button
 	of the GnomePropertyBox to gnome_help_pbox_display.

	* battery/properties.c (battery_properties_window): Likewise.

	* netload/properties.c (properties): Likewise.

	* gkb/gkb.c (properties_dialog): Likewise.

	* gen_util/printer.c (printer_properties): Likewise.

	* gen_util/mailcheck.c (mailcheck_properties): Likewise.

	* gen_util/clock.c (clock_properties): Likewise.

	* diskusage/properties.c (properties): Likewise.

	* battery/battery_applet.gnorba (description): Changed the
 	description.  Fixed a typo in the location_info.

1999-01-08  Christopher Blizzard  <blizzard@appliedtheory.com>

	* Makefile.am: the bussign is dead.  long live the bussign.

1999-01-06  Nat Friedman  <nat@nat.org>

	* Makefile.am (always_built_SUBDIRS): Removed the batmon applet
 	from the applet list.

Tue Dec 29 14:40:25 1998  Maciej Stachowiak  <mstachow@mit.edu>

	* Makefile.am: Build fvwm-pager applet unconditionally.

1998-12-28  Martin Baulig  <martin@home-of-linux.org>

	The "MultiLoad Applet Revolution".

	All three multiload applets (cpuload, memload, swapload) now use
	the same load graph object and the same properties code.

	This will make it much easier to add a new applet here.
	
	* multiload/cpuload.h: Removed.
	* multiload/memload.h: Removed.
	* multiload/swapload.h: Removed.
	* multiload/properties-cpu.[ch]: Removed.
	* multiload/properties-mem.[ch]: Removed.
	* multiload/properties-swap.[ch]: Removed.

	* multiload/global.h: New file.

	* multiload/property-entries.[ch]: New files. This code will be
 	moved into libgnomeui after GNOME 1.0 is released.

	* multiload/load-graph.[ch]: New files. Contains some kind of
	load graph widget/object that is used in all multiload applets.

	* multiload/properties.[ch]: New files. Contains general properties
	stuff that is used in all multiload applets.

	* multiload/cpuload.c: Use the new load graph.
	* multiload/memload.c: Likewise.
	* multiload/swapload.c: Likewise.

1998-12-18  Martin Baulig  <martin@home-of-linux.org>

	* cpumemusage/procbar.[ch]: Removed.
	* cpumemusage/cpumemusage.c: Use the GnomeProcBar from libgnomeui.

Thu Dec 31 18:18:05 1998  George Lebl  <jirka@5z.com>

	* slashapp/slashapp.c,gticker/gticker.c: remove unneeded glist

Tue Dec 29 14:40:25 1998  Maciej Stachowiak  <mstachow@mit.edu>

	* Makefile.am: Build fvwm-pager applet unconditionally.

1998-12-28  Martin Baulig  <martin@home-of-linux.org>

	The "MultiLoad Applet Revolution".

	All three multiload applets (cpuload, memload, swapload) now use
	the same load graph object and the same properties code.

	This will make it much easier to add a new applet here.
	
	* multiload/cpuload.h: Removed.
	* multiload/memload.h: Removed.
	* multiload/swapload.h: Removed.
	* multiload/properties-cpu.[ch]: Removed.
	* multiload/properties-mem.[ch]: Removed.
	* multiload/properties-swap.[ch]: Removed.

	* multiload/global.h: New file.

	* multiload/property-entries.[ch]: New files. This code will be
 	moved into libgnomeui after GNOME 1.0 is released.

	* multiload/load-graph.[ch]: New files. Contains some kind of
	load graph widget/object that is used in all multiload applets.

	* multiload/properties.[ch]: New files. Contains general properties
	stuff that is used in all multiload applets.

	* multiload/cpuload.c: Use the new load graph.
	* multiload/memload.c: Likewise.
	* multiload/swapload.c: Likewise.

1998-12-28  Martin Baulig  <martin@home-of-linux.org>

	* cpuload: Removed this applet. It has been replaced with the
	multiload applet.

1998-12-26  Martin Baulig  <martin@home-of-linux.org>

	* asclock/timezone.c: If /etc/localtime exists, read default
	timezone from it and select it in the clist.

	* asclock/dialogs.c: Removed useless 'General' properties tab.
	* asclock/main.c: Use stock callbacks.

1998-12-25  Jeff Garzik  <jgarzik@pobox.com>

	* asclock/asclock.c, asclock/dialogs.c, fvwm-pager/Module.c,
	  fvwm-pager/fvwm-pager.c, fvwm-pager/properties.c,
	  gticker/gticker.c, icewm-pager/wmpager_applet.c, jbc/jbc.c,
	  mini-commander/preferences.c, modemlights/modemlights.c:
	Warnings fixes.
	s/sprintf/g_snprintf/

1998-12-24  Jeff Garzik  <jgarzik@pobox.com>

	* batmon/batmon.c:
	Changed one strcpy to strncpy

	* clockmail/clockmail.c, cpuload/properties.c, batmon/batmon.c,
	  diskusage/diskusage.c, diskusage/properties.c,
	  drivemount/drivemount.c, fifteen/fifteen.c:
	s/sprintf/g_snprintf/

	* cpuload/properties.[c], diskusage/properties.[ch]:
	Made load/save routines 'path' arg const-correct.

	* cpuload/properties.c, diskusage/properties.c:
	Corrected color str size bug.

1998-12-18  Mark Galassi  <rosalia@cygnus.com>

	* netload/properties.c (apply_cb): incorporated Daniel Burrows'
	patch to fix a properties bug: the memcopy() was not enough to
	copy the structure, since the structure had a gchar * member.
	This patch adds a strdup() to copy the text field.

1998-12-18  Martin Baulig  <martin@home-of-linux.org>

	* cpumemusage/procbar.[ch]: Removed.
	* cpumemusage/cpumemusage.c: Use the GnomeProcBar from libgnomeui.

1998-12-15  Federico Mena Quintero  <federico@nuclecu.unam.mx>

	* multiload/Makefile.am (EXTRA_DIST): Added multiload_applet.gnorba.

	* Makefile.am: Added the stupid bussign applet to SUBDIRS.
	(DIST_SUBDIRS): Put all the directories in DIST_SUBDIRS, like Tom
	said.

1998-12-15  Yukihiro Nakai<Nakai@abricot.co.jp>

	* Added the Japanese [ja] translation entries with
	our special tool.

1998-12-14  Matt Wilson  <msw@redhat.com>

	* multiload/properties-mem.c: No C++ comments!

1998-12-14  Christopher Blizzard  <blizzard@appliedtheory.com>

	* Makefile.am: Disable the bussign.  Doesn't work.  Shouldn't
 	really be part of 1.0.

1998-12-13  Martin Baulig  <martin@home-of-linux.org>

	Following a suggestion from Richard Hult it is confusing users
	to have to cpuload monitors that look exactly the same and to
	have an extra level of menus for the multiload applet.
 	
	So replaced the cpuload applet with the multiload which is no
	longer hidden in a submenu.

	* multiload/Multiload.directory: Removed.
	* multiload/Makefile.am: Don't use an extra level of menus for
	the multiload applet, put all .desktop files to the other monitor
	applets.

	* cpuload: This has been replaced with the multiload applet.

1998-12-13  Martin Baulig  <martin@home-of-linux.org>

	* netload.c: Always use LibGTop to get the data.

Mon Dec 07 02:17:08 1998  George Lebl  <jirka@5z.com>

	* */*.c: fixed up includes, removed applet-lib.h and added
	  applet-widget.h where missing

Mon Dec 07 01:05:22 1998  George Lebl  <jirka@5z.com>

	* cdplayer/cdplayer.c: use abort_load applet widget call instead
	  of a call which was directly into the applet-lib (which doesn't
	  exist any more)

Thu Dec 03 02:42:00 1998  George Lebl  <jirka@5z.com>

	* */*.c: replaced applet_widget_new_with_param, and changed all
	  multiapplets to follow the current panel stuff

Tue Dec  1 10:05:50 MET 1998 Sven Neumann <svenqgimp.org>

	* gen_util/clock.c: added a configuration option that
	allows to hide the date.

Sun Nov 29 18:20:54 EST 1998 Gregory McLean <gregm@comstar.net>

	* gticker: applet api changes.

Sun Nov 29 17:15:17 EST 1998 Gregory McLean <gregm@comstar.net>

	* slashapp: applet api changes.
	Lord only knows if it will work, but they compile now.

1998-11-28  Mark Galassi  <rosalia@cygnus.com>

	* netload: replaced gnome_color_selector() with
	gnome_color_picker().  Worked on making the properties and the
	level bars in the graph work.  Also removed some compiler
	warnings.

	* netload/properties.c (create_general_frame): the properties
	dialog is now set up with gnome_color_picker_new() instead of the
	old gnome_color_selector_new() stuff.

	* netload/properties.c, netload/netload.c: removed the rescaling
	of the line_spacing by 1024.

	* netload/properties.c (load_properties): changed some default
	values: gcolor and bcolor are now such that you can see the bars
	on the graph.  line_spacing never used to give any line spacing on
	dialup connections, so I rescaled the whole thing and set the
	default to be 2, which works well for a modem line.
	(gcolor_changed_cb, bcolor_changed_cb): replaced the previous
	color_changed-cb() function with these two, one per color.  The
	previous one did not work and had a memory leak; this approach
	seems to work and is like the one in the multiload applet.

1998-11-22  Martin Baulig  <martin@home-of-linux.org>

	* netload: This applet now requires LibGTop >= 0.26.5.
	If you have an older version of LibGTop, the original code
 	will be used but only until the next release of LibGTop.

1998-11-23  Christopher Blizzard  <blizzard@appliedtheory.com>

	* asclock/dialogs.c (properties_dialog): Comment out
 	gtk_clist_set_policy().  This should compile now.
	
1998-11-21  Federico Mena Quintero  <federico@nuclecu.unam.mx>

	* cpuload/cpuload.c (main): Nice the process.  Also, fixed
	compiler warnings.

	* cpumemusage/cpumemusage.c (update_mem_values): New function to
	update the memory/swap values.
	(cpumemusage_widget): Now the memory/swap values are updated at a
	different rate than the CPU one.  Walking the kernel page table to
	gather memory information is expensive, so we only do it once a
	second instead of every 200 milliseconds.
	(main): Nice the process.

	* cpumemusage/procbar.c (procbar_configure): Now the GC is created
	here, instead of in procbar_set_values(), to save a bit of time.

	* cpumemusage/procbar.h (ProcBar): Added a gc field.

1998-11-14  Jaka Mocnik  <jaka.mocnik@kiss.uni-lj.si>

	* multiload/properties-*.c, drivemount/properties.c,
	netload/properties.c, diskusage/properties.c,
	clockmail/properties.c, modemlights/properties.c:
	connected "changed" signal of spin buttons to code
	that enables property box apply and ok buttons.
	patches provided by Richard Hult.

1998-11-12  Jaka Mocnik  <jaka.mocnik@kiss.uni-lj.si>

	* gen_util/mailcheck.c (mailcheck_properties_page): connected "changed"
	signal of mc->spin spinbutton to property_box_changed.

Wed Nov 11 17:56:25 EST 1998 Gregory McLean <gregm@comstar.net>
	
	* cpuload/properties.c : Migrated to GnomeColorPicker vs 	
	 GnomeColorSelector to clear up warnings. Also fixed a mem leak :)

Wed Nov 11 17:36:25 EST 1998 Gregory McLean <gregm@comstar.net>

	* multiload/properties-*.c : Migrated to GnomeColorPicker as I got
	tired of the warnings spewing out.

1998-11-11  Christopher Blizzard  <blizzard@appliedtheory.com>

	* Makefile.am: Only build slashapp if libghttp is installed.

Sun Oct 18 19:12:24 1998  Owen Taylor  <otaylor@gtk.org>

	* gen_util/printer.c: Use the new DND api.

Fri Oct 09 02:42:07 1998  George Lebl  <jirka@5z.com>

	* battery/session.[ch]: session save MUST return FALSE, otherwise
	  applet is NOT restarted next time (using FALSE is to make it
	  "ideologically compatible" with gtk) ... the function can't be
	  void, since garbage is likely not gonna be 0

1998-10-08  Jaka Mocnik  <jaka.mocnik@kiss.uni-lj.si>

	* gen_util/mailcheck.c: enable user to configure the mail checking
	interval and an optional command to system() before checking for
	mail.
	
1998-09-30  Havoc Pennington  <hp@pobox.com>

	* diskusage/properties.c: color set callbacks use guint8 instead
	of int. (I think there's another problem, that they use _get_i8
	instead of having proper callback args, but I didn't cause that
	one so I'll let someone else fix it. ;-)

1998-09-23  Michael Lausch  <mla@gams.at>

	* Makefile.am (fvwm_pager): Added conditional for fvwm-pager
	applet.

	* Added fvwm-pager appler directory. See fvwm-pager/README how to
	use this applet.

Sun Sep 21 10:10:29 1998  George Lebl  <jirka@5z.com>

        * webcontrol/webcontrol.c: add entry after applet_widget_add
          to allow pasting

Sun Sep 20 10:28:29 1998  John Ellis  <johne@bellatlantic.net>

	* mixer/mixer.c: Added option to run gmix from right click menu.

1998-09-11  Alexandre Muniz <munizao@cyberhighway.net>
	
	* charpick: Added Character Picker applet 
	* Makefile.am (always_built_SUBDIRS): Added charpick subdir.
	
1998-09-06  Raja R Harinath  <harinath@cs.umn.edu>

	* asclock/Makefile.am: Remove CXXLINK hack.
	* batmon/Makefile.am: Likewise.
	* battery/Makefile.am: Likewise.
	* cdplayer/Makefile.am: Likewise.
	* cpuload/Makefile.am: Likewise.
	* cpumemusage/Makefile.am: Likewise.
	* diskusage/Makefile.am: Likewise.
	* drivemount/Makefile.am: Likewise.
	* gen_util/Makefile.am: Likewise.
	* mixer/Makefile.am: Likewise.
	* multiload/Makefile.am: Likewise.
	* netload/Makefile.am: Likewise.
	* webcontrol/Makefile.am: Likewise.
	* winlist/Makefile.am: Likewise.

1998-08-27  Christopher Blizzard  <blizzard@appliedtheory.com>

	* Makefile.am (SUBDIRS): Add conditional bussign build if you have
 	libghttp installed.

1998-08-26  Havoc Pennington  <hp@pobox.com>

	* multiload/Makefile.am: Add ../../panel to the include path, link
	to the applet lib in ../../panel. This makes it consistent with
	the other applets (and makes gnome-core compile)

Sun Aug 23 23:24:30 1998  George Lebl  <jirka@5z.com>

	* fish/fish.c,fish/fish?.xpm,fish/fishanim.png,fish/Makefile.am:
	  added "themability", so that you can load up a different
	  animation file and change the speed in the config dialog

1998-08-23  Martin Baulig  <martin@home-of-linux.org>

	* cpuload: This applet now requires libgtop.
	* cpumemusage: Likewise.

	* diskusage/fsusage.[ch]: Removed.
	* diskusage/mountlist.[ch]: Removed.
	* diskusage/diskusage.c: We now use libgtop to get the fsusage
	and mountlist stuff.

	* multiload: New directory. Contains MultiLoad Applet from
	`libgtop-apps/applet/multiload'.

1998-08-21  Nuno Ferreira  <nmrf@rnl.ist.utl.pt>

	* gkb/gkb_applet.desktop: Added Portuguese translation.

Thu Aug 20 14:36:46 1998  George Lebl  <jirka@5z.com>

	* fish/fish.c: fixed the flickering by using drawing area
	  instead of gtkpixmap which was a cheapass solution anyway

1998-08-19  Raja R Harinath  <harinath@cs.umn.edu>

	* Makefile.am (SUBDIRS): Add `winlist' to the set of distributed
	subdirs. 

Wed Aug 12 21:08:46 1998  George Lebl  <jirka@5z.com>

	* cpuload/cpuload.c: fixed a memory leak

Wed Aug 12 21:04:42 1998  George Lebl  <jirka@5z.com>

	* cpumemusage/procbar.c: check for cases of allocation being
	  0x0, and don't draw in those cases

Tue Aug 11 11:30:04 1998  Owen Taylor  <otaylor@redhat.com>

	* cpumemusage/proc.c (proc_read_mem): Account for
	  buffers when computing totals.

	* cpumemusage/procbar.c: Make bars switch orientation with panel.
	
1998-08-02  Raja R Harinath  <harinath@cs.umn.edu>

	* Makefile.am (cdplayer,mixer,modemlights): New variables.
	(SUBDIRS): Use them, instead of @PROGRAMS_PANEL_*@.

1998-08-03  Martin Baulig  <martin@home-of-linux.org>

	* netload/properties.c, linux-proc.[ch]: Increased maximal device
	name length from 4 to 5 to make `ippp0' work.

1998-08-02  Martin Baulig  <martin@home-of-linux.org>

	* diskusage/diskusage.c, properties.[ch]: Session-saving
	information about selected filesystem.

Wed Jul 29 19:49:11 1998  John Ellis  <johne@bellatlantic.net>

	* drivemount/drivemount.c (about_cb): fixed a compile warning.
	(create_drive_widget): use gnome_is_program_in_path() instead of a
	system() call to check for the eject program. Properties is now above
	About in the menu.
	* drivemount/properties.c (property_apply_cb): added
	applet_widget_sync_config() as George suggested.
	* drivemount/drivemount.[ch], properties.c: Upped version to 0.1.1
	* drivemount/AUTHORS: new file.

	* clockmail/clockmail.c (about_cb): fixed a compile warning.
	* clockmail/properties.c (property_apply_cb): added
	applet_widget_sync_config() as George suggested.
	* clockmail/clockmail.[ch], properties.c: Upped version to 0.1.4

	* modemlights/modemlights.c  (about_cb): fixed a compile warning.
	(main):  Properties is now above About in the menu.
	* modemlights/properties.c (property_apply_cb): added
	applet_widget_sync_config() as George suggested
	* modemlights/modemlights.[ch], properties.c: Upped version to 0.3.1
	* modemlights/AUTHORS: new file.

Thu Jul 23 00:38:02 1998  George Lebl  <jirka@5z.com>

	* battery/properties.c: added applet_widget_sync_config
	  to the end of the properties apply callback ....
	  I'm too lazy to go through all of the applets though
	  so this is the only one that has this, it's not neccessary,
	  but it would be nice

1998-07-23  Nuno Ferreira  <nmrf@rnl.ist.utl.pt>

	* netload/Makefile.in: Remove generated file.

1998-07-19  Raja R Harinath  <harinath@cs.umn.edu>

	* */Makefile.am (*_LDADD): Change MICO_LIBS to ORB_LIBS.

1998-07-15  Raja R Harinath  <harinath@cs.umn.edu>

	* battery/read-battery.c (battery_read_charge): Provide fallback
	values for non linux/FreeBSD m/cs.

Mon Jul 13 02:37:01 1998  George Lebl  <jirka@5z.com>

	* battery/session.c: one needs to add section/key to the
	  privcfgpath, not just key ... so I updated it

1998-07-08  Federico Mena Quintero  <federico@nuclecu.unam.mx>

	* Makefile.am (always_built_SUBDIRS): Added fifteen subdir.

Tue Jul  7 00:17:19 1998  Tom Tromey  <tromey@cygnus.com>

	* winlist/testwinlist.c: Include <stdlib.h>, not <malloc.h>.

1998-07-06  Martin Baulig  <martin@home-of-linux.org>

	* diskusage/diskusage_read.c: Fixed memory leak.

1998-07-04  Carsten Schaar  <nhadcasc@fs-maphy.uni-hannover.de>

	* webcontrol/webcontrol.c (main): 
	* netload/netload.c (main): 
	* icewm-pager/wmpager_applet.c (main): 
	* drivemount/drivemount.c (create_drive_widget):
	* diskusage/diskusage.c (main):
	* cpuload/cpuload.c (main): Now uses stock menu icons.

Fri Jul 03 14:01:21 1998  George Lebl  <jirka@5z.com>

	* */*.c: ported to the new save_session signal and using
	  privcfgpath instead of cfgpath

1998-07-01  Nuno Ferreira  <nmrf@rnl.ist.utl.pt>

	* */*.desktop: Added Portuguese translations.

	* applet-dirs/*.directory: Added Portuguese translations.

Wed Jun 24 11:04:28 EDT 1998 Gregory McLean <gregm@comstar.net>

	* gen_util/tux-anim.xpm : Added another email animation this one
	  is that animation that is on Larry's page of tux doing a back flip
	  I liked it so added it :)

	* mixer/ Applied patch from Matthew Wilkins to the mixer app
	here's what it does:
	-changes the 'mute' label to a pixmap
	-makes the applet turn sideways when the panel is vertical
	-colour-fading background for the slider a la WinAmp volume control
	-gets out of mute mode when an external program turns up the volume
	-moves the mute button underneath the slider.
	-the slider widget becomes the vslider and hslider widgets.

Wed Jun 10 11:41:11 1998  Owen Taylor  <otaylor@gtk.org>

	* */Makefile.am: Use MICO_LIBS variable from 
	  toplevel configure.in. 
	
Sun Jun 07 22:56:44 1998  George Lebl  <jirka@5z.com>

	* gen_util/*.c: made menu items use stock icons

	* modemlights/modemlights.c: use the tooltips function from
	  applet widget. This makes the applet listen to the 
	  tooltips enable and disable events

Sun Jun 07 00:22:52 1998  George Lebl  <jirka@5z.com>

	* gen_util/printer.c: implemented background switching and
	  added an event box behind the label to make it readable on
	  all backgrounds

1998-06-04  Federico Mena Quintero  <federico@nuclecu.unam.mx>

	* applet-dirs/Makefile.am: Fix Monitor -> Monitors typo.

1998-06-01  Mark Galassi  <rosalia@cygnus.com>

	* modemlights/properties.c (property_load): introduced a
	"confirmation" property to be saved and loaded.  It doesn't save
	yet :-)
	(confirm_checkbox_cb):
	(property_show): added a confirmation checkbox to the properties
	dialog.

	* modemlights/modemlights.c (dial_cb): introduced the
	ask_for_confirmation configuration variable.  Now we only enter
	the yes/no dialog if that variable is true; otherwise we just fire
	off the connect (or disconnect) script.

Fri May 29 19:42:23 PDT 1998  Garrett Smith  <gsmith@serv.net>

        * webcontrol/webcontrol.c: added more configurability.

1998-05-30  Raja R Harinath  <harinath@cs.umn.edu>

	* Makefile.am (SUBDIRS): Split into ...
	(always_built_SUBDIRS): ... this, and ...
	(sometimes_built_SUBDIRS): ... list all `autoconf'ed dirs here.
	(DIST_SUBDIRS): List all subdirs.

	* batmon/Makefile.am: Cleaned up Automake hack not to generate
	those pesky `dummy.cc' files.
	* cdplayer/Makefile.am: Likewise.
	* cpuload/Makefile.am: Likewise.
	* cpumemusage/Makefile.am: Likewise.
	* diskusage/Makefile.am: Likewise.
	* drivemount/Makefile.am: Likewise.
	* gen_util/Makefile.am: Likewise.
	* icewm-pager/Makefile.am: Likewise.
	* mixer/Makefile.am: Likewise.
	* modemlights/Makefile.am: Likewise.
	* netload/Makefile.am: Likewise.
	* netwatch/Makefile.am: Likewise.
	* webcontrol/Makefile.am: Likewise.
	* winlist/Makefile.am: Likewise.
	
Fri May 29 19:42:23 PDT 1998  Garrett Smith  <gsmith@serv.net>

	Imported webcontrol applet.
	* Makefile.am (SUBDIRS): Add `webcontrol'.

1998-05-28  Carsten Schaar  <nhadcasc@fs-maphy.uni-hannover.de>

	* gen_util/printer.c (make_printer_applet):  Changed
 	"properties" to "properties...".

	* gen_util/mailcheck.c (make_mailcheck_applet): Likewise
	
	* gen_util/clock.c (clock_properties): i18n stuff for '12/24
 	hour'-dialog.

1998-05-27  Seth Alves  <alves@twitch.cp.domain.net>

	* clockmail/clockmail.h: include <sys/types.h>

1998-05-26  John Ellis  <johne@bellatlantic.net>

	* Makefile.am (SUBDIRS): changed modemlights to
	@PROGRAMS_PANEL_MODEMLIGHTS@.

Sun May 24 18:21:41 1998  George Lebl  <jirka@5z.com>

	* gen_util/{clock.c,printer.c}: set titles of property
	  dialogs

	* gen_util/mailcheck.c: use property_box for the properties

Sun May 24 14:45:15 1998  George Lebl  <jirka@5z.com>

	* gen_util/clock.c: fixed up the property box stuff, and got
	  rid of that annoying gnu style indentation

Sun May 24 01:13:56 1998  George Lebl  <jirka@5z.com>

	* gen_util/mailcheck.c: load the email.xpm by default

Sat May 23 16:32:16 1998  George Lebl  <jirka@5z.com>

	* Makefile.am add gen_util, and remove clock printer and
	  mailcheck applets, they are all now handeled by gen_util

1998-05-23  Carsten Schaar  <nhadcasc@fs-maphy.uni-hannover.de>

	* netload/properties.c: Added i18n of some strings.

	* netload/netload.c (main): Added initialization of the i18n
 	stuff.
 	Added i18n of some strings.

	* cpuload/properties.c: Added i18n of some strings.

	* cpuload/cpuload.c (main): Added initialization of the i18n
 	stuff.
	Added i18n of some strings.

1998-05-22  Martin Baulig  <baulig@merkur.uni-trier.de>

	* diskusage/Makefile.am (diskusage_applet_SOURCES): added
	mountlist.c, mountlist.h, fsusage.c and fsusage.h

	* diskusage/diskusage_read.c: using read_filesystem_list and
	get_fs_usage defined in mountlist.c and fsusage.c instead of
	reading output of df.

	* diskusage/mountlist.c: using g_malloc, g_realloc and g_strdup.

	* Makefile.am (SUBDIRS): Add diskusage.

1998-05-22  Carsten Schaar  <nhadcasc@fs-maphy.uni-hannover.de>

	* clock/clock.c (main): Added initialization of i18n stuff.
	(computer_clock_update_func): Changed to time to string
 	convertion.  This enables non american users to use there native
 	display of time and date.
	Included 'config.h'

Fri May 22 10:12:57 1998  Martin Baulig  <martin@home-of-linux.org>

	* diskusage/{fsusage.c,mountlist.c}: imported from GNU fileutils 3.16

	* diskusage/*: imported diskusage applet from Bruno Widmann;

Fri May 22 02:03:36 1998  George Lebl  <jirka@5z.com>

	* netload/properties.c: fixed up properties, the current
	  ones wouldn't work, if you are storing from cfg path,
	  you can only use a key in the path. if you need to store
	  global information use globcfgpath and then use section/key

Fri May 22 00:48:16 1998  George Lebl  <jirka@5z.com>

	* */*.c: changed to compile and work with the new
	  applet-widget stuff, and cleaned up a bunch of stuff
	  to avoid a few warnings here and there .. etc ... etc ...

Thu May 21 03:45:42 1998  George Lebl  <jirka@5z.com>

	* clock/clock.c: clock is now a multi applet, meaning if it's
	  already started, adding a clock won't run another process,
	  but just contact the running clock for a new copy

Sun May 17 12:44:46 1998  Havoc Pennington  <hp@pobox.com>

	* Imported modemlights applet, and added it to the Makefile.am

Sat May 16 00:59:12 1998  George Lebl  <jirka@5z.com>

	* clock/clock.c: made clock not use global variables
	  in preparation for it becoming the multiple applet
	  support scape goat

1998-05-13  Christopher Blizzard  <blizzard@appliedtheory.com>

	* Makefile.am (SUBDIRS): Add the bussign to the list of applets to
 	build.

Thu May 07 18:57:42 1998  George Lebl  <jirka@5z.com>

	* fish/*: added the fish applet

	* applet-dirs/{Makefile.am,Amusements.directory}: added
	  amusements directory

1998-05-05  Miguel de Icaza  <miguel@nuclecu.unam.mx>

	* printer/printer.c (close_properties): Ok, dropped all of the
	nonsense code from last night and put a nice Gnome Property Box to
	configure the printer. 

Tue May 05 00:24:51 1998  George Lebl  <jirka@5z.com>

	* cpuload/{cpuload.c,properties.c}: several fixes to
	  config handeling, now saves config in the right
	  place so SM and multiple cpuload applets work ok

Mon May 04 03:34:05 1998  George Lebl  <jirka@5z.com>

	* mailcheck/mailcheck.c: updated the signal

Sun May 03 23:05:11 1998  George Lebl  <jirka@5z.com>

	* mailcheck/maicheck.c,cpuload/cpuload.c,cpuload/properties.[ch]:
	  updated for the new callback function (minor change)

Sun May 03 16:57:10 1998  George Lebl  <jirka@5z.com>

	* */*.c: ported all appelts to applet-widget (even
	  those that don't get built by default)

	* mailcheck/mailcheck.c: fix init

Sat May 02 12:49:06 1998  George Lebl  <jirka@5z.com>

	* */*.c: removed includes of panel.h and mico-parse.h,
	  panel.h is not needed any more

1998-04-30  Miguel de Icaza  <miguel@nuclecu.unam.mx>

	* mailcheck/mailcheck.c (mailcheck_get_animation_menu): Select the
	animation that is actually being used. 
	(mailcheck_get_animation_menu): Recognize more formats than just
	xpm. 

Mon Apr 27 20:42:24 EDT 1998 Gregory McLean <gregm@comstar.net>

	* netwatch/netwatch.c : more tinkering, no it don't work yet but
	  I'm just tinkering to see if I can get something to work :)

Fri Apr 24 01:17:16 1998  George Lebl  <jirka@5z.com>

	* **/Makefile.am: added -lcrypt

1998-04-24  Miguel de Icaza  <miguel@nuclecu.unam.mx>

	* mailcheck/mailcheck.c (create_mail_widgets): Added refs
	(load_new_pixmap_callback): Call mail check timeout.

Thu Apr 23 02:24:16 1998  George Lebl  <jirka@5z.com>

	* cdplayer/cdplayer.c: using SHADOW_IN instead of ETCHED_IN
	  since it looks nicer

1998-04-22  Radek Doulik  <rodo@msdec.ms.mff.cuni.cz>

	* cpumemusage: quick hack to have procbars from gtop
	available on panel

Wed Apr 22 01:20:57 1998  George Lebl  <jirka@5z.com>

	* cpuload/cpuload.c: catch "destroy" event on plug
	  and do gtk_exit, to avoid segfaulting

Tue Apr 21 18:55:53 EDT 1998 Gregory McLean <gregm@comstar.net>

	* cpuload/.cvsignore: added this file to keep cvs happy :)

Tue Apr 21 18:55:53 EDT 1998 Gregory McLean <gregm@comstar.net>

	* netwatch/*: Some feeble attempts to get this to build.
	  it still don't build but its a bit closer..

Thu Apr 16 22:00:19 1998  George Lebl  <jirka@5z.com>

	* */*.c: updated applets to return TRUE on save_session

Thu Apr 16 20:59:35 1998  George Lebl  <jirka@5z.com>

	* clock/clock.c: small cleanups, now becomes slimmer
	  when the orientation changes, different frame style

Thu Apr 16 19:44:40 1998  George Lebl  <jirka@5z.com>

	* cdplayer/cdplayer.c: recover gracefully from errors when
	  creating widget, if you can't open the cdrom don't give up, but
	  try again when something is about to happen. this pervents it
	  from dieing when there was no disc sometimes.

Wed Apr 15 20:13:24 1998  George Lebl  <jirka@5z.com>

	* batmon/batmon.c,cdplayer/cdplayer.c,clock/clock.c,
	  mailcheck/mailcheck.c,winlist/winlist.c: removed shutdown corba
	  call and added handler for destroy signal on the plug

Sun Apr 12 21:25:06 1998  George Lebl  <jirka@5z.com>

	* cdplayer/cdplayer.c: fixed the display

1998-04-04  Raja R Harinath  <harinath@cs.umn.edu>

	* batmon/Makefile.am (batmon_applet_LINK): Use this to specify a
	C++ link rather than including `-lstdc++' in LDADD.
	(dummy.cc): Trick automake into defining CXXLINK.

	* cdplayer/Makefile.am (cdplayer_applet_LINK,dummy.cc): Likewise.
	* clock/Makefile.am (clock_applet_LINK,dummy.cc): Likewise.
	* mailcheck/Makefile.am (mailcheck_applet_LINK,dummy.cc): Likewise.
	
Sat Mar 28 15:25:28 1998  George Lebl  <jirka@5z.com>

	* **/*.c: updated to use gtk_full_path instead of
	  get_which_output

Sat Mar 21 00:57:08 1998  George Lebl  <jirka@5z.com>

	* batmon/batmon.c: now compiles

	* batmon/batmon_applet.desktop: now installed

	* mailcheck/mailcheck_applet.desktop: now correctly says
	  Mailcheck not Clock

Sat Mar 21 00:39:53 1998  George Lebl  <jirka@5z.com>

	* cdplayer/cdplayer.c: loads but looks bad

	* batmon/batmon.c: ported to corba but haven't tested

Fri Mar 20 00:36:12 1998  George Lebl  <jirka@5z.com>

	* mailcheck/mailcheck.c: few fixes now actually saves
	  pixmap name, but doesn't swap pixmaps properly

Fri Mar 20 00:08:43 1998  George Lebl  <jirka@5z.com>

	* cdplayer/*: ported to corba, indented to kernel
	  conding style to be compatible with rest of gnome

	* mailcheck/*: ported to corba