File: ChangeLog.cvs

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

	* configure.in, stock_buttons.h: Made stock buttons disabled by default

2005-10-23  Rik Wehbring  <rikster5@taz>

	* datebook.c: remove unnecessary macro defined elsewhere in .h files

2005-10-21  Rik Wehbring  <rikster5@taz>

	* memo_gui.c: Fix typo affecting stock_buttons

2005-10-20  Rik Wehbring  <rikster5@taz>

	* KeyRing/keyring.c: Fix Bug 1550: duplicate records in keyring clist

2005-10-20  Ludovic Rousseau  <rousseau@taz>

	* po/ja.po: remove comments at the end of the file.
	This caused the error "ja.po:2853:14: invalid multibyte sequence"

	Thanks to Lukas Ruf for the bug report

2005-10-19  Ludovic Rousseau  <rousseau@taz>

	* po/zh_CN.po: update by Funda Wang

	* po/tr.po: update by Eyp Hakan Duran

2005-10-18  Ludovic Rousseau  <rousseau@taz>

	* po/ja.po: update from Kazutaka HARADA

	* po/it.po: update from Marco Colombo

	* po/es.po: update from Cristian Othon Martinez Vera

2005-10-16  Ludovic Rousseau  <rousseau@taz>

	* po/fr.po: correct stock buttons fuzzy strings

	* po/ca.po, po/cs.po, po/da.po, po/de.po, po/es.po, po/fr.po, po/it.po, po/ja.po, po/jpilot.pot, po/nl.po, po/no.po, po/ru.po, po/rw.po, po/sv.po, po/tr.po, po/vi.po, po/zh_CN.po, po/zh_TW.po:
	regenerate

	* configure.in: use AC_HELP_STRING()

	* Expense/expense.c, KeyRing/keyring.c, Makefile.am, address_gui.c, configure.in, datebook_gui.c, memo_gui.c, stock_buttons.h, todo_gui.c:
	add GTK2 stock buttons.

	The feature is disabled if you use GTK1 (of course) or if you use
	"CFLAGS=-DDISABLE_STOCK_BUTTONS ./configure" or someting equivalent

2005-10-07  Ludovic Rousseau  <rousseau@taz>

	* po/fr.po: update 3 fuzzy strings

	* po/ca.po, po/cs.po, po/da.po, po/de.po, po/es.po, po/fr.po, po/it.po, po/ja.po, po/jpilot.pot, po/nl.po, po/no.po, po/ru.po, po/rw.po, po/sv.po, po/tr.po, po/vi.po, po/zh_CN.po, po/zh_TW.po:
	regenerate

	* Expense/expense.c, KeyRing/keyring.c, prefs.c, prefs.h:
	add a moving separator in Keyring and Expense plugins.
	Store the position in the preferences as the other pane separator.

2005-09-26  Judd Montgomery  <judd@taz>

	* address.c, memo.c, todo.c, utils.c:
	fixed typos for #ifdef PILOT_LINK_0_12

2005-09-25  Judd Montgomery  <judd@taz>

	* jpilot.c, print.c: Moved mid-code declarations

2005-09-24  Judd Montgomery  <judd@taz>

	* configure.in, po/rw.po: Added translation Kinyarwanda

	* address.c, datebook.c, memo.c, sync.c, todo.c, utils.c:
	Fixed memory leaks, mostly in usage of pi_buffer

	* prefs.c: Fixed spelling error

	* jpilot.spec.in: Updated for SuSE 9.3

	* po/es.po, po/tr.po: New translations from the translation project

2005-09-13  Judd Montgomery  <judd@taz>

	* jpilotrc.default: fixed typo

2005-09-12  Judd Montgomery  <judd@taz>

	* jpilotrc.default: Added commented out way to change text in gtk1

	* ChangeLog: Updated

	* prefs.c: changed rcfile back to jpilotrc

	* jpilot.c:
	Changed install-user advice to also recomend using install user from the menu

	* configure.in: Changed to 0.99.8-pre11

2005-09-04  Judd Montgomery  <judd@taz>

	* Makefile.am: Added install_user.h

2005-08-30  Rik Wehbring  <rikster5@taz>

	* otherconv.c: fix compile warnings about oc_free_iconv

2005-08-29  Rik Wehbring  <rikster5@taz>

	* address_gui.c, memo_gui.c, todo_gui.c:
	remove orphan, redundant grab_focus calls in gui creation subroutines

2005-08-28  Rik Wehbring  <rikster5@taz>

	* utils.c: Buttons, not text labels, should be selectable in dialogs

2005-08-28  Ludovic Rousseau  <rousseau@taz>

	* address_gui.c: address_gui(): replace "Quick Find" by "Quick Find: "

	* address_gui.c:
	address_refresh(): gives the focus to the search field when a new list is
	displayed

	* utils.c:
	dialog_generic_with_text(): use buttons with icons for "OK", "Cancel",
	"Yes" and "No"

	* jpilot.c: cb_payback(): i18n the "OK" button

	* password.c:
	dialog_password(): use OK/Cancel buttons with icons if GTK2 is used

2005-08-26  Judd Montgomery  <judd@taz>

	* TODO: Added an item

	* Makefile.am: reverted accidental checkin

	* README: Removed PalmOS password needs removed warning

	* Makefile.am: *** empty log message ***

	* Makefile.am, sync.c, sync.h, install_user.c, install_user.h, jpilot.c:
	Added code for GUI install-user from menu

2005-08-17  Ludovic Rousseau  <rousseau@taz>

	* otherconv.c:
	oc_strnlen(): remove G_INLINE_FUNC since it is the source of many
	link problems (undefined reference to `oc_strnlen')

2005-08-12  Ludovic Rousseau  <rousseau@taz>

	* otherconv.c:
	other_to_UTF(): correct the return type as "char *" instead of
	"unsigned char *"

	* otherconv.c:
	other_to_UTF(): do not transform "inplace" since it may crash. See
	Debian bug #322701

	* KeyRing/keyring.c:
	remove useless (unsigned char *) on the first argument of
	jp_charset_p2j() since this argument is char *

	* Expense/expense.c: cb_delete(): correct signedness for buf[]

2005-08-09  Ludovic Rousseau  <rousseau@taz>

	* ChangeLog: correct the date of the 0.99.8-pre10 release

	* ChangeLog, configure.in: version 0.99.8-pre10

2005-08-07  Ludovic Rousseau  <rousseau@taz>

	* dat.c: dat_get_addresses(): typo, temp_addrlist was used instead of
	last_addrlist.  Closes jpilot bug 1271

2005-08-06  Ludovic Rousseau  <rousseau@taz>

	* intl/Makefile.in, intl/VERSION, intl/bindtextdom.c, intl/config.charset, intl/dcgettext.c, intl/dcigettext.c, intl/dcngettext.c, intl/dgettext.c, intl/dngettext.c, intl/eval-plural.h, intl/explodename.c, intl/finddomain.c, intl/gettext.c, intl/gettextP.h, intl/gmo.h, intl/hash-string.h, intl/intl-compat.c, intl/l10nflist.c, intl/libgnuintl.h.in, intl/loadinfo.h, intl/loadmsgcat.c, intl/localcharset.c, intl/localcharset.h, intl/locale.alias, intl/localealias.c, intl/localename.c, intl/log.c, intl/ngettext.c, intl/os2compat.c, intl/os2compat.h, intl/osdep.c, intl/plural-exp.c, intl/plural-exp.h, intl/plural.y, intl/printf-args.c, intl/printf-args.h, intl/printf-parse.c, intl/printf-parse.h, intl/printf.c, intl/ref-add.sin, intl/ref-del.sin, intl/relocatable.c, intl/relocatable.h, intl/textdomain.c, intl/vasnprintf.c, intl/vasnprintf.h, intl/vasnwprintf.h, intl/wprintf-parse.h, intl/xsize.h:
	update postal address of the FSF
	(thoses files comes from gettext 0.14.5)

	* intl/ChangeLog: gettext version 0.14.5 instead of 0.14.4

	* Makefile.am:
	use -export-dynamic LDFLAGS for jpilot_sync and avoids the
	"jpilot-sync: relocation error: /usr/lib/jpilot/plugins/libexpense.so:
	undefined symbol: jp_logf" error

	* Expense/Makefile.am, KeyRing/Makefile.am, SyncTime/Makefile.am:
	Link the plugins with GTK to avoid "undefined symbol" in the .so files.
	Run "ldd -r filename.so" to check

2005-08-06  Judd Montgomery  <judd@taz>

	* jpilot.c: Ctrl-E conflicts with emacs key bindings

	* m4/gtk.m4: Needed for gtk1 on systems that ship without it

2005-06-24  Ludovic Rousseau  <rousseau@taz>

	* po/ja.po: long date format localization

	* po/tr.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/es.po, po/fr.po, po/it.po, po/ja.po, po/jpilot.pot, po/nl.po, po/no.po, po/ru.po, po/sv.po:
	update/regenerate

	* intl/ChangeLog, intl/Makefile.in, intl/VERSION, intl/config.charset, intl/dcigettext.c, intl/gettextP.h, intl/l10nflist.c, intl/libgnuintl.h.in, intl/localcharset.c, intl/localename.c, intl/relocatable.c, intl/vasnprintf.c, intl/vasnprintf.h:
	gettext version 0.14.4 instead of 0.14.1

	* datebook_gui.c, prefs.c, prefs_gui.c, print.c:
	Gettextize long date format. Patch from Kazutaka HARADA to support
	localized date formats (for example Japanese)

	* otherconv.c:
	other_to_UTF(): the last character was truncated using Hebrew encoding
	see Debian bug #309082

2005-06-16  Judd Montgomery  <judd@taz>

	* Expense/expense.c, category.c, memo_gui.c, sync.c, todo_gui.c, utils.c, utils.h, address_gui.c:
	int's changed to size_t's.  64-bit Linux warns

2005-05-20  Judd Montgomery  <judd@taz>

	* sync.c: pilot-link buffer patch - bug 1486

2005-05-08  Judd Montgomery  <judd@taz>

	* plugins.c: missing sizeof

2005-05-03  Ludovic Rousseau  <rousseau@taz>

	* ChangeLog: version 0.99.8-pre9

	* configure.in: version 0.99.8-pre8

2005-05-03  Judd Montgomery  <judd@taz>

	* KeyRing/keyring.c: GTK2 function ifdef'ed out and GTK1 equiv added

	* utils.h: pilot-link 0.12.0 is missing typedef pi_uid_t

2005-04-29  Ludovic Rousseau  <rousseau@taz>

	* pidfile.c: write_pid(): avoid a possible buffer overflow

	Thanks to Jason Day for the patch

2005-04-29  David A. Desrosiers  <desrod@taz>

	* depcomp, install-sh, ltconfig, missing:
	Removing auto-generated files from the tree, not needed to build J-Pilot.

2005-04-29  Ludovic Rousseau  <rousseau@taz>

	* Makefile.am, docs/jpilot.1, jpilot.c, pidfile.c, pidfile.h:
	add remote sync support "jpilot -s"

	Thanks to Jason Day for the patch

	* install-sh, missing, depcomp: version from automake 1.9.5

2005-04-12  Judd Montgomery  <judd@taz>

	* libplugin.c: cut-paste typo

2005-04-09  Judd Montgomery  <judd@taz>

	* address.c, datebook.c, memo.c, todo.c, utils.c:
	Patch to build with pilot-link-0.12.0-pre3
	thanks to Nicholas Piper

	* configure.in: check pilot-link patch level and error for 0.12.0-pre2

	* libplugin.c:
	Now the pc3 headers in pc3 files should be compatible between 64-bit systems
	and 32-bit systems.  64-bit was not clean.

2005-04-03  Judd Montgomery  <judd@taz>

	* datebook_gui.c:
	Tab now sets focus from begin time entry to end time entry to first text
	widget for data entry.  The minus key will still cycle between begin/end
	entries.

	* Makefile.am: removed -Wall for non-gnu compilers

2005-03-23  Judd Montgomery  <judd@taz>

	* jpilot.c:
	Log messages meant only for stdout only go to stdout and not the GUI

2005-03-19  Rik Wehbring  <rikster5@taz>

	* address_gui.c, memo_gui.c, todo_gui.c, utils.h:
	Fix memory leak when category names are translated from UTF to current charset

2005-03-19  Judd Montgomery  <judd@taz>

	* sync.c: need to pass info to fetch_extra_DBs2, Nicholas Piper

2005-03-19  Ludovic Rousseau  <rousseau@taz>

	* jpilot-dump.c:
	convert from UTF8 to local encoding since we use printf() and not GTK+
	to display the texts

	* reconf: do not update ABOUT-NLS

	* jpilot.c:
	The error messages sent to stdout are now also sent to the GUI so the
	user can see them.

2005-03-12  Rik Wehbring  <rikster5@taz>

	* KeyRing/keyring.c:
	Fix compile warning for DES_ecb3_encrypt incompatible pointer type for arg 1 and 2

2005-03-06  Ludovic Rousseau  <rousseau@taz>

	* address_gui.c:
	email_contact(): i18n the string "executing command = [%s]\n"

	* po/fr.po: correct a translation

2005-03-04  Ludovic Rousseau  <rousseau@taz>

	* Expense/expense.c, KeyRing/keyring.c:
	display_records(): do not return a value from a void () function

	* Expense/expense.c, KeyRing/keyring.c, category.c, datebook.c, memo.c, todo.c, address.c:
	check the value returned by jp_read_DB_files() calls and exit the
	function if jp_read_DB_files() returns -1

	* libplugin.c:
	jp_read_DB_files(): return -1 instead of EXIT_FAILURE (1) to avoid a
	collision when 1 record is found in a normal return

2005-03-02  Rik Wehbring  <rikster5@taz>

	* address_gui.c, datebook_gui.c, memo_gui.c, todo_gui.c:
	Keyboard usability improvements
	Add hotkey(return) to shift from clist on left side of jpilot to data window on right
	Add hotkey(shift-return) to move focus from data window back to clist

	* address_gui.c, datebook_gui.c, memo_gui.c, todo_gui.c:
	Return focus to clist after major operations which facilitates usability

	* autogen.sh:
	Libtoolize is now run from autogen.sh which allows building directly from CVS sources without tweaking

2005-02-27  Ludovic Rousseau  <rousseau@taz>

	* sync.c:
	In some cases (for example if the sync port is not specified and the
	sync process exits very rapidely) the child may be already dead when the
	fork() returns. So we need to:
	- initialise the signal handler _before_ calling fork()
	- check that the child has not yet returned (signal handler called) when
	  we store its pid for tracking

	* po/fr.po: correct a translation error

2005-02-23  Rik Wehbring  <rikster5@taz>

	* utils.c:
	Fix outline, as opposed to highlight, not always following focus in clist

2005-02-23  Ludovic Rousseau  <rousseau@taz>

	* po/ja.po: update by Harada kazutaka

2005-02-20  Ludovic Rousseau  <rousseau@taz>

	* po/it.po: Update from Marco Colombo

	* KeyRing/.cvsignore: replace keyring.lo by libkeyring_la-keyring.lo

	* SyncTime/.cvsignore:
	replace synctime.lo by libsynctime_la-synctime.lo

	* address_gui.c, datebook_gui.c, jpilot.c, memo_gui.c, todo_gui.c:
	Add support of X11 clipboard (middle mouse clic) in complement to the
	GTK+ clipboard (Ctrl-C/Ctrl-V)

	* prefs_gui.c:
	add_checkbutton(): do not call _() (i.e. gettext) here since it is
	already done by the caller.

2005-02-19  Ludovic Rousseau  <rousseau@taz>

	* ChangeLog, configure.in: version 0.99.8-pre8

	* Expense/.cvsignore: replace expense.lo by libexpense_la-expense.lo

	* .cvsignore: add compile, config.guess, jpilot.spec

	* po/fr.po: translate 3 strings

	* Expense/Makefile.am, KeyRing/Makefile.am, Makefile.am, SyncTime/Makefile.am, configure.in, dialer/Makefile.am:
	do not use --ccoptions=... any more. You should use CFLAGS=.. instead

	* po/ca.po, po/cs.po, po/da.po, po/de.po, po/es.po, po/it.po, po/ja.po, po/jpilot.pot, po/nl.po, po/no.po, po/ru.po, po/sv.po, po/tr.po, po/vi.po, po/zh_CN.po, po/zh_TW.po:
	regenerate with the correct l18n strings in prefs_gui.c

	* po/fr.po: regenerate and remove the fuzzy strings

	* prefs_gui.c: Readd the calls to gettext to get i18n again

	This was mistakenly removed with the "Simplify coding of checkbuttons
	in preferences" patch

	* po/zh_TW.po, po/cs.po, po/da.po, po/de.po, po/es.po, po/fr.po, po/it.po, po/ja.po, po/jpilot.pot, po/nl.po, po/no.po, po/ru.po, po/sv.po, po/tr.po, po/vi.po, po/zh_CN.po, po/ca.po:
	update/regenerate for 0.99.8-pre8

	* reconf:
	save and restore the local INSTALL file since it has nothing to do with
	the one provided with autotools

	* missing, install-sh, depcomp: update from automake 1.9

2005-02-03  Rik Wehbring  <rikster5@taz>

	* weekview_gui.c:
	Fix TODAY highlighting in weekview gui when week crosses a month boundary

2005-02-02  Rik Wehbring  <rikster5@taz>

	* jpilot.c: Fix hide/show/mask privacy button.

	Previously, attempting to show hidden records and cancelling out of password
	dialog prevented any further unmasking of records using the privacy button.
	Now, a new password dialog is created if the user attempts to show records.

2005-01-30  Judd Montgomery  <judd@taz>

	* address_gui.c:
	Very long words can force the right pane to be wide and force the pane to
	the left.  This is not desirable.

2005-01-29  Ludovic Rousseau  <rousseau@taz>

	* monthview_gui.c, weekview_gui.c:
	When a new weekview or monthview window is resquested we destroy the one
	previously displayed instead of just raising it.

	Thanks to Mark Blakeney for the patch

2005-01-28  Ludovic Rousseau  <rousseau@taz>

	* jpilot-sync.c: main(): return a non null value in case of error

	Thanks to Brian de Alwis for the patch

2005-01-28  Rik Wehbring  <rikster5@taz>

	* utils.c: Correct return values for get_highlight_day function

2005-01-27  Rik Wehbring  <rikster5@taz>

	* address_gui.c, datebook_gui.c, memo_gui.c, todo_gui.c:
	Add ESC accelerator key to cancel operation in GTK1

	* jpilot.c, monthview_gui.c, prefs.c, prefs.h, prefs_gui.c, utils.c, utils.h, weekview_gui.c, datebook_gui.c:
	Added two preferences and code to
	1) Mark current day in monthview and weekview guis by adding "TODAY" to display
	2) Display the absolute number of an event which repeats yearly(useful for birthdays and
	   anniversaries

	Thanks to Mark Blakeney for the patch

	* prefs_gui.c: Simplify coding of checkbuttons in preferences

	Thanks to Mark Blakeney for patch

	* memo_gui.c, todo_gui.c, address_gui.c, datebook_gui.c:
	Add Cancel button with ESC accelerator

	Thanks to Mark Blakeney for the patch

2005-01-23  Ludovic Rousseau  <rousseau@taz>

	* KeyRing/keyring.c:
	plugin_gui(): select category All when called to display the result of a
	search (instead of cycling)

2005-01-22  Ludovic Rousseau  <rousseau@taz>

	* jpilot.c: associate the Ctrl-Y shortcut to the sync pixmap-button

2005-01-21  Ludovic Rousseau  <rousseau@taz>

	* log.c:
	jp_vlogf(): do not call fsync() on the pipe file descriptor since it is
	useless and returns Invalid argument (EINVAL)

	* po/zh_TW.po: upgrade from Jouston Huang

	* prefs.c:
	get_pref_possibility(): rename "Chinese" to "Simplified Chinese" for GBK
	and "Traditional Chinese" BIG-5

2005-01-16  Ludovic Rousseau  <rousseau@taz>

	* reconf:
	do not use "--install --force" by default but use command line arguments
	instead

	* configure.in: check minimal versions of autoconf and automake

	* m4/gtk-2.0.m4:
	correctly quote arguments to avoid a "warning: underquoted definition of
	AM_PATH_GTK_2_0"

2005-01-16  Rik Wehbring  <rikster5@taz>

	* address_gui.c, datebook_gui.c, jpilot.c, memo_gui.c, todo_gui.c:
	Fix handling of accelerator keys

	GTK2 now uses CTRL+Enter consistently to apply changes
	Removed broken accelerators for GTK1(CTRL+Z, CTRL+R, CTRL+Enter) and
	modified tooltips to remove references to accelerators which don't work

2005-01-15  Ludovic Rousseau  <rousseau@taz>

	* otherconv.c, prefs.c, prefs.h: add Chinese BIG-5 to UTF conversion

	* jpilot.c: replace Sync and Backup text buttons by an color icon.

	Thanks to Kazutaka HARADA for the patch

2005-01-11  Ludovic Rousseau  <rousseau@taz>

	* po/ja.po: update from Kazutaka HARADA

2005-01-10  Rik Wehbring  <rikster5@taz>

	* address_gui.c, datebook_gui.c, jpilot.c, memo_gui.c, todo_gui.c:
	Preserve clipboard to allow cut/paste across all 4 apps in GTK2

2005-01-08  Ludovic Rousseau  <rousseau@taz>

	* Makefile.am: define desktopdir as $(datadir)/applications instead of
	$(datadir)/gnome/apps/Applications

	Bug reported by Debian lintian tool:
	 According to the menu-spec draft on freedesktop.org, those .desktop
	 files that are intended to create a menu should be placed in
	 /usr/share/applications/.

	* jpilot.spec: jpilot.spec is generated from jpilot.spec.in

	* ChangeLog: version 0.99.8-pre7

	* .cvsignore: add acinclude.m4, aclocal.m4, ChangeLog.cvs

	* m4/.cvsignore: files to ignore

	* po/.cvsignore: add @GETTEXT_PACKAGE@.pot

	* .cvsignore: add config.sub, ltmain.sh, mkinstalldirs

	* configure.in, jpilot.spec: version 0.99.8-pre7

	* po/fr.po: update for 0.99.8-pre7

	* po/es.po, po/fr.po, po/it.po, po/ja.po, po/jpilot.pot, po/nl.po, po/no.po, po/ru.po, po/sv.po, po/tr.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, po/ca.po, po/cs.po, po/da.po, po/de.po:
	update/regenerate for 0.99.8-pre7

2005-01-05  Ludovic Rousseau  <rousseau@taz>

	* po/zh_TW.po: update, all the "#, c-format" were missing

2005-01-02  Ludovic Rousseau  <rousseau@taz>

	* po/zh_TW.po: 0.99.8-pre3 translation thanks to Jouston Huang

	* KeyRing/keyring.c:
	move the "remember the previously used category" code from
	plugin_gui_cleanup() to cb_category() since during a sync the widgets
	are destroyed before plugin_gui_cleanup() is called

2004-12-30  Judd Montgomery  <judd@taz>

	* sync.c: Changes for pilot-link 0.12.0

	* configure.in: Changes for 0.12.0

2004-12-21  Rik Wehbring  <rikster5@taz>

	* address_gui.c, category.c, datebook_gui.c, install_gui.c, memo_gui.c, restore_gui.c, todo_gui.c, utils.c, utils.h:
	Fix gtk_clist_select_row instances in Jpilot

	gtk_clist_select_row does not behave as documented.  Fixed it by creating a
	new function, clist_select_row, in utils.c which does behave as specified.
	This corrects keyboard focus handling and also prevents annoying outline
	boxes in clists after using the Jpilot find function.

2004-12-20  Ludovic Rousseau  <rousseau@taz>

	* KeyRing/keyring.c:
	allow to cycle through the categories by calling the plugin again

2004-12-18  Rik Wehbring  <rikster5@taz>

	* jpilot-sync.c, jpilot-dump.c:
	Need to include <locale.h> before using setlocale function

2004-12-17  Rik Wehbring  <rikster5@taz>

	* todo_gui.c:
	Correct sorting by due date column which was incorrect when short date format was not YY/MM/DD

2004-12-14  Rik Wehbring  <rikster5@taz>

	* address_gui.c, utils.c:
	Replace hard coded upper limit in for loop with one derived from GTK object

2004-12-13  Rik Wehbring  <rikster5@taz>

	* utils.c: Fix default button handling in dialogs under GTK2

	Previously the default button was not selectable with the cursor keys and
	pressing enter would activate the second button in a dialog rather than
	the default first one.

	* jpilot.c:
	Add button to UTF8 Charset dialog to go directly to preferences and change values

2004-12-12  Judd Montgomery  <judd@taz>

	* datebook_gui.c: datebook pane un-broken in GTK1

2004-12-11  Ludovic Rousseau  <rousseau@taz>

	* KeyRing/keyring.c:
	cb_clist_selection(): display the new record if the user uses the key
	arrows to select it

2004-12-10  Rik Wehbring  <rikster5@taz>

	* Makefile.am: Add -Wall to default compile options

	* jpilot.c: Correct spelling ICOM to ICON

	* jpilot.c: Simplify cb_app_button to eliminate tearing down GUI twice

	* memo_gui.c, prefs.c, todo_gui.c, utils.c, address_gui.c, category.c, datebook_gui.c, jpilot.c:
	Replace gettext_noop with cleaner smaller N_ macro

	* search_gui.c:
	Rename clist callback to the same name used in all other c files

	* KeyRing/keyring.c, address_gui.c, datebook_gui.c, memo_gui.c, todo_gui.c:
	Replace long awkward cast with built-in GTK cast

	* Expense/expense.c: Overhaul of Expense plugin

	Improved alignment of widgets on left-hand side
	Items are now sorted by ascending date as in the Palm
	Code format now more closely resembles other 4 apps
	Fixed various memory leaks

2004-12-07  Rik Wehbring  <rikster5@taz>

	* Expense/expense.c, KeyRing/keyring.c, datebook_gui.c, memo_gui.c, todo_gui.c, utils.c, utils.h, address_gui.c:
	Improve efficiency in clist_find_id by removing unused variable and loop

	* Expense/expense.c, KeyRing/keyring.c, address.c, address_gui.c, alarms.c, category.c, dat.c, datebook.c, datebook_gui.c, dialer.c, export_gui.c, import_gui.c, install_gui.c, jpilot-dump.c, jpilot-sync.c, jpilot.c, libplugin.c, log.c, memo.c, memo_gui.c, monthview_gui.c, password.c, plugins.c, prefs.c, prefs_gui.c, print.c, print_gui.c, restore_gui.c, sync.c, todo.c, todo_gui.c, utils.c, weekview_gui.c:
	Standardize return values from subroutines to EXIT_SUCCESS and EXIT_FAILURE

	Sort routines (retval=-1,0,1) were not changed
	Subroutines returning a numerical count were not changed

	* otherconv.c: Fix compilation warning about strdup under GTK1

	* otherconv.c, otherconv.h: Fixing CVS Id tag

2004-12-05  Ludovic Rousseau  <rousseau@taz>

	* jpilot.c:
	get_main_menu(): add color icons for the 4 applications menu entries
	Thanks to Rik Wehbring

2004-12-04  Rik Wehbring  <rikster5@taz>

	* CREDITS:
	CREDITS file removed.  AUTHORS file is preferred by tool chain

	* BUGS: Removed memory leak bug from list since it has been fixed

2004-12-03  Ludovic Rousseau  <rousseau@taz>

	* jpilot.c: cb_delete_event(): remove two unused variables

2004-12-03  Rik Wehbring  <rikster5@taz>

	* prefs.c:
	Clean up FDOW code to be consistent with the rest of get_pref_possibility

	* jpilot.c: Simplify extracting first day of week from locale

2004-12-02  Ludovic Rousseau  <rousseau@taz>

	* address_gui.c: cb_add_new_record(): solves a crash in Japanse mode

	Thanks to Kazutaka HARADA for the patch

2004-11-29  Rik Wehbring  <rikster5@taz>

	* cp1250.c, cp1250.h, japanese.c, japanese.h, otherconv.c, otherconv.h, russian.c, russian.h:
	Add GNU public license to untagged files

2004-11-28  Ludovic Rousseau  <rousseau@taz>

	* address.c, address_gui.c, alarms.c, category.c, dat.c, datebook.c, datebook_gui.c, dialer.c, export_gui.c, import_gui.c, install_gui.c, japanese.c, jpilot-dump.c, jpilot-sync.c, jpilot.c, jpilot.spec, libplugin.c, log.c, memo.c, memo_gui.c, monthview_gui.c, password.c, plugins.c, prefs.c, prefs_gui.c, print.c, print_gui.c, restore_gui.c, russian.c, search_gui.c, sync.c, todo.c, todo_gui.c, utils.c, weekview_gui.c:
	remove useless trailing space characters

2004-11-28  Judd Montgomery  <judd@taz>

	* po/zh_CN.po:
	updated from http://www-perso.iro.umontreal.ca/translation/maint/jpilot/

	* dialer/jpilot-dial.c: Added GPL header

2004-11-27  Judd Montgomery  <judd@taz>

	* po/zh_CN.po, po/cs.po, po/es.po: from translation project

2004-11-27  Rik Wehbring  <rikster5@taz>

	* utils.c: Remove second unnecessary cast

2004-11-27  Ludovic Rousseau  <rousseau@taz>

	* ChangeLog, configure.in, jpilot.spec: version 0.99.8-pre6

	* jpilot-dump.c, jpilot-sync.c:
	define dummy jpilot_master_pid and output_to_pane() since they are only
	really used with the GUI

	* jpilot.c:
	main(): jpilot_master_pid = getpid() so we know if log.c:jp_vlogf()
	shall use a direct output_to_pane() or a pipe IPC

	* jpilot.c:
	output_to_pane() is not more static since we call it from log.c:jp_vlogf()

	* log.c:
	jp_vlogf(): do not use the pipe communication channel for intra-process log
	otherwise we may have a dead lock (jpilot freezes)

	The jpilot process may be blocked on a write (buffer full) and the _same_
	jpilot process will never read the pipe (since it is blocked on the
	write)

	* sync.c:
	fast_sync_local_recs(): use %ld instead of %d for header.unique_id
	The bug occurs only if JPILOT_DEBUG is defined

	* sync.c:
	jp_sync(): remove a pi_buffer_free() since no pi_buffer_new() was
	called. The bug only occurs if JPILOT_DEBUG is defined

	* utils.c: setup_sync(): remove useless cast

	* log.c:
	remove useless "extern int pipe_to_parent, pipe_from_parent;" declaration

2004-11-27  Rik Wehbring  <rikster5@taz>

	* utils.c: Fix sync ID bug introduced in -pre5

2004-11-26  Ludovic Rousseau  <rousseau@taz>

	* configure.in, jpilot.spec, ChangeLog: version 0.99.8-pre5

	* jpilot.c:
	main(): use the exact same "Character Set " string as in prefs_gui.c to
	get automatic translation

	* po/fr.po: add missing last char space

	* otherconv.c:
	other_to_UTF(): display a "g_convert_with_iconv error" message only on
	the first conversion error for each string

	* po/ja.po: remove "_" from 3 menu entries. Thanks to Kazutaka HARADA

	* memo_gui.c, restore_gui.c, todo_gui.c, address_gui.c:
	use GINT_TO_POINTER() to convert from a gpointer to an int

	* jpilot.c: cb_private(): initialise r_dialog variable

	* weekview_gui.c: display_weeks_appts(): remove two unused variables

	* print_headers.h:
	add prototypes for print_common_prolog() and print_common_setup() since
	we use these functions in print.c

	* otherconv.c:
	other_to_UTF(): use one g_snprintf("%s\\%02X%s") instead of
	g_strlcpy/g_sprintf/g_strlcat

	* otherconv.c:  #include <string.h> since we use strlen()

	* memo.c: get_memo_app_info(): remove two unused variables

2004-11-26  Rik Wehbring  <rikster5@taz>

	* monthview_gui.c, weekview_gui.c:
	Re-clicking button for an already existing window causes the window to jump to the front

	* print_gui.c, search_gui.c, todo_gui.c, utils.c, weekview_gui.c, address_gui.c, alarms.c, datebook_gui.c, jpilot.c, memo_gui.c, monthview_gui.c, password.c, prefs.c, print.c:
	Cleaned up subroutine calls to get_pref

2004-11-25  Rik Wehbring  <rikster5@taz>

	* datebook_gui.c, jpilot.c, prefs.c, prefs.h, prefs_gui.c, todo.c, todo_gui.c:
	Clean implementation of preferences
	All names use underscores instead of dashes
	Application-specific prefs are prefixed by the name of the app(todo_hide_completed)
	Removed obsolete prefs

	* datebook_gui.c:
	Pane height in datebook GUI under GTK1 was not modifiable

	* utils.c: Restore function accidentally purged

	* jpilot.c: Correct definite article(grammar) in menu title

2004-11-24  Ludovic Rousseau  <rousseau@taz>

	* ChangeLog, configure.in, jpilot.spec: version 0.99.8-pre4

	* address.c, address_gui.c, prefs_gui.c:
	replace "if (char_set == CHAR_SET_JAPANESE)" by
	"if (char_set == CHAR_SET_JAPANESE || char_set == CHAR_SET_SJIS_UTF)" to
	get  the japanese special treatments also when using GTK2 and UTF.

	Thanks to Kazutaka HARADA

	* po/ja.po: Translated. Thanks to Harada kazutaka

2004-11-24  Rik Wehbring  <rikster5@taz>

	* jpilot.c: Compile warning fixed by casting return value of function

	* jpilot.c:
	Fix output height decrease by 2 each time output log window is closed with close button

2004-11-22  Rik Wehbring  <rikster5@taz>

	* datebook.c, datebook.h, import_gui.c, libplugin.h, log.c, prefs.c, prefs.h, utils.c, utils.h:
	Removing unused functions

	* cp1250.c, cp1250.h: Unused UTF conversion functions deleted

	* Makefile.am, cp1253.c, cp1253.h, utils.h:
	Conversion functions to and from UTF are now in otherconv

	* Expense/expense.c, KeyRing/keyring.c, SyncTime/synctime.c, utils.h, weekview_gui.c, alarms.h, category.c, dat.c, datebook.c, datebook.h, datebook_gui.c, dialer.c, export.h, export_gui.c, i18n.h, import_gui.c, install_gui.c, jpilot-dump.c, jpilot-sync.c, jpilot.c, libplugin.c, libplugin.h, log.c, log.h, memo.c, memo.h, memo_gui.c, monthview_gui.c, password.c, password.h, plugins.c, plugins.h, prefs.c, prefs.h, prefs_gui.c, prefs_gui.h, print.c, print.h, print_gui.c, print_headers.c, print_headers.h, print_logo.c, print_logo.h, restore.h, restore_gui.c, search_gui.c, sync.c, sync.h, todo.c, todo.h, todo_gui.c, utils.c, address.c, address.h, address_gui.c, alarms.c:
	Add CVS Id tag to code

2004-11-21  Ludovic Rousseau  <rousseau@taz>

	* po/fr.po: translate 6 fuzzy strings

	* po/zh_TW.po, po/vi.po, po/zh_CN.po, po/no.po, po/ru.po, po/sv.po, po/tr.po, po/it.po, po/ja.po, po/jpilot.pot, po/nl.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/es.po, po/fr.po:
	regeneration

	* jpilot-dump.c:
	call otherconv_init()/otherconv_free() since we indirectly will use charset
	conversion functions

2004-11-21  Rik Wehbring  <rikster5@taz>

	* jpilot.c: Test Id in header of file

2004-11-21  Ludovic Rousseau  <rousseau@taz>

	* datebook_gui.c:
	datebook_gui(): add a separator above the "Today is:" label to be
	homogenous with the 3 other applications.

	* jpilot.c:
	main(): remove the separators above and under the lock and replace them
	by some empty space

	* datebook_gui.c, prefs.c, prefs.h:
	use a moving separator between the datebook text and datebook note

	* jpilot.c:
	Use a radio item menu for Hide/Show/Mask records so that the state is
	clearly indicated.

	* password.c:
	show_privates(): simplify the code. The state automata should not be
	here.

	* po/fr.po: correct a typo

	* otherconv.c, prefs.c, prefs.h:
	use GBK instead of GB2312 charset encoding for Chinese.
	GBK is a superset of GB2312.
	Thanks to Carlos Z.F. Liu

2004-11-20  Ludovic Rousseau  <rousseau@taz>

	* otherconv.c:
	other_to_UTF(): if only the last char is unknown no error is generated
	by g_convert_with_iconv() so we must treat this special case

	* otherconv.c:
	other_to_UTF(): replace unknown characters by \xy with xy the
	hexadecimal value of the character.
	Thanks to lei Yu

	* otherconv.c: other_to_UTF(): free allocated head and tail variables
	Thanks to lei Yu for the patch

	* otherconv.c:
	other_to_UTF(): revert patch of revision 1.5: Use "UTF-8" instead
	of"UTF-8//IGNORE"

	* datebook_gui.c, monthview_gui.c, weekview_gui.c:
	the second argument of get_pref() is (long *) and not (unsigned long *)

	* category.c:
	cb_edit_button(): cast const char *entry_text in (char *) when used in
	charset_j2p()

	* libplugin.h:
	jp_charset_p2j() and jp_charset_j2p() now use (char *) instead of
	(unsigned char *) for text strings.
	This may give warnings/errors when compiling plugins

	* address.c, address_gui.c, category.c, cp1250.c, cp1250.h, datebook.c, datebook_gui.c, japanese.c, japanese.h, jpilot.c, memo.c, memo_gui.c, otherconv.c, otherconv.h, russian.c, russian.h, sync.c, todo.c, todo_gui.c, utils.c, utils.h:
	strings convertion functions work on normal C strings (char *) not
	(unsigned char *)
	We then can remove a lot of type casting

	* jpilot-dump.c:
	main(): current_locale was declared (after some code!) but never used

	* jpilot-sync.c:  #include "otherconv.h" if ENABLE_GTK2 so that
	 otherconv_init()/otherconv_free() prototypes are defined

	* prefs_gui.c: remove 3 unused local variables

	* prefs.c:
	 #include "otherconv.h" if ENABLE_GTK2 so that otherconv_init()
	 prototype is defined

	* jpilot.c:  #include "otherconv.h" if ENABLE_GTK2 so that
	 otherconv_init()/otherconv_free() prototypes are defined

2004-11-18  Ludovic Rousseau  <rousseau@taz>

	* category.c:
	edit_cats(): the max category name length is 15 and not 16 (HOSTCATLTH)
	since we must also store the \0

	* memo.c, memo_gui.c:
	memo.c, get_memo_app_info(): do not modify (convert) the category names
	memo_gui.c, memo_gui(): convert the category names to jpilot charset for
	display only

	* po/fr.po: translate 3 strings

2004-11-17  Ludovic Rousseau  <rousseau@taz>

	* jpilot.c:
	remove Ctrl-A accelerator (used for "/File/Export") since it collide with
	a GTK2 accelerator (for "select all")

2004-11-17  Rik Wehbring  <rikster5@taz>

	* search_gui.c:
	Search now prioritizes description field over note field.
	If search pattern appears in both description and note field for a
	datebook appt or todo item then the search will return the match
	from the description section.  Previously it returned the match from
	the note field.

	* search_gui.c:
	Change layout of function declarations to match other jpilot C files

	* datebook.c, datebook.h, search_gui.c:
	Fix sort order for appts in datebook.
	Separate sort comparison functions are now used for the datebook and search GUI.

2004-11-16  Ludovic Rousseau  <rousseau@taz>

	* KeyRing/keyring.c:
	revert patch on DES_ecb3_encrypt() since the casts are mandatory for old
	OpenSSL (< 0.9.7e)

2004-11-16  Rik Wehbring  <rikster5@taz>

	* search_gui.c: Align datebook items in search gui in a column.
	Search items returned from datebook are not aligned properly in GTK2 because it
	uses a proportional rather than fixed font.  Using a tab in place of spaces
	fixes the problem.

	* print.c, print_headers.c:
	Format postscript for calendar printouts(day, week, month) to conform to standards.
	Divided generated postscript into prolog and setup sections per postscript specifications.
	Added extra comments and directives(%%Orientation) which format the output for on-screen postscript viewers as opposed to printing.

2004-11-14  Ludovic Rousseau  <rousseau@taz>

	* ChangeLog, configure.in, jpilot.spec: version 0.99.8-pre3

	* po/fr.po: translate two strings

	* po/nl.po, po/no.po, po/ru.po, po/sv.po, po/tr.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/es.po, po/fr.po, po/it.po, po/ja.po, po/jpilot.pot:
	regenerated

	* ABOUT-NLS: gettext version 0.14.1-6

	* KeyRing/keyring.c:
	remove cast for args 1 & 2 of DES_ecb3_encrypt() since they are now useless
	(with OpenSSL 0.9.7e)

	* autogen.sh:
	run "aclocal -I m4" _after_ gettextize because gettextize asks to:
	  Please run 'aclocal -I m4' to regenerate the aclocal.m4 file.
	  You need aclocal from GNU automake 1.5 (or newer) to do this.
	  Then run 'autoconf' to regenerate the configure file.

2004-11-13  Rik Wehbring  <rikster5@taz>

	* datebook_gui.c:
	Settle on consistent name for get_details subroutine across all 4 apps

	* jpilot.c:
	delete_event callback routine needs cb_ prefix for consistency with other callback names

2004-11-12  Rik Wehbring  <rikster5@taz>

	* prefs_gui.c:
	Simplify handling of text entry boxes in prefs_gui by creating a single callback routine

	* address.c, address_gui.c, alarms.c, dat.c, datebook.c, datebook_gui.c, jpilot-dump.c, monthview_gui.c, print.c, search_gui.c, utils.c, utils.h, weekview_gui.c:
	Synchronize names in coding space
	Created standard, recognizable variable names for the 4 different apps
	Datebook: a -> appt
	Address : a -> addr
	ToDo    : todo unchanged
	Memo    : memo unchanged

	* jpilot.c: Addendum to get pref_show_tooltips to work

	* address_gui.c, memo_gui.c, todo_gui.c:
	Improve code readability by using variable for frequent GPOINTER_TO_INT casts

	* prefs.c, prefs.h, prefs_gui.c:
	New preference to show or hide popup tooltips

	* datebook.c, search_gui.c:
	Entries returned from datebook app during search were in random order.
	Sort returned datebook entries by ascending date.

2004-11-11  Judd Montgomery  <judd@taz>

	* jpilot.c: removed declarations from mid-code

2004-11-11  Rik Wehbring  <rikster5@taz>

	* jpilot.c, prefs_gui.c:
	Get first day of week from locale in GTK2, no preference setting

2004-11-11  Ludovic Rousseau  <rousseau@taz>

	* po/fr.po:
	add a space before 'Utilisateur : ' used to create the window title
	change some E in 

2004-11-11  Judd Montgomery  <judd@taz>

	* utils.c: variable declared mid code

2004-11-11  Ludovic Rousseau  <rousseau@taz>

	* po/zh_CN.po: complete review and translation.

	Thanks to lei Yu

	* otherconv.c:
	other_to_UTF(): in case of convertion error we return a duplicate of the
	input and not the input directly.
	This bug crashed jpilot when using UTF-8: GB2312 encoding

	* import_gui.c, memo_gui.c:
	remove the charset conversion (for display only) from
	import_gui.c/cb_import_record_ask_quit() and instead convert the memo
	text itself in memo_gui.c/memo_import_callback().

	The memo is converted back from J-Pilot to Palm encoding in
	memo.c/pc_memo_write() so we need to have it in UTF-8 for GTK2

	* import_gui.c:
	cb_import_record_ask_quit(): convert the imported text to UTF-8 for
	GTK2. The source charset is the one used on the Palm.

	* datebook_gui.c:
	create_time_menu(): use jp_strftime() to generate a valid UTF-8 time
	string.

	thanks to lei Yu for the patch

	* datebook_gui.c:
	set_begin_end_labels(): use jp_strftime() instead of strftime() to
	generate a valid UTF-8 time string for GTK2

	* sync.c:
	jp_pilot_connect(): give a more explicit error message when pi_bind()
	fails. We now have "permission denied" or "file not found" instead of
	"Illegal seek". Also display the device name we are trying to use.

	Thanks to Edgar Bonet for the patch

2004-11-08  Rik Wehbring  <rikster5@taz>

	* jpilot.c:
	Save default output pane height if it has not been set previously

2004-11-07  Ludovic Rousseau  <rousseau@taz>

	* otherconv.c:
	other_to_UTF(): use "UTF-8//IGNORE" as tocode to greatly simplify the
	error case management.

	http://www.gnu.org/software/libiconv/documentation/libiconv/iconv_open.3.html

2004-11-06  Ludovic Rousseau  <rousseau@taz>

	* print.c:
	print_months_appts(): reset LC_NUMERIC locale and not LC_ALL before
	returning

	* address_gui.c, memo_gui.c:
	address_update_clist() and memo_update_clist(): disconnect
	cb_clist_selection function from the clist object only for the main
	window and not for the export window.

	This avoids a "Gtk-WARNING **: unable to find signal handler for
	object(GtkCList:0x821f1a8) with func(0x80837b0) and data((nil))"

	* address_gui.c:
	address_update_clist(): do not use the global variable address_category
	but the function argument category.
	The category selection was not working from the Export window.

2004-11-05  Ludovic Rousseau  <rousseau@taz>

	* utils.c:
	lstrncpy_remove_cr_lfs(): truncate the string on an UTF-8 character
	boundary.
	Thanks to lei Yu for the patch

	* otherconv.c, prefs.c, prefs.h:
	close bugs 1292 and 1138: add support for Cyrillic (CP1251)

2004-11-04  Ludovic Rousseau  <rousseau@taz>

	* otherconv.c, prefs.c, prefs.h:
	close bug 1346: add support for Hebrew (CP1255)

	* utils.c:
	charset_p2newj() and charset_j2p(): default charset is considered to be
	UTF-8 since we may add a long list of them

	* otherconv.c:
	other_to_UTF(): cast (unsigned char*)strdup() since that's the return
	type

	* weekview_gui.c: display_weeks_appts(): convert the week day in UTF-8

	* utils.c:
	jp_strftime(): the "format" string argument is UTF-8 encoded since it
	comes from a po/ file. So convert it to local encoding before using it
	in strftime().

	* po/zh_CN.po: add a leading / to the translated "/File/_Find" entry

	* po/zh_CN.po: remove fuzzy for "/_File""/_File" entry
	translate "/Help/PayBack program" and "/Help/J-Pilot"
	This will avoid having duplicate File and Help menu entries

2004-10-30  Rik Wehbring  <rikster5@taz>

	* jpilot.c:
	Center 4 app buttons with pixpmaps to match sync and backup buttons

2004-10-29  Ludovic Rousseau  <rousseau@taz>

	* reconf: remove config.status before starting autoreconf

	* Makefile.am, jpilot-sync.c, jpilot.c, otherconv.c, otherconv.h, prefs.c, prefs.h, utils.c:
	use iconv to convert from the Palm charset to UTF-8.

	Many thanks to Amit Aronovitch for the idea and a large part of the
	code.

2004-10-29  Judd Montgomery  <judd@taz>

	* todo_gui.c:
	Fixed bug with setting todos forward days the first time the calendar widget is used

2004-10-28  Ludovic Rousseau  <rousseau@taz>

	* jpilot.c:
	output_to_pane(): with GTK2, insert the text at the end and not at the
	cursor position since the user may have clicked on the text and moved
	the cursor to the clicked position.

	Thanks to Ari Pollak for the patch

2004-10-25  Rik Wehbring  <rikster5@taz>

	* address_gui.c, datebook_gui.c, memo_gui.c, todo_gui.c:
	Warn users when modification of deleted record is attempted

	* address_gui.c:
	Same size mail and dial buttons in address book looks much cleaner

	* address_gui.c, datebook_gui.c, memo_gui.c, todo_gui.c:
	Make sure selected row is visible after any CLIST update

2004-10-24  Rik Wehbring  <rikster5@taz>

	* datebook.c:
	Fixed unpredictable bug in repeating events caused by unitialized variable

	* datebook_gui.c: datebook_gui.c

2004-10-22  Judd Montgomery  <judd@taz>

	* print.c: removed variable declared in middle of code

2004-10-22  Rik Wehbring  <rikster5@taz>

	* datebook_gui.c, memo_gui.c, todo_gui.c:
	Fix cursor behavior in clists.
	Bug introduced when recoding update_clist() which prevented the
	right-hand side of jpilot from being updated on a cursor movement.

	* address_gui.c: datebook_gui.c

2004-10-21  Judd Montgomery  <judd@taz>

	* address_gui.c: Patch to make email buttons always call the email exe

2004-10-20  Ludovic Rousseau  <rousseau@taz>

	* ChangeLog, configure.in: version 0.99.8-pre2

2004-10-20  Rik Wehbring  <rikster5@taz>

	* address_gui.c, mailer.c, mailer.h, prefs_gui.c, Makefile.am:
	Simplified code for e-mailing from address book.
	External mail program to use is now set as a preference.

2004-10-19  Rik Wehbring  <rikster5@taz>

	* prefs_gui.c:
	Removed printf apparently left over from debugging new feature

2004-10-19  Judd Montgomery  <judd@taz>

	* prefs.c: fixed default

	* prefs.c, prefs.h, prefs_gui.c, todo_gui.c:
	Created option for specifying whether a ToDo should default to a due date, and what date

2004-10-18  Judd Montgomery  <judd@taz>

	* jpilot.c: keep output pane minimized until output is displayed

2004-10-17  Ludovic Rousseau  <rousseau@taz>

	* po/de.po, po/es.po, po/it.po, po/ja.po, po/nl.po, po/no.po, po/ru.po, po/sv.po, po/tr.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, po/ca.po, po/cs.po, po/da.po:
	remove fuzzy tag for "/File/_Quit" (the _ was recently added) to avoid
	the creation of a "File" menu with "_Quit" as the only entry in addition
	to the translated "File" menu

	* po/fr.po: translate the new strings (hot-keys tooltips + some others)

	* po/ca.po, po/cs.po, po/da.po, po/de.po, po/es.po, po/fr.po, po/it.po, po/ja.po, po/nl.po, po/no.po, po/ru.po, po/sv.po, po/tr.po, po/vi.po, po/zh_CN.po, po/zh_TW.po:
	regenerated

	* po/jpilot.pot:
	regenerated to include the new texts for hot-keys and some others

	* Makefile.am:
	- re-add intltool-extract.in intltool-merge.in intltool-update.in (my
	  previous patch revision 1.28 was wrong)
	- add DISTCLEANFILES = intltool-extract intltool-merge intltool-update
	  so that make distcheck is happy

	* Makefile.am: add mailer.h to jpilot_SOURCES

	* po/Makevars: add MSGID_BUGS_ADDRESS definition

	* Makefile.am: distribute ChangeLog.cvs

	* Makefile.am:
	generate ChangeLog.cvs and convert the login into real names

2004-10-16  Ludovic Rousseau  <rousseau@taz>

	* address_gui.c, datebook_gui.c, memo_gui.c, todo_gui.c:
	add the same keyboards accelerators for the 4 applications:
	Ctrl-D: Delete
	Ctrl-O: Copy
	Ctrl-N: New Record
	Ctrl-R: Add Record
	Ctrl-Return: Apply Changes

	* jpilot.c: add Ctrl-Y accelerator for Sync

	* KeyRing/keyring.c:
	cb_add_new_record(): duplicate (strdup) the name/account/password
	strings since we get them using gtk_entry_get_text() which returns "a
	pointer to the contents of the widget as a string. This string points to
	internally allocated storage in the widget and must not be freed,
	modified or stored."
	http://developer.gnome.org/doc/API/2.0/gtk/GtkEntry.html#gtk-entry-get-text

	This bug crashes jpilot if you use a strings (like an non-ASCII
	character) that is modified by an UTF-8 conversion function

2004-10-16  Rik Wehbring  <rikster5@taz>

	* datebook.c: Change repeatWeekly events to mirror Palm behavior

2004-10-16  Judd Montgomery  <judd@taz>

	* category.c, sync.c, sync.h:
	Changes required to work with pilot-link 0.12.0

	* address_gui.c, Expense/expense.c, jpilot-dump.c, memo_gui.c, todo_gui.c:
	minor cleanup of unused vars

2004-10-15  Judd Montgomery  <judd@taz>

	* configure.in:
	Added check for pilot-link 0.12 and rewrote version checks

2004-10-15  Ludovic Rousseau  <rousseau@taz>

	* prefs.c, prefs.h, utils.c:
	rename CHAR_SET_LATINUTF in CHAR_SET_1252UTF since the Palm does not use
	ISO Latin1 encoding but CP 1252 encoding.
	See http://www.microsoft.com/typography/unicode/1252.htm

	* utils.c:
	multibyte_safe_memccpy(): the searched character may also be just after a
	multi-byte character

	* utils.c: small re-indentation for a better readability

	* utils.c:
	charset_p2j(): call charset_p2newj() to avoid code duplication

2004-10-13  Ludovic Rousseau  <rousseau@taz>

	* restore_gui.c:
	populate_clist_sub(): sort the list of file filenames to restore

	* restore_gui.c:
	If ENABLE_GTK2, convert the file names to restore in UTF-8 since they
	may contain non ASCII characters

2004-10-09  Rik Wehbring  <rikster5@taz>

	* prefs_gui.c:
	Change checkbox string to more grammatically correct singular noun

	* datebook.c: Fix highlighting error in events which repeat by day

2004-10-08  Ludovic Rousseau  <rousseau@taz>

	* jpilot.c, prefs.c, prefs.h, prefs_gui.c:
	Add: "Ask confirmation for files installation (J-Pilot -> PDA)"
	configuration option

	* install_gui.c: install_gui(): rename the "Done" button in "Close"

2004-10-07  Ludovic Rousseau  <rousseau@taz>

	* jpilot.c:
	main(): (re)set the output pane to size used when jpilot exited

	* po/fr.po: updated

	* po/jpilot.pot: regenerated

	* utils.c: undelete_pc_record(): initialize ret variable

	* utils.c:
	undelete_pc_record(): remove declatations of 4 unused variables

	* todo_gui.c: todo_gui(): remove 7 declarations of now unused variables

	* memo_gui.c: memo_update_clist(): remove unused int i variable

	* jpilot.c: main(): remove unused char utf8_locale[] variable

	* address_gui.c, mailer.c:  #include "mailer.h"

	* mailer.h: new file with dialog_email() prototype

	* Expense/expense.c:
	rename clist_find_id() in expense_clist_find_id() to avoid a name
	collision with a clist_find_id() in utils.c

	* utils.h: add undelete_pc_record() prototype

2004-10-07  Rik Wehbring  <rikster5@taz>

	* jpilot.c: Add ability to quit by simply typing q from File menu

	* jpilot.c: Remove Quit button from left column of main window

	* prefs_gui.c:
	Simplify code to use a single callback for all preference checkboxes

	* memo_gui.c, prefs_gui.c, todo_gui.c:
	ToDo and Memo preferences moved from application window to preferences window

2004-10-06  Ludovic Rousseau  <rousseau@taz>

	* search_gui.c:
	cb_search_gui(): add a keyboard accelerator (Escape key) for the "Close"
	button

	* search_gui.c:
	cb_search_gui(): rename the button from "Done" to "Close"

2004-10-05  Ludovic Rousseau  <rousseau@taz>

	* docs/Makefile.am: install the manual files in a manual/ directory

2004-10-04  Rik Wehbring  <rikster5@taz>

	* address_gui.c, memo_gui.c, todo_gui.c, datebook_gui.c:
	Improve efficiency of cb_clist_update across all 4 apps.
	Eliminate double calls to cb_clist_selection.
	Pull constants out of loops.
	Datebook update clist now follows same style as other 3 apps.

2004-10-03  Ludovic Rousseau  <rousseau@taz>

	* utils.c:
	dialog_generic_with_text(): the first button get the focus so you can
	close the dialog with the Enter key

	* jpilot.c: change the Import and Export icons.
	Thanks to David A. Desrosiers for the suggestion.

	* utils.c:
	dialog_generic_with_text(): use the correct type for text_widget and
	avoid some GTK casts

	* utils.c:
	dialog_generic_with_text(): hide the cursor so that you do not see a
	blinking bar

	* utils.c: dialog_generic_with_text(): remove a useless double GTK cast

	* jpilot.c:
	let GTK2 calculate the correct height of the J-Pilot and PayBack about
	boxes

	* Expense/expense.c, KeyRing/keyring.c, SyncTime/synctime.c:
	use "About %s" instead of a complete "About plugin_foo" so that every
	plugin can use the already translated "About %s" string

	* jpilot.c: add nice colorful GTK2 icons in the main menu :-)

2004-10-02  Ludovic Rousseau  <rousseau@taz>

	* reconf: use --install instead of --foreign for autoreconf

	* jpilot.spec: update J-Pilot version

	* Makefile.am: include jpilot.xpm in the archive

	* jpilot.xpm:
	add jpilot.xpm so it can be used by jpilot.desktop or another menu
	system

	* docs/Makefile.am:
	do not distribute jpilot-upgrade-99.1 manpage since the binary is no more
	provided

	* jpilot.c: I forgot two GTK cast for g_output_text

	* jpilot.c:
	use correct type for g_output_text to avoid inelegant GTK cast

	* jpilot.c:
	use the correct type for g_output_text_buffer so we can remove all the
	inelegant and dangerous type cast.

	* jpilot.c:
	output_to_pane(): use the right function and the right buffer when
	inserting valid UTF-8 text

	* autogen.sh, reconf:
	do not use autoreconf in autogen.sh (revert back to previous version)
	autoreconf is used in reconf

2004-10-01  Ludovic Rousseau  <rousseau@taz>

	* configure.in: Version 0.99.8-pre1

	* configure.in: do not generate intl/Makefile

	* po/ca.po, po/cs.po, po/da.po, po/de.po, po/es.po, po/it.po, po/ja.po, po/nl.po, po/no.po, po/ru.po, po/sv.po, po/tr.po, po/vi.po, po/zh_CN.po, po/zh_TW.po:
	refreshed (regenerated)

	* po/fr.po: translate jpilot-dump.c strings

	* po/jpilot.pot: include jpilot-dump.c strings

	* jpilot-dump.c: use i18n to benefit from l10n

	* po/POTFILES: add ../jpilot-dump.c

	* po/POTFILES.in: add jpilot-dump.c

	* jpilot-sync.c: use i18n to benefit from l10n

	* po/fr.po: big update

2004-09-30  Rik Wehbring  <rikster5@taz>

	* jpilotrc.blue, jpilotrc.purple, jpilotrc.steel:
	Fix colors in GTK2.x when focus is shifted from text widget which has a highlighted section of text

2004-09-29  Ludovic Rousseau  <rousseau@taz>

	* Makefile.am:
	intltool-extract.in intltool-merge.in intltool-update.in are not
	useful/needed in the generated archive

	* autogen.sh: use autoreconf

2004-09-25  Ludovic Rousseau  <rousseau@taz>

	* m4/Makefile.am: reorganise and add missing .m4 files

	* po/jpilot.pot, po/zh_TW.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/es.po, po/fr.po, po/it.po, po/ja.po, po/nl.po, po/no.po, po/ru.po, po/sv.po, po/tr.po, po/vi.po, po/zh_CN.po:
	refreshed (regenerated)

	* m4/gettext.m4, depcomp, install-sh, missing: update

	* configure.in: add version (0.14.1) to AM_GNU_GETTEXT_VERSION

	* COPYING: change "19yy" in "year"

	* log.c: jp_vlogf(): try to convert to UTF-8 only if GTK2 is used

	* jpilot.c:
	display a dialog box if GTK2 is used and the selected charset is not
	UTF-8 (usefull for user upgrades)

	* prefs.c, prefs.h:
	add PREF_UTF_ENCODING (prefs.h) and utf-encoding (prefs.c)

	* prefs.c: glob_prefs[]: use CHAR_SET_LATINUTF by default (instead of
	CHAR_SET_LATIN1) when GTK2 is used

	* prefs.c: jp_pref_read_rc_file: use sizeof(line) instead of a constant

	* print.c:
	close bug 1330: invalid postscript when printing the todo list contains ( or )

	* .cvsignore: list of CVS ignored (generated) files

2004-09-24  Ludovic Rousseau  <rousseau@taz>

	* empty/.cvsignore, icons/.cvsignore, po/.cvsignore, Expense/.cvsignore, KeyRing/.cvsignore, SyncTime/.cvsignore, dialer/.cvsignore, docs/.cvsignore:
	list of CVS ignored (generated) files

	* config.guess, config.sub, ltmain.sh, m4/Makefile.in, aclocal.m4:
	removed from CVS since they are (re)generated by autogen.sh

	* monthview_gui.c:
	display_months_appts(), monthview_gui(): use jp_strftime() instead of
	strftime()

	* prefs_gui.c:
	make_pref_menu(): use jp_strftime() instead of strftime() for the
	"Long date format" menu

	* utils.c:
	timeout_date(): use jp_strftime() instead of strftime() for the
	"Today is ..." display

	* utils.h: add declaration of jp_strftime()

	* datebook_gui.c:
	set_date_labels(): use jp_strftime() insead of strftime()

	* utils.c:
	add jp_strftime() to convert the result of strftime() in UTF-8 when
	needed

	* KeyRing/keyring.c: solve bug 1306: Keyring plugin truncates passwords

	* jpilot.c:
	output_to_pane(): simplify the locale to UTF-8 text conversion

	* log.c: convert from UTF-8 to local encoding before printing to stdout

	* jpilot.c:
	do not force setlocale() to a UTF-8 locale. It is a user choice.

2004-09-23  Rik Wehbring  <rikster5@taz>

	* todo_gui.c:
	Removed one redundant line accidentally included while adding sort to todo columns

	* todo_gui.c:
	Add new feature to sort todo list by clicking on column title

2004-09-18  Ludovic Rousseau  <rousseau@taz>

	* Expense/expense.c: UTF-8: correctly convert categories names

2004-09-18  David A. Desrosiers  <desrod@taz>

	* INSTALL:
	Testing a commit, to further test the revert of the server-side commit
	scripts.

2004-09-18  Rik Wehbring  <rikster5@taz>

	* search_gui.c: Final version of column width patch

	* search_gui.c: Better patch to autosize column width in search clist

	* search_gui.c: clist width bumped up to fully display datebook text

2004-09-17  Ludovic Rousseau  <rousseau@taz>

	* po/ca.po: translate Help menu to avoid a menu duplication

	* po/fr.po: typo: ECrit -> Ecrit

2004-09-17  Rik Wehbring  <rikster5@taz>

	* datebook_gui.c:
	Change clist to behave like the other 3 apps and also reduce flicker

	* memo_gui.c:
	Fix selected row so it is always 0 after changing category

	* address.c, address_gui.c, datebook.c, datebook_gui.c, libplugin.c, libplugin.h, memo.c, memo_gui.c, prefs_gui.c, todo.c, todo_gui.c, utils.c:
	Bug 1056: Undelete feature desired

2004-09-15  Rik Wehbring  <rikster5@taz>

	* datebook.c:
	Bug 1338: Some repeating appointments do not show in monthview gui

2004-09-13  Judd Montgomery  <judd@taz>

	* print_logo.c: Testing cvs auto emailer

2004-09-13  David A. Desrosiers  <desrod@taz>

	* datebook_gui.c:
	Just testing a commit, so we can see if emails + diffs are working right.

2004-09-13  Judd Montgomery  <judd@taz>

	* print_logo.c: Testing cvs auto emailer

2004-09-06  Rik Wehbring  <rikster5@taz>

	* Makefile.am, address_gui.c, mailer.c, prefs.c, prefs.h:
	Bug 1176: Adding ability to e-mail directly from address book

	* search_gui.c:
	Bug 1182: Search screen needs a button.  Patch supplied by Ludovic Rousseau

	* jpilotrc.blue, jpilotrc.default, jpilotrc.green, jpilotrc.purple, jpilotrc.steel:
	Bug 1322: GTK2.4 libraries require changes to jpilotrc files to preserve colors

	* datebook_gui.c: Bug 1178: patch for 1 byte memory leak in datebook

	* print.c, print_headers.c:
	Bug 1116: Word wrap provided when printing monthly calendar

	* address_gui.c:
	Bug 1154: resorting in address book should leave selection bar on same entry

	* todo_gui.c:
	Bug 1107: show completed todos found through search regardless of show completed checkbox status

	* address_gui.c, datebook_gui.c, jpilot.c, memo_gui.c, todo_gui.c:
	Bug 1153: Patch reduces flicker when deleting records

	* datebook_gui.c: Bug 1131: ALT key for accelerator instead of control

2004-07-24  Judd Montgomery  <judd@taz>

	* print.c: patch for locale - Rik Wehbring

	* jpilot.c: patch xlib warning - Rik Wehbring

	* jpilot-dump.c, jpilot-sync.c, jpilot.c, utils.c, utils.h:
	changed usage string and tagged for translate

	* KeyRing/keyring.c, Expense/expense.c, utils.c, todo.c, todo_gui.c, sync.c, restore_gui.c, prefs_gui.c, prefs.c, plugins.c, memo_gui.c, memo.c, log.c, libplugin.c, jpilot.c:
	translation string patch - Rik Wehbring

	* install_gui.c: translation string patch

	* import_gui.c, dialer.c, datebook_gui.c, datebook.c, dat.c, category.c, alarms.c, address_gui.c, address.c:
	translation string patch - Rik Wehbring

2004-07-18  Judd Montgomery  <judd@taz>

	* jpilot.c: patch for utf8 error messages from Ludovic

2004-05-27  Judd Montgomery  <judd@taz>

	* address.c: patch for bug 1178

2004-05-03  Judd Montgomery  <judd@taz>

	* print.c: Ludovic 1 liner for sizeof typo/bug

	* print_logo.c: Ludovic patch for setlocale

2004-04-21  Judd Montgomery  <judd@taz>

	* po/cs.po, po/da.po, po/de.po, po/no.po, po/sv.po, po/ja.po: updated

	* sync.c: records not passing binary check failed to get deleted

	* KeyRing/keyring.c:
	patch 1184 for truncating buffers with non ASCII charsets

2004-04-16  Judd Montgomery  <judd@taz>

	* po/ru.po: updated for 0.99.7

2004-04-15  Judd Montgomery  <judd@taz>

	* po/tr.po: updated for 0.99.7

	* po/es.po: updated

2004-04-08  Judd Montgomery  <judd@taz>

	* datebook.c:
	DateBk5 patch for completed events (tag is 'C' and 'c' now)

2004-03-25  Judd Montgomery  <judd@taz>

	* po/fr.po: help menu fix

	* datebook_gui.c:
	keep time menu pull downs more in sync with keyed entries

2004-03-23  Judd Montgomery  <judd@taz>

	* address_gui.c, memo_gui.c: make export not clear the right side

	* datebook_gui.c: bug 1160 - move highlighted line to modified record

	* datebook_gui.c: Improved dayview code changes

2004-03-20  Judd Montgomery  <judd@taz>

	* datebook.c: F for floating appt as well as f

2004-03-07  Judd Montgomery  <judd@taz>

	* address_gui.c, datebook_gui.c, memo_gui.c, todo.h, todo_gui.c:
	fixed memory leak

2004-03-04  Judd Montgomery  <judd@taz>

	* address_gui.c: paste error

2004-03-03  Judd Montgomery  <judd@taz>

	* AUTHORS: added Panayotis Katsaloulis for greek code

2004-03-01  Judd Montgomery  <judd@taz>

	* ChangeLog: testing cvs

	* Makefile.am: removed -Wall

	* configure.in: fixes for Solaris

	* address_gui.c: minor change, declaration of vars after code

	* configure.in, jpilot.c: minor changes

2004-02-29  Judd Montgomery  <judd@taz>

	* po/zh_TW.po: took out offending chars which were unused

	* po/jpilot.pot: updated

	* cp1250.c: include stdlib

	* autogen.sh: turn off gettextize for now

	* Makefile.am: added description-pak

	* po/ca.po, po/cs.po, po/da.po, po/de.po, po/es.po, po/fr.po, po/it.po, po/ja.po, po/nl.po, po/no.po, po/ru.po, po/sv.po, po/tr.po, po/vi.po, po/zh_CN.po, po/zh_TW.po:
	updated

	* ChangeLog: updated for 0.99.7

	* docs/Makefile.am, jpilot.spec, jpilot.spec.in:
	added missing man pages

	* TODO: *** empty log message ***

	* SlackBuild.in: updated

	* INSTALL: rpmbuild command added

	* jpilot-dump.c: Added patch fpor getting phone label tags

	* jpilot.c, prefs.c, prefs.h: Added version checking

	* m4/gettext.m4: temporary patch for aclocal 1.8.2 problems

2004-02-26  Judd Montgomery  <judd@taz>

	* po/fr.po: update

2004-02-25  Judd Montgomery  <judd@taz>

	* po/sv.po: File menu problem

2004-02-22  Judd Montgomery  <judd@taz>

	* description-pak: initial import

	* docs/Makefile.am, jpilot.spec, Makefile.am: updated

	* m4/Makefile.am, m4/Makefile.in, m4/gettext.m4, m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4, m4/progtest.m4, m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4:
	gettext version 0.14.1

	* ltmain.sh, install-sh: updated

	* depcomp: aclocal version 1.8.2

	* configure.in, config.sub, config.guess: updated

	* aclocal.m4: aclocal version 1.8.2

	* ABOUT-NLS: gettext version 0.14.1

	* intl/libgnuintl.h: upgrade gettext 0.14.1

	* address_gui.c, category.c, datebook_gui.c, jpilot.c, sync.c: comments

	* po/jpilot.pot: updated

	* po/ChangeLog, po/Makefile.in.in, po/Rules-quot:
	upgrade gettext 0.14.1

	* po/nl.po, po/no.po, po/ru.po, po/sv.po, po/tr.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/es.po, po/fr.po, po/it.po, po/ja.po:
	updated

	* intl/eval-plural.h, intl/gmo.h, intl/libgnuintl.h.in, intl/localcharset.h, intl/localename.c, intl/log.c, intl/os2compat.c, intl/os2compat.h, intl/osdep.c, intl/plural-exp.c, intl/plural-exp.h, intl/printf-args.c, intl/printf-args.h, intl/printf-parse.c, intl/printf-parse.h, intl/printf.c, intl/relocatable.c, intl/relocatable.h, intl/vasnprintf.c, intl/vasnprintf.h, intl/vasnwprintf.h, intl/wprintf-parse.h, intl/xsize.h, intl/ChangeLog, intl/Makefile.in, intl/VERSION, intl/bindtextdom.c, intl/config.charset, intl/dcgettext.c, intl/dcigettext.c, intl/dcngettext.c, intl/dgettext.c, intl/dngettext.c, intl/explodename.c, intl/finddomain.c, intl/gettext.c, intl/gettextP.h, intl/hash-string.h, intl/intl-compat.c, intl/l10nflist.c, intl/loadinfo.h, intl/loadmsgcat.c, intl/localcharset.c, intl/locale.alias, intl/localealias.c, intl/ngettext.c, intl/plural.c, intl/plural.y, intl/textdomain.c:
	gettext version 0.14.1

	* sync.c: Added creator IDs to skip with OS 5.x

2004-02-21  Judd Montgomery  <judd@taz>

	* sync.c, memo_gui.c: buffer too small

	* jpilot.spec.in, jpilot-sync.c, depcomp, m4/Makefile.am, docs/jpilot-sync.1:
	*** empty log message ***

	* aclocal.m4: 1.7.3 to 1.7.7

	* jpilot.c: put help->jpilot text in a textview

	* utils.c, utils.h: added dialog_generic_with_text

	* Makefile.am: cp1253.c, h

2004-02-18  Judd Montgomery  <judd@taz>

	* jpilot.c: --help typo

	* address_gui.c, datebook_gui.c, libplugin.h, memo_gui.c, todo_gui.c, utils.c, utils.h:
	bug (feature) 1052 - Highlight overdue todos

	* docs/jpilot.1: -i option added

	* address_gui.c, memo_gui.c, prefs.c, prefs.h, todo_gui.c:
	patch 1054 - remember last categories

	* address_gui.c, datebook_gui.c, jpilot.c, libplugin.c, todo_gui.c, utils.c:
	bug 1050 - memory leak

	* AUTHORS: added Rik Wehbring

	* address_gui.c, datebook_gui.c, memo_gui.c, todo_gui.c:
	bug 1119 - ask twice to save record when changing categories

	* category.c:
	bug 1120 - can use cursor keys in edit category window now

	* todo_gui.c:
	bug 1117 - typing in an empty todo now assumes new todo is wanted

	* datebook_gui.c, KeyRing/keyring.c, address_gui.c, memo_gui.c, Expense/expense.c:
	possible memory problem

	* memo_gui.c, todo_gui.c, address_gui.c:
	bug 1118 bug fix for cycling categories not asking to save record

2004-02-17  Judd Montgomery  <judd@taz>

	* jpilot.c: Made menu code a little simpler

2004-02-16  Judd Montgomery  <judd@taz>

	* import_gui.c: Small GTK patch for file type guess

	* datebook_gui.c, address_gui.c, memo_gui.c, todo_gui.c:
	copy/paste error bad pointer

	* jpilot.c:
	some compilers don't like declared variables inline with code

2004-02-12  Judd Montgomery  <judd@taz>

	* datebook_gui.c: GTK2 patches accelerators - Rik

2004-02-11  Judd Montgomery  <judd@taz>

	* jpilot.c: accelerators for GTK2, Ludovic Rouseau

2004-02-08  Judd Montgomery  <judd@taz>

	* cp1253.c, cp1253.h, prefs.c, prefs.h, sync.c, utils.c, utils.h:
	CP1253<-->utf8, Greek character conversion added

	* address_gui.c: Backout previous vcard fix

	* address_gui.c: vcard export fix

2004-02-01  Judd Montgomery  <judd@taz>

	* jpilotrc.green, jpilotrc.purple, jpilotrc.steel, jpilotrc.blue:
	updated for GTK2

2004-01-05  Judd Montgomery  <judd@taz>

	* jpilot.c: Iconify at startup

2004-01-04  Judd Montgomery  <judd@taz>

	* todo_gui.c: todo prefs shown when shouldn't - bug 1031

	* print_logo.c: added LC_ALL C

	* category.c: cp1252 patches

2004-01-02  Judd Montgomery  <judd@taz>

	* Expense/expense.c, KeyRing/keyring.c:
	gtk2 textview code for expense and keyring - bug 1016

	* datebook_gui.c: added tooltips to month, week buttons - bug 1015

	* address_gui.c, datebook_gui.c, export.h, export_gui.c, import_gui.c, install_gui.c, jpilot.c, memo_gui.c, prefs_gui.c, print_gui.c, restore.h, restore_gui.c, search_gui.c, todo_gui.c:
	window focus patches - bug 1012

	* jpilot.c: Added a few menu accelerators - bug 1011

	* configure.in: some configure enable options broken - bug 1010

	* Expense/expense.c, KeyRing/keyring.c, address_gui.c, memo_gui.c, todo_gui.c:
	commented clist hack better

	* datebook_gui.c:
	selecting a new date in calendar wouldn't ask to save changes - bug 1006

	* jpilot.c: 1 liner for ALT-F key binding - bug 1002

	* address_gui.c, memo_gui.c, todo_gui.c:
	deleting every entry left the last showing - bug 1019

	* address_gui.c, todo_gui.c, memo_gui.c:
	category cycle with only 2 cats did not work - bug 1018

	* memo_gui.c: category corruption in memo - bug 1017

	* monthview_gui.c, weekview_gui.c:
	fixed leading space in no time appts - bug 1004

	* address_gui.c: fixed name repeated in second field - bug 1005

	* monthview_gui.c: null pointer fix

	* import_gui.c, jpilot.c, todo_gui.c, address_gui.c, datebook_gui.c, memo_gui.c:
	GtkTextView for GTK2

	* monthview_gui.c: GTK2 support for monthview

	* weekview_gui.c: GTK2 support for weekview

2004-01-01  Judd Montgomery  <judd@taz>

	* datebook_gui.c: New character set routine

	* prefs_gui.c: minor text change

	* utils.c, utils.h: changed charset_j2p to a function

	* address.c, address_gui.c, cp1250.c, cp1250.h, jpilot.c, memo.c, memo_gui.c, sync.c, todo.c, todo_gui.c, utils.c, utils.h:
	New character set routine

	* monthview_gui.c: half rewritten, much faster drawing and less lines

	* monthview_gui.c: cleanup

	* weekview_gui.c: made weekview resizeable and remember its size

2003-12-31  Judd Montgomery  <judd@taz>

	* prefs.c, prefs.h, monthview_gui.c:
	made monthview resizeable and remember its size

2003-12-29  Judd Montgomery  <judd@taz>

	* datebook_gui.c: fixed calendar flicker on pgup/pgdn

2003-12-24  Judd Montgomery  <judd@taz>

	* datebook.c: fixed endless for loop

2003-12-08  Judd Montgomery  <judd@taz>

	* monthview_gui.c, print.c, datebook.h, datebook.c:
	day now highlighted if private record and masked records on

	* print.c: minor misc bugs

2003-12-06  Judd Montgomery  <judd@taz>

	* address_gui.c:
	Japanese patch for tabbing between kana address fields, was broken

2003-11-16  Judd Montgomery  <judd@taz>

	* Expense/expense.c, KeyRing/keyring.c, address_gui.c, datebook_gui.c, todo_gui.c, memo_gui.c:
	Not allow delete, copy when modifying a rec

2003-11-13  Judd Montgomery  <judd@taz>

	* utils.c: log message improvement

	* memo_gui.c: possible left open file handle

	* datebook_gui.c: 1 liner calendar select GUI problem

2003-10-18  Judd Montgomery  <judd@taz>

	* sync.c: small patch adding min macro

	* jpilot-sync.c: small patch for output not printing

	* KeyRing/keyring.c: Ludovics search/find code

	* prefs.c, prefs.h, todo_gui.c: Can now hide memo preferences

2003-10-16  Judd Montgomery  <judd@taz>

	* address_gui.c: highlighting changed recs was broken

2003-10-10  Judd Montgomery  <judd@taz>

	* dat.c:
	Backed out ugly hack to accept invalid datebook.dat files (dat files fixed)

2003-10-03  Judd Montgomery  <judd@taz>

	* sync.c: Buffer too large, app block couldn't be read

2003-09-14  Judd Montgomery  <judd@taz>

	* utils.h: Added DAT_TYPE_BITFLAG

	* dat.c: Ugly hack to accept certain invalid dba files

	* dat.c: Better error messages

	* dat.c: Fail gracefully on import of corrupt dat file

2003-09-01  Judd Montgomery  <judd@taz>

	* Expense/expense.c:
	Added new country currency codes including the Euro

	* sync.c:
	Ludovic Rousseau patch for more informative fail to open file on install message

	* plugins.c: Ludovic Rousseau patch to sort plugin names in the menu

2003-08-31  Judd Montgomery  <judd@taz>

	* KeyRing/README.txt, todo.c, todo_gui.c, utils.c, weekview_gui.c, address.c, address_gui.c, alarms.c, category.c, dat.c, datebook.c, datebook_gui.c, dialer.c, import_gui.c, install_gui.c, jpilot-sync.c, jpilot.c, libplugin.c, memo.c, memo_gui.c, monthview_gui.c, plugins.c, prefs.c, prefs_gui.c, print.c, print_gui.c, restore_gui.c, search_gui.c, sync.c:
	Ludovic Rousseau cleanup patch

	* Expense/expense.c: Expense buffer overflows

	* Expense/expense.c: Expense buffer overflow on euros

2003-07-31  Judd Montgomery  <judd@taz>

	* Makefile.am, empty/Makefile.am, icons/Makefile.am:
	empty and color files were not installed

2003-07-13  Judd Montgomery  <judd@taz>

	* po/zh_TW.po: regenerated

	* icons/Makefile.am: Added README

	* ChangeLog: *** empty log message ***

	* SlackBuild.in: missing files

2003-07-12  Judd Montgomery  <judd@taz>

	* po/zh_TW.po:
	removed translation that fails with gettext 0.11.5 on BSD

	* jpilot.spec: *** empty log message ***

	* empty/Makefile: Generated by automake/autoconf

	* po/ca.po, po/cs.po, po/da.po, po/de.po, po/es.po, po/fr.po, po/it.po, po/ja.po, po/jpilot.pot, po/nl.po, po/no.po, po/ru.po, po/sv.po, po/tr.po, po/vi.po, po/zh_CN.po, po/zh_TW.po:
	updated

	* jpilot.spec.in: fixed jpilotrc.* and empty/* file not being included

	* jpilot.spec: updated version

	* Makefile.am: removed jpilot-col.spec

2003-07-10  Judd Montgomery  <judd@taz>

	* KeyRing/keyring.c: misc changes and backwards API compatible fixes

2003-07-05  Judd Montgomery  <judd@taz>

	* jpilot-dump.c: patch typo in date format from Ludovic Rousseau

	* autogen.sh, config.guess, config.sub:
	updated auto* commands to update files

	* SlackBuild.in, docs/Makefile.am, jpilot.spec.in:
	added man page jpilot-dial.1

	* jpilot.desktop: patch to fix jpilot.desktop from Ludovic Rouseau

	* jpilot.c: patch to remove NUM_FACTORY_ITEMS Ludovic Rouseau

	* docs/jpilot-dial.1:
	patch for jpilot-dial.1 man page from Ludovic Rouseau

	* jpilot.c: experimental font code

	* po/ca.po, po/cs.po, po/da.po, po/de.po, po/es.po, po/fr.po, po/it.po, po/ja.po, po/jpilot.pot, po/nl.po, po/no.po, po/ru.po, po/sv.po, po/tr.po, po/vi.po, po/zh_CN.po, po/zh_TW.po:
	updated

	* ChangeLog, INSTALL, configure.in, empty/Makefile, jpilot.rh7.spec, jpilot.spec.in, prefs_gui.c:
	pre 0.99.6

2003-06-30  Judd Montgomery  <judd@taz>

	* sync.c, utils.c, utils.h:
	Fix for broken installing of Net Prefs.prc, Graffitti Shortcuts.prc

	* jpilot-col.spec: obsolete distro?

	* alarms.c, datebook.c, datebook.h, datebook_gui.c, jpilot-dump.c, monthview_gui.c, print.c, search_gui.c, weekview_gui.c:
	changed get_appointments() parameters to display number of appointments tooltip

2003-06-28  Judd Montgomery  <judd@taz>

	* address_gui.c: Fixed clist first, last/company listing

	* utils.c, utils.h: added set_bg_rbg_clist

	* datebook_gui.c, memo_gui.c, todo_gui.c: shrunk some code

2003-06-24  Judd Montgomery  <judd@taz>

	* datebook_gui.c: truncate appointment descriptions longer than 256

	* alarms.c:
	fixed alarms going off an hour late in DST timezones during DST

	* datebook_gui.c: export datebook as text (unknown type) fixed

2003-06-12  Judd Montgomery  <judd@taz>

	* datebook_gui.c: datebook - goto today not working fix

	* po/ja.po: updated

2003-06-10  Judd Montgomery  <judd@taz>

	* install_gui.c, prefs.c, prefs.h: Made install remember its last path

	* po/ru.po: updated

	* dialer.c: empty translated string - error

	* empty/Makefile.am: new file

2003-06-05  Judd Montgomery  <judd@taz>

	* Makefile.am, configure.in, docs/Makefile.am, empty/Makefile, icons/Makefile.am:
	patch from Ludovic Rousseau for automake

2003-06-03  Judd Montgomery  <judd@taz>

	* docs/plugin.html, libplugin.h, plugins.c, plugins.h, sync.c:
	Added plugin_pre_sync_pre_connect calls

2003-06-02  Judd Montgomery  <judd@taz>

	* po/jpilot.pot, po/zh_TW.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/es.po, po/fr.po, po/it.po, po/ja.po, po/nl.po, po/no.po, po/ru.po, po/sv.po, po/tr.po, po/vi.po, po/zh_CN.po:
	updated

	* empty/AddressDB.pdb, empty/ExpenseDB.pdb, empty/Memo32DB.pdb, empty/MemoDB.pdb, empty/ToDoDB.pdb:
	removed categories and set renamed bits to 0

	* sync.c, utils.c:
	preserve .pc3 file times (fixes slow sync not fetching

	* prefs.c: Latin1 -> Latin1/No conversion

	* datebook_gui.c: added a i18n tag

	* category.c: preserve .pc3 file times

	* Makefile.am: remove all CVS directories on make dist

2003-05-31  Judd Montgomery  <judd@taz>

	* prefs.c, prefs.h, todo_gui.c: added todo Record Completion Date

	* prefs.c, prefs.h, todo_gui.c:
	option to hide todos that are not yet due

	* datebook_gui.c: bug 637 fix couldn't select start/end times in GTK2

	* prefs.c, prefs.h: added datebook/todo pane prefs

	* datebook_gui.c: added a pane for todos

2003-05-29  Judd Montgomery  <judd@taz>

	* datebook_gui.c:
	Fixed bug 610, record dups when pressing page-up/down keys, and removed home key

2003-05-21  Judd Montgomery  <judd@taz>

	* print_headers.c: AM/PM being cut off

	* jpilot.spec: auto-generated

	* intl/gettext.h, intl/libgettext.h: newer gettext

	* po/cs.po: Updated

	* sync.c: minor log fixes

	* jpilotrc.green, jpilotrc.purple, jpilotrc.steel:
	fixes for fontsel dialog

	* jpilot.spec.in: fixes

	* Makefile.am: empty files not installed

	* datebook_gui.c, todo.h, todo_gui.c: Put todos in datebook

2003-05-08  Judd Montgomery  <judd@taz>

	* datebook_gui.c: typo

	* datebook_gui.c: Fix DST on import

2003-05-02  Judd Montgomery  <judd@taz>

	* m4/codeset.m4, m4/gettext.m4, m4/glibc21.m4, m4/iconv.m4, m4/intdiv0.m4, m4/inttypes-pri.m4, m4/inttypes.m4, m4/inttypes_h.m4, m4/isc-posix.m4, m4/lcmessage.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4, m4/progtest.m4, m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4:
	New file, from gettext-0.11.5

	* po/Makevars, po/ChangeLog, po/Rules-quot, po/boldquot.sed, po/en@boldquot.header, po/en@quot.header, po/insert-header.sin, po/remove-potcdate.sin:
	updated

	* m4/Makefile.in, configure.in, aclocal.m4: update

	* dialer/Makefile.am, SyncTime/Makefile.am, KeyRing/Makefile.am, Expense/Makefile.am, Makefile.am:
	CFLAGS->AM_CFLAGS

	* ABOUT-NLS, NEWS: required for automake/autoreconf

2003-04-28  Judd Montgomery  <judd@taz>

	* m4/Makefile.am, m4/Makefile.in: initial import

2003-04-22  Judd Montgomery  <judd@taz>

	* configure.in: Updated for automake 1.7.3

	* Expense/expense.c: missing line

	* utils.c: fix dst alarm problem - needs tested

	* sync.c: don't call signal if no fork

	* datebook_gui.c, alarms.c: fix dst alarm problem - needs tested

	* Makefile.am: added missing files to install

	* po/jpilot.pot, po/zh_TW.po, po/fr.po, po/it.po, po/ja.po, po/nl.po, po/no.po, po/ru.po, po/sv.po, po/tr.po, po/zh_CN.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/es.po:
	updated

	* po/Makefile.in.in, po/POTFILES, intl/bindtextdom.c, intl/config.charset, intl/dcgettext.c, intl/dcigettext.c, intl/dcngettext.c, intl/dgettext.c, intl/dngettext.c, intl/gettext.c, intl/gettextP.h, intl/hash-string.h, intl/intl-compat.c, intl/l10nflist.c, intl/libgnuintl.h, intl/loadinfo.h, intl/loadmsgcat.c, intl/localcharset.c, intl/localealias.c, intl/ngettext.c, intl/plural.c, intl/plural.y, intl/textdomain.c, intl/ChangeLog, intl/Makefile.in, intl/VERSION:
	upgraded to gettext 0.11.5

	* ltmain.sh: upgraded to libtool 1.4.3

	* export_gui.c: Fixed crash on export without choosing a type

	* depcomp: upgraded to automake-1.7

	* address.xpm, datebook.xpm, memo.xpm, todo.xpm: made buttons grayscale

	* aclocal.m4: upgraded to aclocal 1.7.3

2003-04-02  Judd Montgomery  <judd@taz>

	* po/vi.po: New Translation

2003-03-25  Judd Montgomery  <judd@taz>

	* KeyRing/keyring.c: take out printing of generated password

	* utils.c: null pointer fix

2003-03-23  Judd Montgomery  <judd@taz>

	* po/nl.po: updated

2003-03-14  Judd Montgomery  <judd@taz>

	* todo.c: minor fix

2003-03-13  Judd Montgomery  <judd@taz>

	* todo.c: fixed null pointer

2003-02-26  Judd Montgomery  <judd@taz>

	* address_gui.c: ldif export crash, fix

2003-02-23  Judd Montgomery  <judd@taz>

	* po/POTFILES.in: added category.c

	* category.c: charset reverse translation

2003-02-22  Judd Montgomery  <judd@taz>

	* print.c: print memo now ignores lines after the end of the memo text

	* po/ru.po: updated

	* po/de.po, po/es.po, po/fr.po, po/it.po, po/ja.po, po/jpilot.pot, po/nl.po, po/no.po, po/ru.po, po/sv.po, po/tr.po, po/zh_CN.po, po/zh_TW.po, po/ca.po, po/cs.po, po/da.po:
	rebuilt

	* password.c: typo

	* INSTALL, Makefile.am, configure.in, jpilot-col.spec, jpilot.rh7.spec, jpilot.spec:
	updated version

	* BUGS, ChangeLog: *** empty log message ***

2003-02-21  Judd Montgomery  <judd@taz>

	* po/ca.po, po/cs.po, po/da.po, po/de.po, po/es.po, po/fr.po, po/it.po, po/ja.po, po/jpilot.pot, po/nl.po, po/no.po, po/ru.po, po/sv.po, po/tr.po, po/zh_CN.po, po/zh_TW.po:
	updated

	* utils.c: can select tags in GTK2 in dialogs

	* Makefile.am, ChangeLog: updated

2003-02-20  Judd Montgomery  <judd@taz>

	* jpilot.c: opening of browser windows

	* Makefile.am: -export-dynamic

2003-02-16  Judd Montgomery  <judd@taz>

	* docs/manual.html: home key documented in datebook

	* install_gui.c, jpilot.c, restore_gui.c, sync.c, utils.h:
	fixed restore always using backup files

	* alarms.c: fixed minor bug

2003-02-15  Judd Montgomery  <judd@taz>

	* datebook_gui.c: home key goes to today

	* po/Makefile.in.in: *** empty log message ***

	* address_gui.c: received patch for ldif missing fields

2003-02-13  Judd Montgomery  <judd@taz>

	* datebook.c: more debug

	* po/es.po: updated

	* KeyRing/Makefile.am: Add LDFLAGS

	* Expense/expense.c: Typo

	* print.c: maybe a fix

	* address.c, memo.c, libplugin.c, sync.c, todo.c, utils.c: more debug

2003-02-11  Judd Montgomery  <judd@taz>

	* po/tr.po: updated

	* aclocal.m4: Add --enable-maintainer-mode

	* po/da.po, po/ru.po: updated

	* utils.h, address_gui.c, jpilot.c, memo_gui.c, todo_gui.c:
	cycle categories when app button pressed

	* configure.in, autogen.sh, AUTHORS, Makefile.am: changed

	* alarms.c: Fixed future repeat appts from alarming early

2003-02-10  Judd Montgomery  <judd@taz>

	* datebook_gui.c: added some appt validation

	* cp1250.c, cp1250.h: changed comments

	* datebook_gui.c: Fixed mysterious deleting appts

	* utils.c: next_id calc'ed wrong for REPLACEMENT_REC

	* datebook_gui.c, category.c, dialer.c, password.c, todo_gui.c, address_gui.c, alarms.c, utils.c:
	gtk_widget_get_toplevel

2003-02-05  Judd Montgomery  <judd@taz>

	* datebook_gui.c, utils.c, utils.h: add dialog errors

	* datebook_gui.c:
	Delete repeating appt then cancel was broken - Ludovic

2003-02-04  Judd Montgomery  <judd@taz>

	* cp1250.c, cp1250.h, prefs.c, prefs.h, utils.c, utils.h:
	Add CP1250-UTF8 conversion

2003-01-31  Judd Montgomery  <judd@taz>

	* jpilot.c: minor --disable-private fix

2003-01-24  Judd Montgomery  <judd@taz>

	* configure.in: Fixed pi-version.h not found problem

2003-01-14  Judd Montgomery  <judd@taz>

	* Makefile.am: added jpilot.desktop

	* jpilot.desktop: initial import

	* SyncTime/Makefile.in, docs/Makefile.in: removed

	* configure.in, SlackBuild.in, Makefile.am: *** empty log message ***

	* po/Makefile.in.in, po/Makefile.in, po/ChangeLog, m4/progtest.m4, m4/lcmessage.m4, m4/isc-posix.m4, m4/iconv.m4, m4/glibc21.m4, m4/gettext.m4, m4/codeset.m4, m4/ChangeLog, dialer/Makefile.in, KeyRing/Makefile.in, Expense/Makefile.in, intltool-update.in, intltool-extract.in, config.h.in, intltool-update, mkinstalldirs, intltool-merge.in, intltool-merge, m4/Makefile.am, m4/Makefile.in:
	removed

2003-01-13  Judd Montgomery  <judd@taz>

	* ABOUT-NLS, ChangeLog: *** empty log message ***

	* po/ca.po, po/cs.po, po/da.po, po/de.po, po/es.po, po/fr.po, po/it.po, po/ja.po, po/jpilot.pot, po/nl.po, po/no.po, po/ru.po, po/sv.po, po/tr.po, po/zh_CN.po, po/zh_TW.po:
	updated

	* datebook_gui.c: Made fit into 640x480

2003-01-11  Judd Montgomery  <judd@taz>

	* jpilot.c: put lock in a button

	* SyncTime/Makefile.in, docs/Makefile.in: date

	* jpilot.c: changed button xpms

	* address_gui.c, datebook_gui.c, memo_gui.c, todo_gui.c:
	removed a global

	* address.xpm, datebook.xpm, memo.xpm, todo.xpm: changed button xpms

	* Makefile.am: removed ncc xpms

	* address_ncc.xpm, memo_ncc.xpm, todo_ncc.xpm, datebook_ncc.xpm:
	removed

2003-01-10  Judd Montgomery  <judd@taz>

	* config.h.in, configure.in, utils.c: fixed usb config check

	* jpilot.rh7.spec, jpilot.spec, jpilot.spec.in:
	removed jpilot-99-upgrade

	* po/ca.po, po/cs.po, po/da.po, po/de.po, po/es.po, po/fr.po, po/it.po, po/ja.po, po/jpilot.pot, po/nl.po, po/no.po, po/ru.po, po/sv.po, po/tr.po, po/zh_CN.po, po/zh_TW.po:
	update

	* prefs.c: changed initial window size

2003-01-08  Judd Montgomery  <judd@taz>

	* docs/Makefile.in, m4/Makefile.in: regnerated

	* Expense/Makefile.in, KeyRing/Makefile.in, SyncTime/Makefile.in, dialer/Makefile.am, dialer/Makefile.in, Expense/Makefile.am, KeyRing/Makefile.am, SyncTime/Makefile.am:
	fixed conditional building of plugins

	* utils.c: spelling error

	* configure.in: fixed conditional building of plugins

	* Makefile.am: order of sundirs

	* ChangeLog: change

2002-12-29  Judd Montgomery  <judd@taz>

	* po/fr.po: updated

2002-12-27  Judd Montgomery  <judd@taz>

	* utils.c: *** empty log message ***

	* po/POTFILES, po/POTFILES.in, po/ca.po, po/cs.po, po/da.po, po/de.po, po/es.po, po/fr.po, po/it.po, po/ja.po, po/jpilot.pot, po/nl.po, po/no.po, po/ru.po, po/sv.po, po/tr.po, po/zh_CN.po, po/zh_TW.po:
	updated

2002-12-25  Judd Montgomery  <judd@taz>

	* BUGS: updated

	* m4/gtk-2.0.m4: Initial import

	* autogen.sh: *** empty log message ***

	* aclocal.m4: Port to GTK2

	* ChangeLog: Changes

	* Expense/expense.c, KeyRing/keyring.c, utils.c, utils.h, weekview_gui.c, Makefile.am, address_gui.c, alarms.c, config.h.in, configure.in, datebook_gui.c, dialer.c, export_gui.c, import_gui.c, install_gui.c, jpilot.c, memo_gui.c, monthview_gui.c, password.c, prefs_gui.c, print_gui.c, restore_gui.c, search_gui.c, todo_gui.c:
	Port to GTK2

	* config.h.in: Added ENABLE_USB

	* utils.c, utils.h, address_gui.c: Added ldif export to addresses

2002-12-21  Judd Montgomery  <judd@taz>

	* configure.in: Detection of p-l version without try_run

2002-12-20  Judd Montgomery  <judd@taz>

	* KeyRing/Makefile.in, configure.in: version

	* po/jpilot.pot: updated

	* po/Makefile.in, docs/Makefile.in, Expense/Makefile.in, SyncTime/Makefile.in:
	version

	* prefs_gui.c, log.c: cleanup

	* jpilot-col.spec, jpilot.rh7.spec, jpilot.spec, INSTALL, README, TODO:
	minor changes

	* ChangeLog: Changes

	* po/cs.po, po/da.po, po/de.po, po/es.po, po/fr.po, po/it.po, po/ja.po, po/nl.po, po/no.po, po/sv.po, po/tr.po, po/zh_CN.po, po/zh_TW.po, po/ca.po:
	update

	* utils.h, category.c, sync.c: category cleanup

	* autogen.sh: *** empty log message ***

2002-12-14  Judd Montgomery  <judd@taz>

	* sync.c, log.c: Fixed debug on crash problem

	* jpilot-sync.c: build options reporting

	* KeyRing/keyring.c: minor passwd gen change

	* jpilot.c, utils.c, utils.h: build options reporting

	* sync.c: more code for sync of cats

	* AUTHORS: update

2002-12-12  Judd Montgomery  <judd@taz>

	* log.c: More fixing of pipe logging code

2002-12-11  Judd Montgomery  <judd@taz>

	* jpilot.c: Report build option in help window

	* autogen.sh: now pass configure options to configure

	* Expense/expense.c, dialer/jpilot-dial.c, utils.h, address_gui.c, datebook_gui.c, todo.c, todo_gui.c, utils.c:
	Added vCard, iCalendar export

	* cp1250.c, dat.c, datebook.c, libplugin.c, memo.c, memo_gui.c, missing, password.c, sync.c, address.c, alarms.c, category.c, config.h.in, configure.in:
	changes for pendantic biuld

	* Makefile.am: *** empty log message ***

	* KeyRing/keyring.c:
	Initial password generate code and pendantic changes

2002-12-03  Judd Montgomery  <judd@taz>

	* configure.in: Typo

	* configure.in: Fixed cflags reporting

	* Makefile.in: Not needed with automake

	* dialer/Makefile.in: *** empty log message ***

	* Makefile.in: dialer changes

2002-12-01  Judd Montgomery  <judd@taz>

	* po/ru.po: Initial import

	* datebook_gui.c, export_gui.c, search_gui.c: russian patches

	* dialer/Makefile.am: *** empty log message ***

2002-11-30  Judd Montgomery  <judd@taz>

	* docs/plugin.html: Added prefix to LOG because of name conflict

	* dialer/Makefile: Now automake generated

	* dialer/Makefile.unix: Generic Makefile

	* Makefile.am, configure.in: Changes for dialer

	* po/ca.po, po/cs.po, po/da.po, po/de.po, po/es.po, po/fr.po, po/it.po, po/ja.po, po/jpilot.pot, po/nl.po, po/no.po, po/sv.po, po/tr.po, po/zh_CN.po, po/zh_TW.po:
	Updated

	* libplugin.h, log.h, KeyRing/keyring.c, SyncTime/synctime.c, Expense/expense.c, address.c, address_gui.c, alarms.c, category.c, dat.c, datebook.c, datebook_gui.c, dialer.c, export_gui.c, import_gui.c, install_gui.c, jpilot-sync.c, jpilot.c, libplugin.c, memo.c, memo_gui.c, monthview_gui.c, plugins.c, prefs.c, prefs_gui.c, print.c, print_gui.c, restore_gui.c, search_gui.c, sync.c, todo.c, todo_gui.c, utils.c, weekview_gui.c:
	Added prefix to LOG because of name conflict

	* sync.c: log fixes

2002-11-15  Judd Montgomery  <judd@taz>

	* SyncTime/synctime.c: minor log change

	* jpilot.c, log.c: Fixing pipe logging

2002-11-14  Judd Montgomery  <judd@taz>

	* dialer/Makefile, dialer/README, dialer/jpilot-dial.c: Initial import

	* KeyRing/keyring.c: comment

	* po/da.po: Updated

	* Expense/Makefile.in, KeyRing/Makefile.in, SyncTime/Makefile.in, docs/Makefile.in, m4/Makefile.in:
	*** empty log message ***

	* utils.h, utils.c:
	removed move_scrolled_window added some file mod routines

	* sync.c: Changes to sync categories

	* print.c, print_headers.c, print_logo.c: Added patch for i18n

	* plugins.c, plugins.h, libplugin.c, libplugin.h: Added more functions

	* datebook_gui.c: changed to clist_moveto

	* datebook.c: fixed midnight appt being above float in sort order

	* config.h.in, configure.in: added PROGNAME

	* autogen.sh: prefix change and cut --with-db3

	* Makefile.in: added category.c

	* alarms.h, dat.c, datebook.h, i18n.h, import_gui.c, install_gui.c, jpilot-sync.c, jpilot.c, log.c, log.h, memo.c, memo.h, monthview_gui.c, password.c, password.h, prefs.c, prefs.h, prefs_gui.c, prefs_gui.h, print.h, print_gui.c, restore.h, restore_gui.c, search_gui.c, sync.h, todo.c, todo.h, weekview_gui.c:
	updated copyright

	* alarms.c: Added comments

	* address_gui.c, memo_gui.c, todo_gui.c: Changes to sync categories

	* address.c, address.h: updated copyright

	* UPGRADING: removed jpilot-upgrade-99

	* Makefile.am: added category.c

	* jpilot-upgrade-99.c: Too old to be useful

	* Expense/expense.c: Changes to sync categories

	* category.c: Initial write

2002-11-09  Judd Montgomery  <judd@taz>

	* jpilot.c: minor change

2002-11-05  Judd Montgomery  <judd@taz>

	* po/fr.po: updated

2002-10-30  Judd Montgomery  <judd@taz>

	* Expense/expense.c, KeyRing/keyring.c, todo.c, todo_gui.c, utils.c, utils.h, weekview_gui.c, address.c, address_gui.c, alarms.c, dat.c, datebook.c, datebook.h, datebook_gui.c, dialer.c, export_gui.c, import_gui.c, install_gui.c, jpilot-sync.c, jpilot.c, libplugin.c, libplugin.h, log.c, log.h, memo.c, memo_gui.c, monthview_gui.c, plugins.c, prefs.c, prefs_gui.c, print.c, print_gui.c, restore_gui.c, search_gui.c, sync.c:
	jpilot_logf -> jp_logf

	* po/tr.po: updated

2002-10-25  Judd Montgomery  <judd@taz>

	* address_gui.c: bug in phone ext parsing

	* dialer.c: initial release

	* alarms.c: no even alarms not alarming

	* prefs_gui.c: typo labels in wrong box

	* Makefile.am, Makefile.in, address_gui.c, prefs.c, prefs.h:
	Added dialer.c

2002-10-19  Judd Montgomery  <judd@taz>

	* po/ca.po, po/cs.po, po/da.po, po/de.po, po/es.po, po/fr.po, po/it.po, po/ja.po, po/jpilot.pot, po/nl.po, po/no.po, po/sv.po, po/tr.po, po/zh_CN.po, po/zh_TW.po:
	Update

2002-10-15  Judd Montgomery  <judd@taz>

	* address_gui.c: Japanese fixes

	* sync.c: Typo

	* Expense/expense.c: Currency support

	* address.c, address_gui.c, datebook.c, datebook_gui.c, japanese.c, prefs.c, prefs.h, prefs_gui.c, todo.c, todo_gui.c, utils.c, utils.h:
	Japanese patches

2002-10-14  Judd Montgomery  <judd@taz>

	* po/jpilot.pot: Removed stupid tilde ns

2002-10-13  Judd Montgomery  <judd@taz>

	* po/fr.po: Updated

2002-10-11  Judd Montgomery  <judd@taz>

	* alarms.c: Fixed the ignoring of exceptions for alarms

2002-10-09  Judd Montgomery  <judd@taz>

	* SlackBuild.in: updated

	* jpilot.spec, jpilot.spec.in: Changed doc directory

	* po/Makefile.in, jpilot.spec, jpilot.spec.in, po/de.po, po/cs.po, po/da.po, po/es.po, po/fr.po, po/it.po, po/ja.po, po/jpilot.pot, po/nl.po, po/no.po, po/sv.po, po/tr.po, po/zh_CN.po, po/zh_TW.po:
	Updated

	* KeyRing/Makefile.in: fixes for automake

	* po/ca.po: Updated

	* Expense/Makefile.in, Makefile.am, Makefile.in, SyncTime/Makefile.in, docs/Makefile.am, docs/Makefile.in, m4/Makefile.am, m4/Makefile.in:
	fixes for automake

	* AUTHORS: updated

	* jpilot.spec: Changes for automake

2002-10-03  Judd Montgomery  <judd@taz>

	* po/Makefile.in, ChangeLog, Expense/Makefile.in, KeyRing/Makefile.in, Makefile.in, SyncTime/Makefile.in, configure.in, docs/Makefile.in:
	Added Chinese translation

	* po/zh_CN.po, po/zh_TW.po: Chinese translations

2002-10-02  Judd Montgomery  <judd@taz>

	* KeyRing/keyring.c, jpilot.c, password.c, password.h:
	Made dialogs transient

	* datebook_gui.c: Fixed date label not showing up initially

2002-10-01  Judd Montgomery  <judd@taz>

	* docs/plugin.html: explain log levels

	* sync.c: comment

	* memo_gui.c, todo_gui.c: moved the alt database checkboxes

	* jpilot-sync.c: fixed logging levels

	* sync.c: Moved plugin_pre_sync to after connection to palm occurs

2002-09-30  Judd Montgomery  <judd@taz>

	* address_gui.c, export.h, export_gui.c, memo_gui.c, todo_gui.c:
	Change to export_gui params

	* ChangeLog, Expense/Makefile.in, INSTALL, KeyRing/Makefile.in, Makefile.in, SyncTime/Makefile.in, TODO, configure.in, docs/Makefile.in, jpilot-col.spec, jpilot.c, jpilot.rh7.spec, jpilot.spec, po/Makefile.in:
	prep for 0.99.3

	* libplugin.h: Typo

	* KeyRing/keyring.c:
	Retain Unique IDs, Password reprompt, Fixed clist colors

	* Expense/expense.c: Fixed clist colors

	* Expense/expense.c: Changes for retaining unique IDs

	* docs/plugin.html: Changes for REPLACEMENT_PALM_REC

2002-09-27  Judd Montgomery  <judd@taz>

	* export_gui.c: Fix for clist_select_all

	* address_gui.c, alarms.c, datebook_gui.c, jpilot.c, memo_gui.c, password.c, todo_gui.c, utils.c, utils.h:
	Changed dialogs to be transient

2002-09-26  Judd Montgomery  <judd@taz>

	* print.c: LC_ALL changed to LC_NUMERIC

	* address.c, address_gui.c, datebook.c, datebook_gui.c, jpilot.c, memo.c, memo_gui.c, password.c, password.h, todo.c, todo_gui.c:
	change to re-prompt for incorrect passwords

	* po/Makefile, Expense/Makefile: *** empty log message ***

	* Expense/Makefile.in, KeyRing/Makefile.in, SyncTime/Makefile.in, docs/Makefile.in:
	Changed WITH_PROMETHEON to ENABLE_PROMETHEON

	* weekview_gui.c: Changed USE_DB3 to ENABLE_DATEBK

	* utils.h: Changed WITH_PROMETHEON to ENABLE_PROMETHEON

	* sync.c, todo.c, todo_gui.c, utils.c: Added Manana support

	* print.c: Changed USE_DB3 to ENABLE_DATEBK

	* prefs.c, prefs.h, prefs_gui.c: Added Manana support

	* password.c: Fixed --disable-password

	* monthview_gui.c: Changed USE_DB3 to ENABLE_DATEBK

	* memo.c: minor typo

	* jpilot.c: Changes to fix enable features

	* datebook.c, datebook.h, datebook_gui.c:
	Changed USE_DB3 to ENABLE_DATEBK

	* config.h.in: Changes to fix enable features

	* alarms.c: ifdef name change

	* Makefile.in, address.c: minor typo

	* configure.in: Changes to fix enable features

2002-09-25  Judd Montgomery  <judd@taz>

	* address.c, datebook.c, memo.c, prefs.c, prefs.h, todo.c:
	Changed English to Latin1

2002-09-23  Judd Montgomery  <judd@taz>

	* docs/Makefile.in, Expense/Makefile.in, po/Makefile.in, m4/Makefile.in, intl/Makefile, SyncTime/Makefile.in, KeyRing/Makefile.in, Makefile.in, SyncTime/Makefile, KeyRing/Makefile, KeyRing/libplugin.h, SyncTime/libplugin.h, Expense/libplugin.h, log.h:
	*** empty log message ***

	* utils.c: Keeping unique IDs unique

	* export_gui.c, import_gui.c:
	set_prefs no save change for jpilot-sync not saving port

	* datebook.h: *** empty log message ***

	* alarms.c, jpilot-sync.c, jpilot.c, prefs.c, prefs.h, prefs_gui.c, print_gui.c:
	set_prefs no save change for jpilot-sync not saving port

	* datebook.c, datebook_gui.c, libplugin.c, libplugin.h, memo.c, memo_gui.c, sync.c, todo.c, todo_gui.c, address.c, address_gui.c:
	Keeping unique IDs unique

	* depcomp: initial add

2002-09-09  Judd Montgomery  <judd@taz>

	* configure: Use autogen.sh, or autoconf

2002-08-30  Judd Montgomery  <judd@taz>

	* ChangeLog: Changes

	* configure.in: check for broken pilot-link versions

2002-08-28  Judd Montgomery  <judd@taz>

	* autogen.sh, po/cat-id-tbl.c, po/messages.po, po/stamp-cat-id, intl/cat-compat.c:
	automake

	* intl/libintl.h, intl/linux-msg.sed, intl/po2tbl.sed, intl/po2tbl.sed.in, intl/xopen-msg.sed:
	automakecat-compat.c

	* intl/config.charset, intl/dcigettext.c, intl/dcngettext.c, intl/dngettext.c, intl/libgnuintl.h, intl/localcharset.c, intl/locale.alias, intl/ngettext.c, intl/plural.y, intl/ref-add.sin, intl/ref-del.sin, m4/isc-posix.m4, m4/iconv.m4, m4/glibc21.m4, m4/codeset.m4, m4/sanity.m4, m4/atconfig.m4, m4/gtk.m4, m4/init.m4, m4/libtool.m4, m4/m4.m4, m4/missing.m4, intltool-update.in, intltool-extract.in, intltool-merge, intltool-merge.in, intltool-update:
	automake

	* reconf, m4/Makefile.in, missing, ChangeLog, docs/Makefile.am, docs/Makefile.in, docs/jpilot-dump.1, intl/plural.c, AUTHORS, KeyRing/Makefile.am, Makefile.am, SyncTime/Makefile.am, m4/ChangeLog, m4/Makefile.am, po/ChangeLog, po/tr.po:
	*** empty log message ***

	* CHANGELOG: Now its ChangeLog

	* Expense/Makefile, Expense/Makefile.in, KeyRing/Makefile, KeyRing/Makefile.in, KeyRing/keyring.c, KeyRing/libplugin.h, SyncTime/Makefile, SyncTime/Makefile.in, SyncTime/libplugin.h, SyncTime/synctime.c, docs/jpilot-sync.1, docs/jpilot-upgrade-99.1, docs/jpilot.1, intl/ChangeLog, intl/Makefile, intl/Makefile.in, intl/VERSION, intl/bindtextdom.c, intl/dcgettext.c, intl/dgettext.c, intl/explodename.c, intl/finddomain.c, intl/gettext.c, intl/gettext.h, intl/gettextP.h, intl/hash-string.h, intl/intl-compat.c, intl/l10nflist.c, intl/libgettext.h, intl/loadinfo.h, intl/loadmsgcat.c, intl/localealias.c, intl/textdomain.c, jpilotrc.purple, libplugin.c, libplugin.h, log.c, log.h, ltmain.sh, m4/gettext.m4, m4/lcmessage.m4, m4/progtest.m4, memo_gui.c, mkinstalldirs, monthview_gui.c, password.c, password.h, plugins.h, po/Makefile, po/Makefile.in, prefs_gui.c, print.c, print_logo.c, search_gui.c, sync.c, sync.h, todo.c, todo.h, todo_gui.c, utils.c, weekview_gui.c, ABOUT-NLS, COPYING, Makefile.in, aclocal.m4, address_gui.c, alarms.c, config.guess, config.h.in, config.sub, configure, configure.in, datebook.c, datebook.h, datebook_gui.c, export_gui.c, jpilot-col.spec, jpilot-dump.c, jpilot-sync.c, jpilot.c, jpilot.spec, jpilot.spec.in, jpilotrc.green:
	*** empty log message ***

	* Expense/Makefile.am: automake support

	* Expense/Makefile, Expense/Makefile.in, Expense/expense.c, Expense/libplugin.h, po/de.po, po/es.po, po/fr.po, po/it.po, po/ja.po, po/jpilot.pot, po/nl.po, po/no.po, po/sv.po, po/Makefile, po/Makefile.in, po/Makefile.in.in, po/POTFILES, po/ca.po, po/cs.po, po/da.po:
	*** empty log message ***

2002-08-26  Judd Montgomery  <judd@taz>

	* Expense/Makefile, Expense/libplugin.h, KeyRing/Makefile, KeyRing/libplugin.h, docs/jpilot-address.png, docs/jpilot-datebook.png, docs/jpilot-expense.png, docs/jpilot-install.png, docs/jpilot-memo.png, docs/jpilot-prefs.png, docs/jpilot-print.png, docs/jpilot-search.png, docs/jpilot-todo.png, SyncTime/Makefile, SyncTime/libplugin.h, po/Makefile, po/POTFILES, po/stamp-cat-id, export.h, export_gui.c, BUGS, CHANGELOG, CREDITS, Expense/Makefile.in, Expense/expense.c, INSTALL, KeyRing/Makefile.in, KeyRing/keyring.c, Makefile.in, README, SlackBuild, SlackBuild.in, SyncTime/Makefile.in, TODO, address.c, address.h, address_gui.c, alarms.c, config.h.in, configure, configure.in, dat.c, datebook.c, datebook.h, datebook_gui.c, docs/manual.html, i18n.h, import_gui.c, install_gui.c, intl/Makefile, japanese.c, japanese.h, jpilot-col.spec, jpilot-dump.c, jpilot-sync.c, jpilot-upgrade-99.c, jpilot.c, jpilot.rh7.spec, jpilot.spec, jpilot.spec.in, libplugin.c, libplugin.h, log.c, make_tarball, memo.c, memo_gui.c, mkinstalldirs, monthview_gui.c, password.c, plugins.c, po/Makefile.in, po/Makefile.in.in, po/POTFILES.in, po/ca.po, po/cat-id-tbl.c, po/cs.po, po/da.po, po/de.po, po/es.po, po/fr.po, po/it.po, po/ja.po, po/jpilot.pot, po/messages.po, po/nl.po, po/no.po, po/sv.po, prefs.c, prefs.h, prefs_gui.c, print.c, print.h, print_gui.c, print_headers.c, restore_gui.c, russian.c, search_gui.c, sync.c, todo.c, todo.h, todo_gui.c, utils.c, utils.h, weekview_gui.c:
	Version 0.99.2

	* icons/jpilot-icon4.xpm, docs/jpilot-toplogo.jpg, empty/ExpenseDB.pdb, empty/Memo32DB.pdb, po/it.po, m4/atconfig.m4, m4/gettext.m4, m4/gtk.m4, m4/init.m4, m4/lcmessage.m4, m4/libtool.m4, m4/m4.m4, m4/missing.m4, m4/progtest.m4, m4/sanity.m4, KeyRing/Makefile.in, KeyRing/README.txt, KeyRing/keyring.c, dat.c, import_gui.c, jpilot.rh7.spec, jpilot.spec.in, make_tarball, print_headers.c, print_headers.h, print_logo.c, print_logo.h, restore.h, restore_gui.c, BUGS, CHANGELOG, CREDITS, INSTALL, Makefile.in, SlackBuild, UPGRADING, aclocal.m4, address.c, address.h, address_gui.c, alarms.c, alarms.h, config.guess, config.h.in, config.sub, configure, configure.in, datebook.c, datebook.h, datebook_gui.c, docs/jpilot-sync.1, docs/manual.html, docs/plugin.html, i18n.h, icons/README, icons/jpilot-icon1.xpm, install_gui.c, intl/Makefile, intl/Makefile.in, japanese.c, japanese.h, jpilot-col.spec, jpilot-dump.c, jpilot-sync.c, jpilot-upgrade-99.c, jpilot.c, jpilot.spec, libplugin.c, libplugin.h, log.c, log.h, ltmain.sh, memo.c, memo.h, memo_gui.c, mkinstalldirs, monthview_gui.c, password.c, password.h, plugins.c, plugins.h, po/Makefile.in, po/Makefile.in.in, po/ca.po, po/cat-id-tbl.c, po/cs.po, po/da.po, po/de.po, po/es.po, po/fr.po, po/ja.po, po/jpilot.pot, po/messages.po, po/nl.po, po/no.po, po/sv.po, prefs.c, prefs.h, prefs_gui.c, prefs_gui.h, print.c, print.h, print_gui.c, search_gui.c, sync.c, sync.h, todo.c, todo.h, todo_gui.c, utils.c, utils.h, weekview_gui.c, SyncTime/Makefile.in, SyncTime/aclocal.m4, SyncTime/configure, SyncTime/configure.in, SyncTime/install-sh, SyncTime/libplugin.h, SyncTime/synctime.c, Expense/Makefile.in, Expense/aclocal.m4, Expense/configure, Expense/configure.in, Expense/expense.c, Expense/install-sh, Expense/libplugin.h:
	Version 0.99.1

	* empty/Makefile, po/ca.po, po/cs.po, po/es.po, po/nl.po, po/no.po, docs/jpilot-sync.1, docs/jpilot-upgrade-99.1, docs/jpilot.1, icons/jpilot-icon3.xpm, jpilot-col.spec, jpilot-sync.c, jpilot-upgrade-99.c, jpilot.kdelnk, memo_ncc.xpm, russian.c, russian.h, todo_ncc.xpm, SlackBuild, UPGRADING, address_ncc.xpm, alarms.c, alarms.h, cp1250.c, cp1250.h, datebook_ncc.xpm, password.c, password.h, BUGS, CHANGELOG, CREDITS, Expense/Makefile.in, Expense/configure, Expense/configure.in, Expense/expense.c, Expense/libplugin.h, INSTALL, Makefile.in, README, SyncTime/Makefile.in, SyncTime/aclocal.m4, SyncTime/configure, SyncTime/configure.in, SyncTime/libplugin.h, SyncTime/synctime.c, TODO, address.c, address.h, address.xpm, address_gui.c, config.h.in, configure, configure.in, datebook.c, datebook.h, datebook.xpm, datebook_gui.c, docs/plugin.html, i18n.h, install_gui.c, intl/Makefile, japanese.c, japanese.h, jpilot-dump.c, jpilot.c, jpilot.spec, jpilotrc.blue, jpilotrc.green, jpilotrc.purple, jpilotrc.steel, libplugin.c, libplugin.h, log.c, log.h, memo.c, memo.h, memo.xpm, memo_gui.c, mkinstalldirs, monthview_gui.c, plugins.c, plugins.h, prefs.c, prefs.h, prefs_gui.c, prefs_gui.h, print.c, print.h, print_gui.c, search_gui.c, sync.c, sync.h, todo.c, todo.h, todo.xpm, todo_gui.c, utils.c, utils.h, weekview_gui.c:
	Version 0.99

	* patch_dst_0.98: *** empty log message ***

	* po/de.po, po/fr.po, po/ja.po, po/jpilot.pot, po/messages.po, po/sv.po, po/Makefile.in, po/POTFILES.in, po/cat-id-tbl.c, po/da.po:
	Version 0.99

	* po/Makefile.in, po/Makefile.in.in, po/POTFILES.in, po/cat-id-tbl.c, po/da.po, po/de.po, po/fr.po, po/ja.po, po/jpilot.pot, po/messages.po, po/sv.po, intl/ChangeLog, intl/Makefile, intl/Makefile.in, intl/VERSION, intl/bindtextdom.c, intl/cat-compat.c, intl/dcgettext.c, intl/dgettext.c, intl/explodename.c, intl/finddomain.c, intl/gettext.c, intl/gettext.h, intl/gettextP.h, intl/hash-string.h, intl/intl-compat.c, intl/l10nflist.c, intl/libgettext.h, intl/libintl.h, intl/linux-msg.sed, intl/loadinfo.h, intl/loadmsgcat.c, intl/localealias.c, intl/po2tbl.sed, intl/po2tbl.sed.in, intl/textdomain.c, intl/xopen-msg.sed, ABOUT-NLS, config.guess, config.sub, configure, ltconfig, ltmain.sh, mkinstalldirs, patch_dst_0.98, SyncTime/Makefile.in, Expense/Makefile.in, Expense/aclocal.m4, Expense/configure, Expense/configure.in, Expense/expense.c, Expense/libplugin.h, jpilot.spec, config.h.in, BUGS, CREDITS, TODO, aclocal.m4, SyncTime/libplugin.h, configure.in, icons/README, address.h, datebook.h, i18n.h, libplugin.h, memo.h, plugins.h, prefs.h, print.h, sync.h, todo.h, utils.h, address.c, address_gui.c, datebook.c, datebook_gui.c, install_gui.c, jpilot-dump.c, jpilot.c, libplugin.c, log.c, memo.c, memo_gui.c, monthview_gui.c, plugins.c, prefs.c, prefs_gui.c, print.c, print_gui.c, search_gui.c, sync.c, todo.c, todo_gui.c, utils.c, weekview_gui.c, CHANGELOG, Makefile.in:
	Version 0.98

	* CHANGELOG, Makefile.in, jpilot.spec, Expense/expense.c, SyncTime/synctime.c, Expense/libplugin.h, SyncTime/libplugin.h, BUGS, INSTALL, README, TODO, docs/manual.html, configure.in, datebook.h, libplugin.h, plugins.h, prefs.h, sync.h, utils.h, address.c, address_gui.c, datebook.c, datebook_gui.c, install_gui.c, jpilot.c, libplugin.c, memo_gui.c, monthview_gui.c, prefs.c, prefs_gui.c, search_gui.c, sync.c, todo.c, todo_gui.c, utils.c, weekview_gui.c:
	Version 0.97

	* docs/manual.html, docs/plugin.html, config.h.in, configure.in, jpilot.spec, address.xpm, datebook.xpm, memo.xpm, todo.xpm, INSTALL, Makefile.in, TODO, BUGS, CHANGELOG, CREDITS:
	Version 0.96

	* run_jpilot: *** empty log message ***

	* SyncTime/Makefile.in, SyncTime/aclocal.m4, SyncTime/configure, SyncTime/configure.in, SyncTime/install-sh, SyncTime/libplugin.h, SyncTime/synctime.c, Expense/Makefile.in, Expense/aclocal.m4, Expense/configure, Expense/configure.in, Expense/expense.c, Expense/install-sh, Expense/libplugin.h, empty/AddressDB.pdb, empty/DatebookDB.pdb, empty/MemoDB.pdb, empty/ToDoDB.pdb:
	Version 0.96

	* empty/AddressDB.pdb, empty/DatebookDB.pdb, empty/MemoDB.pdb, empty/ToDoDB.pdb:
	Was not added as binary

	* address.h, libplugin.h, memo.h, plugins.h, sync.h, todo.h, utils.h, address.c, address_gui.c, datebook.c, datebook_gui.c, jpilot.c, libplugin.c, memo.c, memo_gui.c, plugins.c, search_gui.c, sync.c, todo.c, todo_gui.c, utils.c:
	Version 0.96

	* empty/AddressDB.pdb, empty/DatebookDB.pdb, empty/MemoDB.pdb, empty/ToDoDB.pdb, BUGS, CHANGELOG, CREDITS, INSTALL, Makefile.in, README, TODO, configure.in, jpilot.spec, jpilotrc.blue, jpilotrc.default, jpilotrc.green, jpilotrc.purple, jpilotrc.steel, address.c, address_gui.c, datebook.c, datebook_gui.c, install_gui.c, jpilot.c, log.c, memo.c, memo_gui.c, monthview_gui.c, prefs.c, prefs_gui.c, search_gui.c, sync.c, todo.c, todo_gui.c, utils.c, weekview_gui.c, datebook.h, log.h, prefs.h, utils.h:
	Version 0.95

	* config.h.in, BUGS, CHANGELOG, jpilot.spec, configure, jpilotrc.blue, Makefile.in, configure.in, japanese.h, prefs.h, utils.h, address.c, address_gui.c, datebook.c, datebook_gui.c, install_gui.c, japanese.c, jpilot.c, log.c, memo.c, memo_gui.c, monthview_gui.c, prefs.c, prefs_gui.c, search_gui.c, sync.c, todo.c, todo_gui.c, utils.c, weekview_gui.c:
	Version 0.94

	* address.c, memo.c, todo.c, utils.c, utils.h: Version 0.93.1

	* jpilot-syncd.c, jpilotrc: *** empty log message ***

	* Makefile: Generated by configure now

	* Makefile.in, aclocal.m4, configure, configure.in, install-sh, jpilot.spec, CHANGELOG, CREDITS, INSTALL, README, TODO, jpilotrc.blue:
	version 0.93

	* jpilotrc.default, jpilotrc.green: Initial release

	* address.h, datebook.h, japanese.h, log.h, memo.h, prefs.h, prefs_gui.h, sync.h, todo.h, utils.h, address.c, address_gui.c, datebook.c, datebook_gui.c, japanese.c, jpilot.c, log.c, memo.c, memo_gui.c, prefs.c, prefs_gui.c, search_gui.c, sync.c, todo.c, todo_gui.c, utils.c:
	version 0.93

	* icons/README, icons/jpilot-icon1.xpm, icons/jpilot-icon2.xpm, BUGS, CHANGELOG, INSTALL, Makefile, README, TODO, datebook.h, sync.h, utils.h, log.h, address.c, address_gui.c, datebook.c, datebook_gui.c, jpilot-syncd.c, jpilot.c, memo.c, memo_gui.c, sync.c, todo.c, todo_gui.c, utils.c, log.c:
	version 0.92

	* jpilotrc.blue: Initial release

	* CHANGELOG, jpilot-syncd.c, sync.c, sync.h, BUGS, CREDITS, INSTALL, Makefile, README, TODO, address.c, address_gui.c, datebook.c, datebook.h, datebook_gui.c, jpilot.c, memo.c, memo_gui.c, todo.c, todo_gui.c, utils.c, utils.h:
	version 0.91

	* BUGS, COPYING, CREDITS, INSTALL, Makefile, README, TODO, address.c, address.h, address.xpm, address_gui.c, datebook.c, datebook.h, datebook.xpm, datebook_gui.c, jpilot.c, jpilotrc, memo.c, memo.xpm, memo_gui.c, run_jpilot, todo.c, todo.h, todo.xpm, todo_gui.c, utils.c, utils.h:
	J-Pilot Desktop

	* BUGS, COPYING, CREDITS, INSTALL, Makefile, README, TODO, address.c, address.h, address.xpm, address_gui.c, datebook.c, datebook.h, datebook.xpm, datebook_gui.c, jpilot.c, jpilotrc, memo.c, memo.xpm, memo_gui.c, run_jpilot, todo.c, todo.h, todo.xpm, todo_gui.c, utils.c, utils.h:
	New file.