File: ChangeLog.cvs

package info (click to toggle)
jpilot 1.8.1.2-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 6,660 kB
  • sloc: ansic: 41,310; sh: 11,788; makefile: 272
file content (7121 lines) | stat: -rw-r--r-- 249,200 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
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260
6261
6262
6263
6264
6265
6266
6267
6268
6269
6270
6271
6272
6273
6274
6275
6276
6277
6278
6279
6280
6281
6282
6283
6284
6285
6286
6287
6288
6289
6290
6291
6292
6293
6294
6295
6296
6297
6298
6299
6300
6301
6302
6303
6304
6305
6306
6307
6308
6309
6310
6311
6312
6313
6314
6315
6316
6317
6318
6319
6320
6321
6322
6323
6324
6325
6326
6327
6328
6329
6330
6331
6332
6333
6334
6335
6336
6337
6338
6339
6340
6341
6342
6343
6344
6345
6346
6347
6348
6349
6350
6351
6352
6353
6354
6355
6356
6357
6358
6359
6360
6361
6362
6363
6364
6365
6366
6367
6368
6369
6370
6371
6372
6373
6374
6375
6376
6377
6378
6379
6380
6381
6382
6383
6384
6385
6386
6387
6388
6389
6390
6391
6392
6393
6394
6395
6396
6397
6398
6399
6400
6401
6402
6403
6404
6405
6406
6407
6408
6409
6410
6411
6412
6413
6414
6415
6416
6417
6418
6419
6420
6421
6422
6423
6424
6425
6426
6427
6428
6429
6430
6431
6432
6433
6434
6435
6436
6437
6438
6439
6440
6441
6442
6443
6444
6445
6446
6447
6448
6449
6450
6451
6452
6453
6454
6455
6456
6457
6458
6459
6460
6461
6462
6463
6464
6465
6466
6467
6468
6469
6470
6471
6472
6473
6474
6475
6476
6477
6478
6479
6480
6481
6482
6483
6484
6485
6486
6487
6488
6489
6490
6491
6492
6493
6494
6495
6496
6497
6498
6499
6500
6501
6502
6503
6504
6505
6506
6507
6508
6509
6510
6511
6512
6513
6514
6515
6516
6517
6518
6519
6520
6521
6522
6523
6524
6525
6526
6527
6528
6529
6530
6531
6532
6533
6534
6535
6536
6537
6538
6539
6540
6541
6542
6543
6544
6545
6546
6547
6548
6549
6550
6551
6552
6553
6554
6555
6556
6557
6558
6559
6560
6561
6562
6563
6564
6565
6566
6567
6568
6569
6570
6571
6572
6573
6574
6575
6576
6577
6578
6579
6580
6581
6582
6583
6584
6585
6586
6587
6588
6589
6590
6591
6592
6593
6594
6595
6596
6597
6598
6599
6600
6601
6602
6603
6604
6605
6606
6607
6608
6609
6610
6611
6612
6613
6614
6615
6616
6617
6618
6619
6620
6621
6622
6623
6624
6625
6626
6627
6628
6629
6630
6631
6632
6633
6634
6635
6636
6637
6638
6639
6640
6641
6642
6643
6644
6645
6646
6647
6648
6649
6650
6651
6652
6653
6654
6655
6656
6657
6658
6659
6660
6661
6662
6663
6664
6665
6666
6667
6668
6669
6670
6671
6672
6673
6674
6675
6676
6677
6678
6679
6680
6681
6682
6683
6684
6685
6686
6687
6688
6689
6690
6691
6692
6693
6694
6695
6696
6697
6698
6699
6700
6701
6702
6703
6704
6705
6706
6707
6708
6709
6710
6711
6712
6713
6714
6715
6716
6717
6718
6719
6720
6721
6722
6723
6724
6725
6726
6727
6728
6729
6730
6731
6732
6733
6734
6735
6736
6737
6738
6739
6740
6741
6742
6743
6744
6745
6746
6747
6748
6749
6750
6751
6752
6753
6754
6755
6756
6757
6758
6759
6760
6761
6762
6763
6764
6765
6766
6767
6768
6769
6770
6771
6772
6773
6774
6775
6776
6777
6778
6779
6780
6781
6782
6783
6784
6785
6786
6787
6788
6789
6790
6791
6792
6793
6794
6795
6796
6797
6798
6799
6800
6801
6802
6803
6804
6805
6806
6807
6808
6809
6810
6811
6812
6813
6814
6815
6816
6817
6818
6819
6820
6821
6822
6823
6824
6825
6826
6827
6828
6829
6830
6831
6832
6833
6834
6835
6836
6837
6838
6839
6840
6841
6842
6843
6844
6845
6846
6847
6848
6849
6850
6851
6852
6853
6854
6855
6856
6857
6858
6859
6860
6861
6862
6863
6864
6865
6866
6867
6868
6869
6870
6871
6872
6873
6874
6875
6876
6877
6878
6879
6880
6881
6882
6883
6884
6885
6886
6887
6888
6889
6890
6891
6892
6893
6894
6895
6896
6897
6898
6899
6900
6901
6902
6903
6904
6905
6906
6907
6908
6909
6910
6911
6912
6913
6914
6915
6916
6917
6918
6919
6920
6921
6922
6923
6924
6925
6926
6927
6928
6929
6930
6931
6932
6933
6934
6935
6936
6937
6938
6939
6940
6941
6942
6943
6944
6945
6946
6947
6948
6949
6950
6951
6952
6953
6954
6955
6956
6957
6958
6959
6960
6961
6962
6963
6964
6965
6966
6967
6968
6969
6970
6971
6972
6973
6974
6975
6976
6977
6978
6979
6980
6981
6982
6983
6984
6985
6986
6987
6988
6989
6990
6991
6992
6993
6994
6995
6996
6997
6998
6999
7000
7001
7002
7003
7004
7005
7006
7007
7008
7009
7010
7011
7012
7013
7014
7015
7016
7017
7018
7019
7020
7021
7022
7023
7024
7025
7026
7027
7028
7029
7030
7031
7032
7033
7034
7035
7036
7037
7038
7039
7040
7041
7042
7043
7044
7045
7046
7047
7048
7049
7050
7051
7052
7053
7054
7055
7056
7057
7058
7059
7060
7061
7062
7063
7064
7065
7066
7067
7068
7069
7070
7071
7072
7073
7074
7075
7076
7077
7078
7079
7080
7081
7082
7083
7084
7085
7086
7087
7088
7089
7090
7091
7092
7093
7094
7095
7096
7097
7098
7099
7100
7101
7102
7103
7104
7105
7106
7107
7108
7109
7110
7111
7112
7113
7114
7115
7116
7117
7118
7119
7120
7121
2012-01-08  author  <author@hostname>

	* po/fr.po: Fix some fuzzy strings

	* utils.c: Fix typo

2011-12-22  author  <author@hostname>

	* memo_gui.c: Added export for B-Folders CSV

	* KeyRing/keyring.c, utils.h: Added export option for b-folders

2011-11-11  author  <author@hostname>

	* docs/Makefile.am: fixed typo for man page Makefile

	* address_gui.c: I guess it is Gmail, not GMail

	* address_gui.c:
	Fixed garbage characters in UID of VCARD output optimized for Gmail/Android import.

2011-06-06  author  <author@hostname>

	* address_gui.c: Fix vCard export address field name to ADR per RFC2426

2011-04-12  author  <author@hostname>

	* docs/jpilot-merge.1, docs/jpilot-merge.man:
	Derive jpilot-merge.1 man page from jpilot-merge.man precursor as other man pages do.

	* configure.in: Bump version number to a development branch (1.9.2)

	* jpilot.spec.in: Add jpilot-merge to RedHat package .spec file

	* Makefile.am, jpilot-merge.c, merge.c, po/POTFILES.in, po/jpilot.pot:
	Rename merge.c to jpilot-merge.c

	* merge.c:
	Enable internationalization (i18n) for strings in jpilot-merge application.

	* docs/jpilot-merge.1:
	Rewrite jpilot-merge man page to reflect changes to help text.

	* merge.c:
	Untabify code, Add separators between code blocks, Rewrite help text.

2011-04-06  author  <author@hostname>

	* merge.c: Added a header

	* docs/Makefile.am: Also distribute jpilot-merge.1

	* docs/Makefile.am: Add jpilot-merge.1

	* docs/jpilot-merge.1: Add missing manpage

	* icons/appl_menu_icons.h: In file included from jpilot.c:69:
	icons/appl_menu_icons.h:23: warning: ‘static’ is not at beginning of declaration
	icons/appl_menu_icons.h:78: warning: ‘static’ is not at beginning of declaration
	icons/appl_menu_icons.h:140: warning: ‘static’ is not at beginning of declaration
	icons/appl_menu_icons.h:227: warning: ‘static’ is not at beginning of declaration

	* jpilot.c:
	jpilot.c:655: warning: no previous prototype for ‘cb_cancel_sync’

	* address_gui.c, datebook_gui.c, memo_gui.c:
	memo_gui.c:61: warning: redundant redeclaration of ‘glob_tooltips’
	stock_buttons.h:25: warning: previous declaration of ‘glob_tooltips’ was here

	* todo_gui.c:
	todo_gui.c:64: warning: redundant redeclaration of ‘glob_tooltips’
	stock_buttons.h:25: warning: previous declaration of ‘glob_tooltips’ was here
	todo_gui.c:105: warning: redundant redeclaration of ‘todo_update_clist’
	todo.h:52: warning: previous declaration of ‘todo_update_clist’ was here

	* address_gui.c, icons/clist_mini_icons.h, jpilot-dump.c, libplugin.h, otherconv.c, prefs.c, print_headers.c, sync.c, utils.c, utils.h:
	Add "const" to avoid compiler warnings

	* prefs_gui.c: Fix compiler warnings:
	prefs_gui.c:56: warning: initialization discards qualifiers from pointer target type

	* prefs_gui.c: Fix compiler warning
	prefs_gui.c: In function ‘cb_prefs_gui’:
	prefs_gui.c:439: warning: nested extern declaration of ‘skip_plugins’
	prefs_gui.c:439: warning: redundant redeclaration of ‘skip_plugins’
	prefs_gui.c:49: warning: previous declaration of ‘skip_plugins’ was here

	* print.c: Fix compiler warning
	print.c: In function 'print_dayview':
	print.c:200: warning: passing argument 3 of 'puttext' discards qualifiers from pointer target type

	* print.c: Use const to fix a lot of compiler warnings:
	print.c:61: warning: initialization discards qualifiers from pointer
	target type

	* utils.c, utils.h:
	Do not use inline and let the compiler optimise the code itself

	Fix a lot of compiler warnings like:
	utils.h:356: warning: inlining failed in call to 'set_tooltip': the function body must appear before caller
	datebook_gui.c:4944: warning: called from here

	* merge.c: Fix compiler warning:

	merge.c: In function 'merge_pdb_file':
	merge.c:206: warning: comparison between signed and unsigned

	* merge.c: Add $Id:$

	* libplugin.c, libplugin.h:
	Declare pc_read_next_rec() in the header file now that it is used by
	merge.c

	* merge.c: Fix 2 compiler warnings:

	merge.c: At top level:
	merge.c:48: warning: no previous prototype for 'read_pc_recs'
	merge.c:85: warning: no previous prototype for 'merge_pdb_file'

	* merge.c: Fix 2 compiler warnings:

	merge.c: In function 'jp_pack_Contact':
	merge.c:36: warning: control reaches end of non-void function
	merge.c: In function 'edit_cats':
	merge.c:35: warning: control reaches end of non-void function

2011-04-05  author  <author@hostname>

	* configure.in: Typo in version number, should be 1.8.1

	* ChangeLog: updated ChangeLog

	* libplugin.c: Need pc_read_next_rec for merge.c

	* Makefile.am: Added merge.c

	* merge.c: Initial write

	* configure.in: updated version

	* datebook_gui.c, todo_gui.c:
	Restrict Ctrl+E shortcut to only note field in datebook and todo apps.

	* address_gui.c, datebook_gui.c, memo_gui.c, todo_gui.c:
	Prevent flicker when adding new record.

2011-03-15  author  <author@hostname>

	* address_gui.c, datebook_gui.c, todo_gui.c:
	Add external editor capability to datebook, addressbook, and todo GUIs.

	* memo_gui.c:
	Use more secure mkstemp, rather than tmpnam, for temporary external editor file.

	* libplugin.c: Silence compiler warning abount 'const' attribute

2011-02-11  author  <author@hostname>

	* memo_gui.c, prefs.c, prefs.h, prefs_gui.c:
	Add external editor capability for editing memo text.

2011-02-09  author  <author@hostname>

	* utils.c, utils.h:
	get_home_file_name(): use _const_ char * for filename

	* po/fr.po: Fix fuzzy strings

	* jpilot-sync.c: Remove dead code

	jpilot-sync.c:126:4: warning: Value stored to 'done' is never read
	   done=cons_errors=0;
	   ^    ~~~~~~~~~~~~~
	jpilot-sync.c:126:9: warning: Although the value stored to 'cons_errors' is used
	      in the enclosing expression, the value is never actually read from
	      'cons_errors'
	   done=cons_errors=0;
	        ^           ~

	* jpilot-dump.c: Avoid complex pointer manipulations

	jpilot-dump.c:768:4: warning: Address of stack memory associated with local
	      variable 'ai' is still referred to by the global variable
	      'glob_PAddress_app_info' upon returning to the caller. This will be a
	      dangling reference
	   return EXIT_SUCCESS;
	   ^
	jpilot-dump.c:1032:4: warning: Address of stack memory associated with local
	      variable 'ai' is still referred to by the global variable
	      'glob_Ptodo_app_info' upon returning to the caller. This will be a
	      dangling reference
	   return EXIT_SUCCESS;
	   ^
	jpilot-dump.c:1106:4: warning: Address of stack memory associated with local
	      variable 'ai' is still referred to by the global variable
	      'glob_PMemo_app_info' upon returning to the caller. This will be a
	      dangling reference
	   return EXIT_SUCCESS;
	   ^

	* utils.c: Fix a potential crash

	utils.c:408:8: warning: Dereference of null pointer (loaded from variable
	      'Preturn_code')
	   if (*Preturn_code==CAL_DONE) {
	       ^~~~~~~~~~~~~

	* password.c: Fix a possible crash

	password.c:360:15: warning: Field access results in a dereference of a null
	      pointer (loaded from variable 'Pdata')
	   if (Pdata->button_hit==DIALOG_SAID_1) {
	       ~~~~~  ^

	* dialer.c: Remove dead code

	dialer.c:59:4: warning: Value stored to 'Pdata' is never read
	   Pdata = gtk_object_get_data(GTK_OBJECT(w), "dialog_data");
	   ^       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

	* datebook_gui.c: Remove dead code

	datebook_gui.c:651:13: warning: Value stored to 'index' is never read
	            index=0;
	            ^     ~
	datebook_gui.c:580:10: warning: Value stored to 'ret' is never read
	         ret = read_csv_field(in, text, sizeof(text));
	         ^     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	datebook_gui.c:576:10: warning: Value stored to 'ret' is never read
	         ret = read_csv_field(in, text, sizeof(text));
	         ^     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	datebook_gui.c:570:10: warning: Value stored to 'ret' is never read
	         ret = read_csv_field(in, text, sizeof(text));
	         ^     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	datebook_gui.c:565:10: warning: Value stored to 'ret' is never read
	         ret = read_csv_field(in, text, sizeof(text));
	         ^     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	datebook_gui.c:561:10: warning: Value stored to 'ret' is never read
	         ret = read_csv_field(in, text, sizeof(text));
	         ^     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	datebook_gui.c:552:10: warning: Value stored to 'ret' is never read
	         ret = read_csv_field(in, text, sizeof(text));
	         ^     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	datebook_gui.c:547:10: warning: Value stored to 'ret' is never read
	         ret = read_csv_field(in, text, sizeof(text));
	         ^     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	datebook_gui.c:542:10: warning: Value stored to 'ret' is never read
	         ret = read_csv_field(in, text, sizeof(text));
	         ^     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	datebook_gui.c:538:10: warning: Value stored to 'ret' is never read
	         ret = read_csv_field(in, text, sizeof(text));
	         ^     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	datebook_gui.c:534:10: warning: Value stored to 'ret' is never read
	         ret = read_csv_field(in, text, sizeof(text));
	         ^     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	datebook_gui.c:530:10: warning: Value stored to 'ret' is never read
	         ret = read_csv_field(in, text, sizeof(text));
	         ^     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	datebook_gui.c:519:10: warning: Value stored to 'ret' is never read
	         ret = read_csv_field(in, text, sizeof(text));
	         ^     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	datebook_gui.c:507:10: warning: Value stored to 'ret' is never read
	         ret = read_csv_field(in, text, sizeof(text));
	         ^     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	datebook_gui.c:502:10: warning: Value stored to 'ret' is never read
	         ret = read_csv_field(in, text, sizeof(text));
	         ^     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	datebook_gui.c:493:13: warning: Value stored to 'ret' is never read
	            ret = read_csv_field(in, location, sizeof(location));
	            ^     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	datebook_gui.c:484:10: warning: Value stored to 'ret' is never read
	         ret = read_csv_field(in, note, sizeof(note));
	         ^     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	datebook_gui.c:476:10: warning: Value stored to 'ret' is never read
	         ret = read_csv_field(in, description, sizeof(description));
	         ^     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	datebook_gui.c:469:10: warning: Value stored to 'ret' is never read
	         ret = read_csv_field(in, text, sizeof(text));
	         ^     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	datebook_gui.c:452:10: warning: Value stored to 'ret' is never read
	         ret = read_csv_field(in, text, sizeof(text));
	         ^     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	datebook_gui.c:429:4: warning: Value stored to 'attrib' is never read
	   attrib=0;
	   ^      ~
	datebook_gui.c:2059:4: warning: Value stored to 'now' is never read
	   now = localtime(&ltime);
	   ^     ~~~~~~~~~~~~~~~~~
	datebook_gui.c:2488:10: warning: Value stored to 'ret' is never read
	         ret = db3_parse_tag(temp_cel->mcale.cale.note, &db3_type, &db4);
	         ^     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	datebook_gui.c:2486:7: warning: Value stored to 'ret' is never read
	      ret=0;
	      ^   ~
	datebook_gui.c:3342:18: warning: Although the value stored to 'sorted_position'
	      is used in the enclosing expression, the value is never actually read from
	      'sorted_position'
	         index = sorted_position = 0;
	                 ^                 ~
	datebook_gui.c:3792:4: warning: Value stored to 'day_changed' is never read
	   day_changed = mon_changed = year_changed = 0;
	   ^             ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

	* datebook.c: Remove dead code

	datebook.c:72:7: warning: Value stored to 'num' is never read
	      num = get_days_calendar_events2(&cel, NULL, 2, 2, 1, CATEGORY_ALL, NULL);
	      ^
	~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	datebook.c:70:7: warning: Value stored to 'num' is never read
	      num = get_days_calendar_events2(&cel, NULL, 2, 2, 1, category, NULL);
	      ^
	~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

	* dat.c: Check for a NULL pointer only once and return in error

	dat.c:293:13: warning: Field access results in a dereference of a null pointer
	      (loaded from variable 'appt')
	      appt->repeatForever=FALSE;
	      ~~~~  ^

	* dat.c: Correctly initialize a variable

	dat.c:291:9: warning: The left operand of '==' is a garbage value
	   if (t==0x749e77bf) {
	       ~^

	* dat.c: Remove dead code

	dat.c:194:4: warning: Value stored to 'l' is never read
	   l=0;
	   ^ ~

	* category.c: Partly reverse previous patch
	The value is used if EDIT_CATS_DEBUG is defined

	* category.c: Remove dead code

	category.c:524:16: warning: Value stored to 'r' is never read
	               r = edit_cats_delete_cats_pdb(Pdata->db_name, catnum);
	               ^   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	category.c:520:16: warning: Value stored to 'r' is never read
	               r = edit_cats_delete_cats_pc3(Pdata->db_name, catnum);
	               ^   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	category.c:511:16: warning: Value stored to 'r' is never read
	               r = edit_cats_change_cats_pdb(Pdata->db_name, catnum, 0);
	               ^   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	category.c:507:16: warning: Value stored to 'r' is never read
	               r = edit_cats_change_cats_pc3(Pdata->db_name, catnum, 0);
	               ^   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	category.c:462:10: warning: Value stored to 'r' is never read
	  ...r = gtk_clist_get_text(GTK_CLIST(Pdata->clist), Pdata->selected, 0, &text)...
	     ^   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

	* alarms.c: Avoid a potential crash

	alarms.c:668:49: warning: Dereference of null pointer
	      alarms_remove_from_to_list(temp_al->mcale.unique_id);
	                                                ^

	* alarms.c: Remove dead code
	alarms.c:235:4: warning: Value stored to 'group' is never read
	   group = gtk_radio_button_group(GTK_RADIO_BUTTON(radio2));
	   ^       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	alarms.c:862:7: warning: Value stored to 't_prev' is never read
	      t_prev=t_future=0;
	      ^      ~~~~~~~~~~
	alarms.c:862:14: warning: Although the value stored to 't_future' is used in the
	      enclosing expression, the value is never actually read from 't_future'
	      t_prev=t_future=0;
	             ^        ~
	alarms.c:823:10: warning: Value stored to 't_begin' is never read
	         t_begin = mktime_dst_adj(&(temp_al->mcale.cale.begin));
	         ^         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

	* address_gui.c: Remove dead code

	address_gui.c:729:10: warning: Value stored to 'attrib' is never read
	         attrib=0;
	         ^      ~
	address_gui.c:725:13: warning: Value stored to 'index' is never read
	            index=0;
	            ^     ~
	address_gui.c:599:13: warning: Value stored to 'ret' is never read
	            ret = read_csv_field(in, text, sizeof(text));
	            ^     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	address_gui.c:656:16: warning: Value stored to 'ret' is never read
	               ret = read_csv_field(in, text, sizeof(text));
	               ^     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	address_gui.c:637:16: warning: Value stored to 'ret' is never read
	               ret = read_csv_field(in, text, sizeof(text));
	               ^     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	address_gui.c:626:16: warning: Value stored to 'ret' is never read
	               ret = read_csv_field(in, text, sizeof(text));
	               ^     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	address_gui.c:608:16: warning: Value stored to 'ret' is never read
	               ret = read_csv_field(in, text, sizeof(text));
	               ^     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	address_gui.c:589:10: warning: Value stored to 'ret' is never read
	         ret = read_csv_field(in, text, sizeof(text));
	         ^     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	address_gui.c:572:10: warning: Value stored to 'ret' is never read
	         ret = read_csv_field(in, text, sizeof(text));
	         ^     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	address_gui.c:1013:10: warning: Value stored to 'address_i' is never read
	         address_i=phone_i=IM_i=0;
	         ^         ~~~~~~~~~~~~~~
	address_gui.c:1013:20: warning: Although the value stored to 'phone_i' is used
	      in the enclosing expression, the value is never actually read from
	      'phone_i'
	         address_i=phone_i=IM_i=0;
	                   ^       ~~~~~~
	address_gui.c:1013:28: warning: Although the value stored to 'IM_i' is used in
	      the enclosing expression, the value is never actually read from 'IM_i'
	         address_i=phone_i=IM_i=0;
	                           ^    ~
	address_gui.c:2511:17: warning: Although the value stored to 'count' is used in
	      the enclosing expression, the value is never actually read from 'count'
	   total_read = count = 0;
	                ^       ~
	address_gui.c:2802:15: warning: Although the value stored to 'sorted_position'
	      is used in the enclosing expression, the value is never actually read from
	      'sorted_position'
	      index = sorted_position = 0;
	              ^                 ~
	address_gui.c:3112:31: warning: Although the value stored to 'i' is used in the
	      enclosing expression, the value is never actually read from 'i'
	   for (temp_cl = *cont_list, i=0; temp_cl; temp_cl=temp_cl->next) {
	                              ^ ~

	* KeyRing/keyring.c: Avoids a potential crash

	keyring.c:1751:15: warning: Field access results in a dereference of a null
	      pointer (loaded from variable 'Pdata')
	   if (Pdata->button_hit==DIALOG_SAID_1) {
	       ~~~~~  ^

	* KeyRing/keyring.c: Remove dead code

	keyring.c:207:4: warning: Value stored to 'record' is never read
	   record += 2;
	   ^         ~
	keyring.c:247:4: warning: Value stored to 'record' is never read
	   record++;
	   ^~~~~~~~
	keyring.c:1371:4: warning: Value stored to 'num' is never read
	   num = get_keyring(keyring_list, category);
	   ^     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	keyring.c:1511:7: warning: Value stored to 'index' is never read
	      index = sorted_position = 0;
	      ^       ~~~~~~~~~~~~~~~~~~~

	* SyncTime/synctime.c: Remove dead code

	synctime.c:116:4: warning: Value stored to 'r' is never read
	   r = dlp_SetSysDateTime(sd, ltime);
	   ^   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

	* Expense/expense.c: Remove dead code

	expense.c:1224:7: warning: Value stored to 'index' is never read
	      index = sorted_position = 0;
	      ^       ~~~~~~~~~~~~~~~~~~~

	* libplugin.c, libplugin.h:
	Use _const_ char * for database names to avoid compiler warnings

2010-11-10  author  <author@hostname>

	* Expense/expense.c, KeyRing/keyring.c, address_gui.c, datebook_gui.c, jpilot.c, memo_gui.c, monthview_gui.c, prefs_gui.c, stock_buttons.h, todo_gui.c, utils.c, utils.h, weekview_gui.c:
	Restore option to disable tooltips lost with GTK 2.12

2010-11-08  author  <author@hostname>

	* address_gui.c, datebook_gui.c, jpilot-dump.c, jpilot-sync.c, memo_gui.c, todo_gui.c, utils.c, utils.h:
	Sync "Today:" label with wall time on GUI startup to prevent label from being off by up to 59 seconds.

	* alarms.c: Use macro CLOCK_TICK in place of hardcoded constant 1000

2010-11-07  author  <author@hostname>

	* icons/clist_mini_icons.h, install_gui.c, sync.c, utils.c, utils.h:
	Add ability to install files directly to SDcard.

	Directory is currently hardcoded to the Launcher directory Treo uses for
	.prc/.pdb files.  However, any file, such as a .jpg *can* be transferred and
	then moved on the Palm with a utility such as FileZ.

2010-11-06  author  <author@hostname>

	* prefs_gui.c: Disable Serial Rate menu if port is USB.

	* todo_gui.c:
	Add Alt+# keyboard shortcut to set priority for ToDo items.

	* prefs_gui.c:
	Change preference GUI label to "Sync Rate" to match "Sync Port"

	* alarms.c:
	Adjust spacing of items in popup alarm window for better looks.

2010-11-05  author  <author@hostname>

	* m4/.cvsignore:
	Add some m4 files installed by automake to the .cvsignore list.

2010-10-29  author  <author@hostname>

	* address_gui.c:
	Fix newly introduced bug where phone type menus were always set to default.

2010-10-23  author  <author@hostname>

	* address_gui.c, datebook_gui.c, jpilot-dump.c, prefs_gui.c:
	Code cleanup: Use NULL for the unused parameter in get_pref rather than dummy variable.

	* restore_gui.c:
	Avoid warning by not trying to log non-utf8 text to GUI.

	* datebook.c, datebook_gui.c, libplugin.h, utils.h:
	Add "Future" button to repeating event modification dialog.

2010-10-19  author  <author@hostname>

	* sync.c:
	Avoid valgrind memory error on unitialized value in signal handler.

	* print.c:
	Properly call time() before using localtime() call in print.c

	* datebook_gui.c:
	Prevent leaking of appt. time in masked calendar events.

	* Expense/expense.c, KeyRing/keyring.c, SyncTime/synctime.c:
	Update plugin help screens to look like J-Pilot main help screen.

	Same string is easier for i18n.

2010-10-18  author  <author@hostname>

	* jpilot-dump.c:
	Correct iCal export for repeating events with an end date in jpilot-dump.

	New RFC5445, which supercedes RFC2445, specifies that end dates are
	inclusive of the final occurrence of the event.  This resolves Bugzilla
	2008 and 2021.

	* address_gui.c, datebook_gui.c, install_user.c, jpilot-dump.c, restore_gui.c, todo_gui.c:
	Ensure User Name is correctly converted from Palm character set to host set for display.

2010-10-17  author  <author@hostname>

	* calendar.c, todo.c:
	Update calendar sort to use alphabetical sort after trying timed/untimed or start of event.
	Update todo_sort to use different code to produce same result.

2010-10-16  author  <author@hostname>

	* datebook_gui.c, todo_gui.c:
	Prevent data leaking through for masked records.

	* Expense/expense.c, KeyRing/keyring.c, address_gui.c, cp1250.c, datebook_gui.c, export_gui.c, import_gui.c, jpilot.c, memo_gui.c, password.c, plugins.c, prefs.c, prefs_gui.c, print.c, russian.c, todo_gui.c, utils.c:
	Use static keyword to remove file global variables from application global namespace.

	* alarms.c: Make non-global functions static in alarms.c

2010-10-15  author  <author@hostname>

	* address.c, dat.c, datebook.c, datebook.h, datebook_gui.c, dialer/jpilot-dial.c, font.c, log.c, log.h, memo.c, memo_gui.c, monthview_gui.c, otherconv.c, password.c, password.h, plugins.c, prefs_gui.c, print.c, todo.c, todo_gui.c, utils.c, utils.h, weekview_gui.c:
	Change functions to static prototypes to avoid polluting global namespace.

	* datebook_gui.c:
	Reduce flicker when adding new Calendar record caused by forcing clist_row_selected to 0

	* jpilot.c: Add cancel sync button capability for Restore Handheld

	* sync.c:
	Ignore suspend/resume events which also cause SIGCHLD signals, but should not trigger cb_cancel_sync code.

	* install_user.c, install_user.h, jpilot.c:
	Add "cancel sync" button feature to install user function

	* sync.c:
	Move fix for lack of fork() on Mac OS to sync.c where it can catch all paths to the fork command.

	* address_gui.c: Plug memory leak with masked records for Contacts.

	* restore_gui.c:
	Add newline to warning message about UTF8 conversion for readability

	* prefs_gui.c, sync.c:
	Rename obsolete "Serial Port" in menus to "Sync Port"

2010-10-14  author  <author@hostname>

	* sync.c: Fix memory leak across forked process in sync.

	* datebook_gui.c:
	Add location and category fields to Calendar iCal export.

	* todo_gui.c:
	Use RFC-mandated end-of-line sequence CRLF for iCal export.

2010-10-13  author  <author@hostname>

	* SyncTime/synctime.c, dialer/jpilot-dial.c, Expense/expense.c, KeyRing/keyring.c, address.c, address_gui.c, calendar.c, category.c, contact.c, datebook.c, datebook_gui.c, import_gui.c, jpilot.c, libplugin.c, libplugin.h, log.c, memo.c, memo_gui.c, monthview_gui.c, otherconv.c, plugins.c, prefs_gui.c, print.c, print.h, print_headers.c, russian.c, russian.h, stock_buttons.h, todo.c, todo_gui.c, utils.c, utils.h, weekview_gui.c:
	Change indenting to conform to code default.

	Only non-functional changes made code base.

2010-10-12  author  <author@hostname>

	* jpilot.c:
	Use static keyword to minimize application-wide globals and create just file-wide globals

	* alarms.c: Avoid invalid memory lookup on unitialized array.

	* KeyRing/keyring.c: Use existing plugin function to simplify keyring.c

	* jpilot-dump.c, jpilot-sync.c, jpilot.h, sync.c:
	Restore regular sync icon after successful sync.

	Fixes bug introduced with "cancel sync" button.

	* jpilot-dump.c: Rephrase help string for jpilot-dump to active voice

	* datebook_gui.c:
	Fix memory leak with embedded ToDo clist in Datebook GUI

	* jpilot-sync.c, jpilot.c, utils.c:
	Add i18n translation capability to jpilot-sync code.

2010-10-10  author  <author@hostname>

	* utils.c: Add '-s' option to first line of jpilot help string.

	* utils.c:
	Add documentation for -s command line option to help text output.

	* po/fr.po: Fix fuzzy strings

	* po/fr.po: Regenerate

	* Makefile.am, icons/cancel_sync.xpm, jpilot.c, sync.c, utils.c:
	Add support for "cancel sync" button.  Bugzilla request 2022.

2010-10-09  author  <author@hostname>

	* address_gui.c:
	Fix another memory leak in photo code, this one due to GTK reference counts

2010-10-07  author  <author@hostname>

	* jpilot.c, password.c:
	Initialize Palm privacy password to zero before use.

	* calendar.c, datebook.c, datebook.h, datebook_gui.c:
	Add support for categories to left-hand side of Calendar GUI

2010-10-06  author  <author@hostname>

	* calendar.c, datebook.c, todo_gui.c: Fix a few compiler warnings

	calendar.c, datebook.c: Use ENABLE_DATEBK around routines that are only
	used with DATEBK
	todo_gui.c: Remove unused variable, initialize variable.

	* KeyRing/keyring.c:
	Increase the time before the password is asked again from 1s to 10s.
	This allows to fetch a keyring entry in the search window without
	getting asked for the password for 10 seconds.

2010-10-05  author  <author@hostname>

	* address_gui.c, memo_gui.c, todo_gui.c: Cleanup code for GUIs

	Untabify code.
	Add comments about what is being created by GUI code.
	Move some GUI init code to be closer to the elements it affects.

	* icons/appl_menu_icons.h: Indent code for icon

2010-10-01  author  <author@hostname>

	* datebook_gui.c:
	Update end time entry when start time changed to keep overall appt. length the same.

	This mimics Palm Desktop and makes it easier to enter appointments.

2010-09-30  author  <author@hostname>

	* datebook_gui.c:
	Allow appts which span midnight for Calendar events (Bug #1531)

2010-08-23  author  <author@hostname>

	* search_gui.c:
	Use correct application string (memo/memos) in search gui

2010-08-01  author  <author@hostname>

	* datebook_gui.c:
	Correct iCal export for repeating events with an end date.

	New RFC5445, which supercedes RFC2445, specifies that end dates are
	inclusive of the final occurrence of the event.  This resolves Bugzilla
	2008 and 2021.

	* address_gui.c:
	Add space between address text labels and text boxes for readability

2010-07-28  author  <author@hostname>

	* address_gui.c: Change message from debug to warning category

	* address_gui.c: Add some padding space

	* address_gui.c: i18n a log message

2010-07-24  author  <author@hostname>

	* address_gui.c, datebook_gui.c, memo_gui.c, todo_gui.c:
	Move to correct search record when switching applications causes a new
	record to be added.

2010-07-23  author  <author@hostname>

	* address_gui.c:
	Correct off-by-1 pixel alignment with new vertically-aligned address labels

2010-07-20  author  <author@hostname>

	* address_gui.c: Align address labels to the top and right

2010-07-08  author  <author@hostname>

	* address_gui.c:
	Changed strcmp of E-mail to case insensitive because German translation on Palm is E-Mail.  This help export of VCard to work properly for importing into gmail

	* po/de.po: Translated E-mail to help user export VCard to iPhone

2010-07-04  author  <author@hostname>

	* address_gui.c, utils.h:
	Added a VCard export format optimized for GMail/Android import

2010-05-02  author  <author@hostname>

	* po/ru.po:
	Add russian translation update patch from reporter ncdarvin (bugzilla 0002017)

2010-04-21  author  <author@hostname>

	* calendar.c: Remove redundant declaration

	calendar.c:319: warning: redundant redeclaration of ‘get_days_calendar_events2’
	calendar.h:60: warning: previous declaration of ‘get_days_calendar_events2’ was here

	* libplugin.h: include log.h instead of redefining jp_logf()

	Avoids lots of warning: redundant redeclaration of ‘jp_logf’

	* jpilot-sync.c: Remove duplicate definition of glob_child_pid

	jpilot-sync.c:47: warning: redundant redeclaration of ‘glob_child_pid’
	jpilot-sync.c:45: warning: previous declaration of ‘glob_child_pid’ was here

	* libplugin.h, utils.h:
	Do not redeclare in libplugin.h functions already declared in utils.h

	Avoids lots of warning: redundant redeclaration of ...

	* jp-pi-contact.h:
	avoid multiple inclusion of itself to avoid redundant redeclarations

	* utils.h: Remove redundant declaration

	utils.h:298: warning: redundant redeclaration of ‘pilot_time_to_unix_time’
	/usr/include/pi-file.h:429: warning: previous declaration of ‘pilot_time_to_unix_time’ was here

	* datebook.h: Remove redundant declaration

	datebook.h:147: warning: redundant redeclaration of ‘datebook_import’
	datebook.h:76: warning: previous declaration of ‘datebook_import’ was here

	* calendar.h: Remove redundant declaration

	calendar.h:64: warning: redundant redeclaration of ‘get_days_calendar_events2’
	calendar.h:54: warning: previous declaration of ‘get_days_calendar_events2’ was here

2010-04-20  author  <author@hostname>

	* monthview_gui.c, weekview_gui.c:
	Add accelerator keys for left/right arrows in week and month views

2010-04-14  author  <author@hostname>

	* datebook_gui.c, jpilot.c:
	Change accelerator documentation strings to 'Ctrl+KEY' rather than 'Ctrl-KEY'

	This matches GTK conventions

2010-04-13  author  <author@hostname>

	* Expense/expense.c, KeyRing/keyring.c, address_gui.c, datebook_gui.c, memo_gui.c, todo_gui.c:
	Use Ctrl+Shift+C as shortcut to copy records

2010-04-05  author  <author@hostname>

	* calendar.c: Rename a code TODO to FIXME to make it more prominent

2010-04-03  author  <author@hostname>

	* datebook_gui.c:
	Use Ctrl+W and Ctrl+M as shorcut sequences for weekly and monthly datebook views

	* utils.c: Update copyright notice for About->Jpilot to 2010

2010-04-02  author  <author@hostname>

	* po/da.po: update from Joe Dalton

	* datebook.c: Remove unused datebook_compare function

	* todo.h: Quiet compiler warning about todo_clist_clear in last patch

	* datebook_gui.c:
	Fix memory leak with embedded todo clist in datebook/calendar

	* calendar.c, calendar.h, datebook.c, search_gui.c:
	Use CalendarEvents to hold data for both Datebook and Calendar apps

	Code now follows the same strategy as the Contacts/Addressbook which is
	to keep data in the newer format and transform it to the old format
	only when reading/writing pdb files.

	* calendar.c, calendar.h, datebook.c, datebook.h, datebook_gui.c:
	Rename pc_calendar_or_datebook_write which removes TODO item from code

	* address.c, address_gui.c, calendar.c, contact.c, datebook.c, memo.c, todo.c:
	Eliminate TODO in code to check the return value of jp_get_app_info

	* calendar.c:
	Close TODO to make unpack_CalendarEvent use a pi_buffer as this is already completed in pilot-link

	* KeyRing/keyring.c, libplugin.h:
	Restore export functionality for KeyRing

2010-04-01  author  <author@hostname>

	* export_gui.c: Fix memory leak when exporting from a specific category

	* KeyRing/keyring.c: Fix memory leak when using styles in clist

	* datebook.c:
	Fix memory leak when returning to calendar with app button

	* Expense/expense.c:
	Fix memory leak in search function for Expense plugin

	* address.c, contact.c, memo.c, todo.c:
	Fix memory leak when using only the records from a requested category in the pdb file

	* print.c: Fix memory leak when printing weekly appointments

	* todo_gui.c: Remove unused variable to quiet compiler warning

	* address_gui.c, datebook_gui.c, memo_gui.c, todo_gui.c, utils.c, utils.h:
	Plug memory leak when using clists

	* contact.c, japanese.c:
	Comment out unused code to quiet compiler warning about unused functions

	* calendar.c, contact.c: Use EXIT_SUCCESS as return value

	* calendar.c, datebook_gui.c: Fix 3 memory leaks in calendar code

2010-03-31  author  <author@hostname>

	* calendar.c, contact.c, datebook_gui.c, utils.c:
	Use consistent naming for appointments (appt) and calendar events (cale)

	* datebook_gui.c:
	Restore datebook/calendar exceptions in repeating events

2010-03-29  author  <author@hostname>

	* print_headers.c:
	Resolve bug 2012 where small months in Postcript printout overlapped a calendar event.

	* address_gui.c, datebook_gui.c:
	Eliminate wasteful copying of data structures before an undelete operation

	* Expense/expense.c, KeyRing/keyring.c, SyncTime/synctime.c, dialer/jpilot-dial.c, icons/appl_menu_icons.h, icons/clist_mini_icons.h, icons/lock_icons.h, memo_gui.c, monthview_gui.c, otherconv.h, password.c, password.h, pidfile.c, pidfile.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, russian.c, russian.h, search_gui.c, stock_buttons.h, sync.c, sync.h, todo.c, todo.h, todo_gui.c, utils.c, utils.h, weekview_gui.c, address.c, address.h, address_gui.c, alarms.c, alarms.h, calendar.c, calendar.h, category.c, contact.c, cp1250.c, cp1250.h, dat.c, datebook.c, datebook.h, datebook_gui.c, dialer.c, export.h, export_gui.c, font.c, gettext.h, i18n.h, import_gui.c, install_gui.c, install_user.c, install_user.h, japanese.c, japanese.h, jp-contact.c, jp-pi-contact.h, jpilot-sync.c, jpilot.c, libplugin.c, libplugin.h, log.c, log.h, memo.c, memo.h:
	Code formatting for easier readability

	No changes to function of code were made.  Only visual changes.

	Untabify code
	Shorten most function call lines to <80 characters long
	Use cale abbreviation for CalendarEvent in analogy with appt, addr, todo, memo
	Add GPL copyright to icons/*.h files

	* datebook_gui.c:
	Use common abbreviation of mappt for MyAppointment struct

2010-03-27  author  <author@hostname>

	* datebook_gui.c:
	cb_delete_appt(): check the datebook version to call the correct
	deletion code
	Fixes Debian bug #574030: jpilot: can't delete appointments

2010-03-15  author  <author@hostname>

	* configure.in: Bump version number to odd number for development

	* datebook_gui.c:
	Prevent flicker on Calendar widget when using PgUp/PgDn keys

2010-03-08  author  <author@hostname>

	* jpilot.spec.in:
	Use autoconf to replace version values which doesn't depend on RedHat specific macros

	* jpilot.spec.in:
	Overhaul jpilot.spec to correspond to actual 1.8.0 release files

2010-03-07  author  <author@hostname>

	* jpilot.rh7.spec: Remove obsolete Redhat 7 spec file

	* otherconv.c, po/POTFILES.in, po/jpilot.pot:
	Add i18n support for otherconv.c messages

	* Makefile.am:
	Fix Makefile.am so that distribution passes make distcheck

	* address.c, contact.c:
	Eliminate two compiler warnings about using bitwise or rather than logic or

	* KeyRing/keyring.c:
	cb_delete_keyring(): convert the record from Jpilot to Palm encoding
	before writing the record for deletion

2010-03-04  author  <author@hostname>

	* jpilot.c, jpilot.h, weekview_gui.c:
	fix weekview_gui.c:61: warning: no previous prototype for
	‘cb_weekview_quit’

	* install_user.c:
	Fix install_user.c:234: warning: no previous prototype for
	‘install_user_gui’

	* weekview_gui.c:
	Do not need to prototype, may need to be in a header file

	* log.c: No need to prototype

	* jpilot.h: install_user_gui is defined in install_user.h

2010-03-03  author  <author@hostname>

	* address.c, address_gui.c, calendar.c, contact.c, dat.c, datebook.c, datebook_gui.c, export_gui.c, import_gui.c, install_gui.c, install_user.c, japanese.c, jpilot.c, libplugin.c, memo.c, memo_gui.c, monthview_gui.c, plugins.c, print_headers.c, print_logo.c:
	Fix "no previous prototype for" warnings

	* Makefile.am, jpilot.h: new file

	* print.c, print_gui.c, restore_gui.c, search_gui.c, sync.c, todo.c, todo_gui.c, utils.c, weekview_gui.c, otherconv.c, pidfile.c, prefs.c, prefs_gui.c, jpilot-dump.c, jpilot-sync.c:
	Fix "no previous prototype for" warnings

	* category.c: Fix "no previous prototype for" wanings

	* alarms.c: Fix "no previous prototype for" warnings

	* KeyRing/keyring.c: fix "no previous prototype for" warnings

	* libplugin.h:
	define plugin_version() and plugin_get_help_name() to avoid "no previous
	prototype for" warnings

	* Expense/expense.c: fix "no previous prototype for" warnings

	* datebook_gui.c: Fix compiler warning:
	datebook_gui.c: In function ‘appt_export_ok’:
	datebook_gui.c:1061: warning: format not a string literal and no format
	arguments

	* jpilot-dump.c: Fix a compiler warning:
	jpilot-dump.c: In function ‘dumpical’:
	jpilot-dump.c:300: warning: format not a string literal and no format
	arguments

2010-03-02  author  <author@hostname>

	* Makefile.am: Force Changelog.cvs to be updated before distribution

	* mkinstalldirs: update from automake-1.11

	* calendar.c: new file

	* Makefile.am: remove useless jpilot-dump.o and jpilot-sync.o rules

	* po/POTFILES.in: add calendar.c

	* ChangeLog: One final test to be sure it's all working...

	* ChangeLog: Testing a commit to the -commits list (test 4)

	* Makefile.am: Added calendar.h

	* calendar.h: Inital write

	* ChangeLog:
	Testing a commit to the -commits list, to debug some problems found there

2010-02-28  author  <author@hostname>

	* Makefile.am: Updated for pilot-link 0.12.5

	* address_gui.c: testing cvs commit email list

	* address_gui.c: Changed undelete to properly use a contacts structure

	* address_gui.c: shut compiler up about uninitialized use of variable

	* jp-calendar.c, jp-pi-calendar.h:
	Updated for pilot-link 0.12.5 (Removed)

	* jpilot-dump.c, datebook_gui.c, Makefile.am, monthview_gui.c, weekview_gui.c, search_gui.c, print.c, utils.c, utils.h, datebook.c, sync.c, datebook.h, dat.c, category.c, alarms.c:
	Updated for pilot-link 0.12.5

	* configure.in, jpilot.spec.in:
	Update configure to require pilot-link 0.12.5

	* ChangeLog: Update ChangeLog before 1.8 release

2010-01-20  author  <author@hostname>

	* KeyRing/keyring.c:
	use return instead of exit() since we are in a library

	* jpilot.desktop:
	The Encoding key is now deprecated by the FreeDesktop standard and all
	strings are required to be encoded in UTF-8.

	http://lintian.debian.org/tags/desktop-entry-contains-encoding-key.html

	* KeyRing/keyring.c: correctly initialize the libgcrypt lib
	Closes Debian bug #565817

2010-01-03  author  <author@hostname>

	* configure.in: Ta-da!

	* configure.in: Still playing, bear with me while I debug this

	* configure.in:
	Commit forward to revert back (testing commits to the repo)

	* configure.in: Testing a commit, will revert in a moment if successful

2009-12-12  author  <author@hostname>

	* datebook_gui.c:
	cb_add_new_record(): convert from Jpilot to Palm encoding before
	deleting the original of a modified event. Events containing non-ASCII
	characters where duplicated (Sync Conflict: a record must be manually
	merged)

2009-11-17  author  <author@hostname>

	* address_gui.c:
	Fix switching between fields using Shift+Tab for address_gui

2009-11-08  author  <author@hostname>

	* address.h, address_gui.c, datebook.h, datebook_gui.c, install_gui.c, install_user.c, memo.h, memo_gui.c, monthview_gui.c, plugins.c, plugins.h, todo.h, todo_gui.c:
	fix: warning: function declaration isn’t a prototype

2009-11-02  author  <author@hostname>

	* address_gui.c, datebook_gui.c, memo_gui.c, todo_gui.c:
	Fix Bugzilla 2002 : Incorrect CSV export when double quotes are in field

2009-09-24  author  <author@hostname>

	* address.c, address.h, contact.c, memo.c, todo.c:
	Correct comments to accurately document sort_order

2009-09-19  author  <author@hostname>

	* datebook.c, datebook_gui.c:
	Add check on datebook version before invoking code with location support.

	* monthview_gui.c, print.c, weekview_gui.c:
	Add FIXME notes to code about possible additions of calendar location support

	* datebook.c:
	pc_datebook_write(): convert the location field from jpilot to Palm encoding

	* datebook_gui.c: use sizeof() instead of a constant
	read_csv_field() already provides a NUL terminated string

2009-09-16  author  <author@hostname>

	* po/fr.po: update

	* datebook_gui.c: call a debug printf() only if JPILOT_DEBUG is defined

2009-09-10  author  <author@hostname>

	* Makefile.am, alarms.c, datebook.c, datebook.h, datebook_gui.c, jp-calendar.c, jp-pi-calendar.h, jpilot-dump.c, monthview_gui.c, search_gui.c, sync.c, utils.c, utils.h, weekview_gui.c:
	Add support for Location field in Calendar application

	Implementation relies on pack/unpack routines that were borrowed from
	pilot-link and amended to support the Calendar app.  These routines
	in jp-calendar.c should eventually be migrated to pilot-link.

	Currently categories are only supported on the right-hand side of the GUI.
	The code could be changed to resemble the other apps and have a category
	menu on the left as well.  The GUI might become a little too busy at that
	point but I am open to a request from users for such a feature.

2009-09-05  author  <author@hostname>

	* todo_gui.c: Update right-hand side GUI for ToDo application.

	Category selector now at very top which matches other applications.
	Labels moved slightly off left-hand edge for better readability.

2009-09-03  author  <author@hostname>

	* contact.c, utils.c: Fix compilation under -DJPILOT_DEBUG

	* address_gui.c: Remove unnecessary GTK_IS_WIDGET check

	* datebook_gui.c:
	Fix subtle bug where alarm box contents were displayed even though alarm checkbox was not checked

	* datebook_gui.c: Update right-hand side GUI for datebook

	Use radio buttons to select between timed and untimed events rather than
	a single checkbox.

2009-09-02  author  <author@hostname>

	* jpilotrc.steel:
	Change spinner highlight color to more subdued yellow to match color scheme

2009-09-01  author  <author@hostname>

	* address_gui.c: Fix bugs in TEXT export of contacts

	1) Birthday field printing without a newline
	2) Exported labels of phones, addresses, and IM did not match actual record

	* prefs_gui.c, datebook_gui.c:
	Update a few more pieces of code left in during the addition of Calendar support

	* datebook_gui.c, prefs_gui.c:
	Remove a few unused lines left in during addition of Calendar code

	* datebook_gui.c: Compact double nested if statments for code clarity

	* address_gui.c: Rename subroutine for more code clarity

	* datebook.c, datebook_gui.c, empty/CalendarDB-PDat.pdb, memo_gui.c, monthview_gui.c, prefs_gui.c, print.c, sync.c, todo_gui.c, utils.c, weekview_gui.c:
	Preliminary addition of Calendar support for Jpilot

	Categories work correctly including editing.  Import/Export work correctly.
	Preference for Calendar versus Datebook added.  GUI modified to display
	category on right-hand side.

	Syncing of records with a Location field DO NOT WORK.  Otherwise everything
	works perfectly.

2009-08-29  author  <author@hostname>

	* libplugin.h, todo_gui.c:
	Added new feature where ToDo items which are due today are marked by a
	soft green color.

	This helps prioritize between overdue items, shown in red, items to be completed
	today, shown in soft green, and items due in the future, solid black.

	* address_gui.c, datebook_gui.c, memo_gui.c:
	Textual changes only to line up code blocks, etc.

2009-08-28  author  <author@hostname>

	* address_gui.c, datebook_gui.c, icons/clist_mini_icons.h, todo_gui.c:
	Center pixmaps in clist columns below pixmap in title row of clist

	Previously the pixmaps were not centered under their title icons but were
	off to the side by 1 pixel.  This was small but visually annoying.  The
	problem was two-fold.  A) the option to center the columns was not being
	applied and B) GTK cannot center icons which have a width which is an odd number.

	* icons/lock_icons.h, jpilot.c:
	Simplify lock icon naming.  Now there are lock, unlock, and masklock icons.

	* icons/lock_icons.h:
	Correct visual defect in hasp of lock in private record locking icons.
	Improve the top curve of the lock hasp.

	* icons/clist_mini_icons.h:
	Replace alarm clock icon with a more graphically pleasing version

	* Makefile.am, icons/clist_mini_icons.h, utils.c:
	Separate clist icons (such as alarm clock icon) from code in utils.c and
	place in icons directory.  This allows user-defined icons to be substituted
	more easily for the default icons.

	Also eliminated goto statement in favor of if statement.

	* datebook_gui.c:
	Use same shadow style for clist in datebook as in other applications

	* libplugin.c: Updated FIXME note for libplugin.c

	* font.c, utils.h: Removed unnecessary FIXME notes

	* address_gui.c:
	Removed comment about buffer overrun after verifying code

	* Expense/expense.c:
	clist columns will now autosize which is better for i18n compatibility.
	clist shadow type was set to be the same as the other applications.

	* address_gui.c, datebook_gui.c, jpilot-dump.c:
	Display warning during ical export from jpilot-dump if character encoding is not UTF-8

	Removes TODO item from code

	* datebook_gui.c:
	Clean up code by removing private date2seconds procedure and using equivalent in utils.c

	Clears an outstanding TODO item

	* KeyRing/keyring.c:
	Category menubar for KeyRing is now uniform with other applications.

	Implemented and removed TODO items in code

	* KeyRing/keyring.c:
	Remove TODO that shouldn't be implemented since it might lead to security issues with holding records unencrypted in memory

	* datebook_gui.c, utils.c:
	Datebook delete procedure is now uniform with the other 3 apps.

	Modified where conversion of strings from pilot to palm encoding takes place.
	It now happens in cb_delete_memo rather than in the delete_routine in utils.c.

2009-08-27  author  <author@hostname>

	* datebook_gui.c:
	Remove unused GTK1 code now that it is no longer supported

2009-08-26  author  <author@hostname>

	* po/fr.po: update

2009-08-24  author  <author@hostname>

	* address_gui.c, datebook_gui.c, todo_gui.c:
	Implement Shift-Tab functionality to move between text fields.

	Tab already advances to the next text field but now the operation is reversible and shift-tab returns to the previous widget.

2009-08-11  author  <author@hostname>

	* ChangeLog: Add missing Changelog entry for current release 1.6.2

	* configure.in, contact.c, jp-contact.c, jp-pi-contact.h, INSTALL:
	Require pilot-link >= 0.12.4 for Jpilot

	* Expense/Makefile.am, KeyRing/Makefile.am, SyncTime/Makefile.am:
	Include top_srcdir for compilation of plugins which is needed for some
	complicated build strategies.

2009-08-01  author  <author@hostname>

	* otherconv.c:
	Add single quotes around string not being converted correctly by iconv for clarity in error reporting

2009-07-31  author  <author@hostname>

	* otherconv.c: Make it easier to toggle OTHERCONV_DEBUG

	* otherconv.c: Correct indentation to Jpilot standards

	* empty/Makefile.am, empty/MaanaDB.pdb, todo_gui.c, utils.c:
	Fix Bug 1213 : Edit Categories should edit Manana categories when option is selected

	Added an empty Manana database so first sync will work correctly as well.

	* otherconv.c: Fix typo in error message

	* address_gui.c:
	Fix Bugzilla 1917 and 1622 : Lack of Vcard export for Birthday, IM, and custom fields

2009-07-27  author  <author@hostname>

	* Makefile.am: Update e-mail address for rikster5 jpilot contacts

2009-07-26  author  <author@hostname>

	* empty/AddressDB.pdb, empty/ContactsDB-PAdd.pdb, empty/ExpenseDB.pdb, empty/Memo32DB.pdb, empty/MemoDB.pdb, empty/MemosDB-PMem.pdb, empty/ToDoDB.pdb, sync.c, utils.c:
	Fix Bug 1991 : Categories are lost during first sync.

	Created new blank pdb databases for the empty/ directory.  Databases
	have blank category names, blank rename bits, and now have zeroed ID
	fields.  The non-zero ID fields were the problem.

2009-07-07  author  <author@hostname>

	* Expense/Makefile.am, KeyRing/Makefile.am, SyncTime/Makefile.am:
	Clean up Automake files for plugin modules

	Plugins are now built expressly as modules and installed without
	unnecessary symbolic links.

2009-07-03  author  <author@hostname>

	* search_gui.c:
	Fix bug 1990: Private Contact records discoverable through search GUI

2009-06-11  author  <author@hostname>

	* KeyRing/keyring.c:
	unpack_KeyRing(): correctly handle records with no date set

2009-05-30  author  <author@hostname>

	* prefs.c: default communication port is now "usb:" instead of nothing

	* mkinstalldirs: update from automake-1.10

2009-05-29  author  <author@hostname>

	* configure.in, contact.c, jp-contact.c, jp-pi-contact.h:
	Pilot-link 0.12.4 broke some things with the contacts merge.  I don't want
	to require a brand new pilot-link just yet.  This is an attempt to make things
	work with few #ifdefs so the code is more readable.

	I might require 0.12.4 later when its tested and has made its way downstream.
	Then this campatibility layer could be removed.

	* utils.c: Remove extra character in printf

2009-05-10  author  <author@hostname>

	* KeyRing/keyring.c: revert to version 1.96

	* Expense/expense.c:
	expense.c:1424: warning: assignment discards qualifiers from pointer target type
	expense.c:1472: warning: passing argument 1 of 'make_menu' from incompatible pointer type
	expense.c:1473: warning: passing argument 1 of 'make_menu' from incompatible pointer type

2009-05-06  author  <author@hostname>

	* prefs.c, print.c, restore_gui.c, todo_gui.c, utils.c, weekview_gui.c, address_gui.c, datebook_gui.c, install_gui.c, jpilot-dump.c, jpilot.c, libplugin.c, memo_gui.c, monthview_gui.c, otherconv.c, plugins.c:
	fix warning: old-style function definition

	* KeyRing/keyring.c, Expense/expense.c:
	fix warning: initialization discards qualifiers from pointer target type

	* libplugin.h, log.c, log.h:
	fix warning: passing argument 2 of 'jp_logf' discards qualifiers from
	pointer target type

	* libplugin.h:
	libplugin.h:315: warning: redundant redeclaration of 'dialog_save_changed_record'
	libplugin.h:303: warning: previous declaration of 'dialog_save_changed_record' was here

	* Expense/expense.c, KeyRing/keyring.c, libplugin.h, prefs.h, utils.h:
	correct warning: function declaration isn't a prototype

	* KeyRing/keyring.c, libplugin.h, utils.c:
	Simplify KeyRing host/Palm string handling.

	KeyRing now translates strings from Palm to host character set at the
	"boundaries" of the application.  In other words, it only translates once
	when reading from a Palm file and once more when it writes back to a Palm
	file.  This matches the behavior of the other applications and also yields
	a performance benefit as unnecessary conversions are eliminated.

	Export of KeyRing data, which motivated this patch, is now correctly in
	the host character set.

	* KeyRing/keyring.c:
	Reverse previous patch to convert strings to UTF8 for keyring export

	* po/fr.po: translate 2 strings

	* KeyRing/keyring.c:
	export the strings in UTF-8 instead of Palm encoding

2009-05-04  author  <author@hostname>

	* KeyRing/keyring.c, prefs.c, prefs.h:
	Add export functionality to Keyring

	Add new preference for keyring export filename.

	Thanks to David Gibson for initial patchset.

	* todo_gui.c:
	Replace tabs with spaces.  Eliminate inconsistent indentation based on user's tabstop value

2009-05-01  author  <author@hostname>

	* address_gui.c: Remove excess blank newlines from VCARD export

	* address_gui.c: Add VCARD support for IM, Birthday, Website fields

	Thanks to David Gibson for patch.

2009-04-27  author  <author@hostname>

	* otherconv.c:
	Clear compiler warning about possible uninitialized variable

	* memo.c: Fix compiler warning about unused variable

2009-04-26  author  <author@hostname>

	* po/fr.po: translate strings from pidfile.c

	* po/POTFILES.in: add pidfile.c

2009-04-25  author  <author@hostname>

	* address_gui.c:
	remove extra category name when exporting in vCard format.

	Closes Ubuntu bug 366543
	https://bugs.launchpad.net/ubuntu/+source/jpilot/+bug/366543

2009-03-20  author  <author@hostname>

	* otherconv.c: disable debug

	* otherconv.c:
	UTF_to_other(): replace unconvertible characters by '?' instead of
	truncating the string.

	Closes Debian bug #520135

2009-03-15  author  <author@hostname>

	* address_gui.c:
	make_phone_menu(): do not convert to UTF-8 since it is already converted

	Closes Debian bug #519120

2009-02-22  author  <author@hostname>

	* jp-contact.c: Patch from Nicholas piper for buffer overflow

2009-02-16  author  <author@hostname>

	* configure.in: Reset version string to CVS numbering 1.7.0

2009-02-15  author  <author@hostname>

	* configure.in: version 1.6.2 for release

	* libplugin.c:
	libplugin.c:376: warning: ‘unique_id’ may be used uninitialized in this function
	libplugin.c:375: warning: ‘attrib’ may be used uninitialized in this function
	libplugin.c:371: warning: ‘next_offset’ may be used uninitialized in this function

2009-02-14  author  <author@hostname>

	* jpilot-dump.c, jpilot-sync.c, jpilot.c, prefs.c:
	move t_fmt_ampm in prefs.c only

2009-02-09  author  <author@hostname>

	* jp-contact.c, sync.c:
	Fix bug in Contact sync where records created on the Palm could not be
	deleted or modified because they did not match the record in Jpilot

	Source of problem is an undocumented 4bit field in the packed Contacts
	structure.  Jpilot does not use it and it is unknown what its function is.
	For comparison purposes the field is masked off to zero which is what
	Jpilot uses.

2009-02-02  author  <author@hostname>

	* address_gui.c: Fix inability to add photos after a sync process.

	SIGCHLD handler set by sync process was interfering with return value of
	pclose.

	* jp-contact.c, jp-pi-contact.h: Adjust comments and format code

	* jp-contact.c: Fix Bugzilla 1973 : Segfault while editing Contacts

	Any time a Contact with a picture is edited there is a potential segmentation
	fault.  Without this patch the segmentation faults are so frequent that
	the Contact App is unusable.

2009-02-01  author  <author@hostname>

	* sync.c: Fix bug for syncing of simultaneously modified Contacts

	Contacts which were simultaneously(on Jpilot and the Palm) modified to the
	same value were incorrectly reported as being different and causing
	duplicate entries.

2009-01-26  author  <author@hostname>

	* memo.c:
	Fix bug 1974 where Memos database is not sorted alphabetically

2009-01-22  author  <author@hostname>

	* Expense/expense.c, prefs.c, prefs.h:
	Add sortable columns feature to Expense plugin

	* category.c: Display correct record count when deleting categories.

	* utils.c: Update jpilot copyright to include 2009

	* Expense/expense.c, jpilot.c, utils.h: Overhaul Expense Plugin

	Code now uses common category menu generation code from utils.c
	Categories now alphabetized
	Categories are cycled if the plugin is repeatedly entered via a function key
	Removed edit category button and 'Category:' label in favor of single
	category menu bar as in the other apps
	Plugin version code updated to compile cleanly on Macs

2009-01-19  author  <author@hostname>

	* KeyRing/keyring.c, address_gui.c, memo_gui.c, todo_gui.c:
	Fix subtle bug where Unfiled category on left hand-side of window was
	not reflected in the right-hand side of window
	Introduced extra utility function to clean up menu code

2009-01-18  author  <author@hostname>

	* KeyRing/keyring.c, address_gui.c, datebook_gui.c, memo_gui.c, todo_gui.c, utils.c, utils.h:
	Fix Bugzilla 1965, add a cancel button to save changed record dialog

	Expense plugin was not patched since it differs significantly from the
	4 main apps.
	It is not possible to implement a 'cancel' feature when the category
	is cyled via one of the four main application buttons.

2009-01-17  author  <author@hostname>

	* KeyRing/keyring.c, SyncTime/synctime.c:
	do not call plugin_get_name() from inside the plugin itself. On Mac OS X
	the linker uses the first plugin_get_name() symbol found (from Expense
	plugin)
	+ some minor improvements

2009-01-16  author  <author@hostname>

	* Expense/expense.c: Help menu now displays version (About->Expense)

	* SyncTime/synctime.c: Version bumped from 0.99 to 1.0
	Version now displayed in help menu (About->Synctime)

	* KeyRing/README, KeyRing/keyring.c: Overhaul of Keyring

	Eliminated private functions for creating menus in favor of common ones in utils.c
	Categories are now sorted
	Variable names synchronized to resemble the code of the other 4 palm apps
	Version bumped from 0.99 to 1.1
	Version string is now displayed in the help menu (About->KeyRing)
	README updated to reflect the use of libgcrypt or openssl

	* prefs.c:
	Resolve Bugzilla 1967 by hiding internal variable in .jpilotrc

2009-01-14  author  <author@hostname>

	* print_gui.c:
	Reverse Cancel and Print buttons to follow ordinary convention that the default is on the far right.

	* print_headers.c:
	Fix Bugzilla 1972 where small calendars were not printed in correct location occasionally for the month of February

2009-01-11  author  <author@hostname>

	* configure.in:
	add a --with-openssl option to disable GNU libgcrypt even if installed
	Closes bug #1970

2008-12-30  author  <author@hostname>

	* jpilotrc.blue, jpilotrc.purple, jpilotrc.steel:
	Fix background of directory and file choosers in GtkFileSelection to match color scheme

2008-12-27  author  <author@hostname>

	* import_gui.c:
	Fix Bugzilla 1966, segfault on CSV import if null fields are not enclosed in double quotes

2008-12-23  author  <author@hostname>

	* address_gui.c:
	Fix Note and Quickview tab to have the same border margin

	* todo_gui.c:
	Fix last check-in so that scrollbars automatically appear/disappear as necessary

	* datebook_gui.c:
	Remove unnecessary space between function name and parentheses which starts variable list.

2008-12-19  author  <author@hostname>

	* configure.in:
	Change version number to 1.7 (developmental release) so that any builds done with CVS code will properly show that unreleased code is being used

	* datebook_gui.c, todo_gui.c:
	Change scrollbar policy to display only when needed.  Paned windows make the scrollbars unnecessary clutter most of the time.

	* todo_gui.c:
	Add Note field header on pane dividing Description and Note fields

2008-12-17  author  <author@hostname>

	* prefs.c, prefs.h, todo_gui.c:
	Use a pane instead of a static box for todo description and note

	* todo_gui.c: todo_gui(): remove useless gtk_hbox

	* address_gui.c, datebook_gui.c, todo_gui.c:
	do not set a minimum size for a widget when not needed

2008-12-16  author  <author@hostname>

	* datebook_gui.c:
	datebook_gui(): do not use a ridiculously small minimal size for todo
	list

2008-12-15  author  <author@hostname>

	* jpilot.c: The payback program has been cancelled for a long time now

	* ChangeLog: update for version 1.6.1

	* configure.in: changed release to version 1.6.1

	* Makefile.am: fixed changelog email addresses

2008-12-13  author  <author@hostname>

	* sync.c: add missing {}

	* sync.c:
	Implement a true comparison routine for Contact records in sync process

2008-12-12  author  <author@hostname>

	* jpilot.c: main(): initialise ret variable
	jpilot.c:1500: warning: ‘ret’ may be used uninitialized in this function

	* jpilot.c:
	cb_private(): do not ask for the password again if the password dialog is canceled

	* po/fr.po: translate 1 string

2008-12-09  author  <author@hostname>

	* jpilotrc.blue, jpilotrc.green, jpilotrc.purple, jpilotrc.steel:
	GTK 2.12 changed named of tooltip widget which invalidated part of color rc file making tooltips invisible.  Change selector in rc file to be broader and capture both GTK2.12 widgets as well as those in earlier GTK2 versions.

	* address_gui.c:
	After changing category of address book the default focus is now on the
	quick find entry widget.  This matches the behavior of what happens when
	a user cycles through categories using the AddressBook icon on the left-
	hand side.

2008-12-08  author  <author@hostname>

	* jpilotrc.blue, jpilotrc.purple, jpilotrc.steel:
	Updated rc color files for latest GTK 2.12 so that color of days in
	calendar widget is correct.
	Removed references to GTK 1.X in color files as jpilot is now a GTK2 app.

2008-11-30  author  <author@hostname>

	* datebook_gui.c:
	Invalid appointments, such as repeat weekly events without any day selected,
	raise a warning message but erroneously allowed the appt to be created
	anyways.  Patch stops that behavior and prevents invalid appts from being
	created.

2008-11-29  author  <author@hostname>

	* datebook_gui.c:
	Single events do not have valid data in the repeat-event section of data
	structures when an export to CSV is done. This patch simply puts in blank
	data, zeroes, for those repeat fields when the event does not repeat.

2008-11-22  author  <author@hostname>

	* KeyRing/keyring.c:
	cb_date_button(): update the date button only if jp_cal_dialog() returns
	CAL_DONE

	* KeyRing/keyring.c:
	cb_date_button(): if the date was set to an invalid value we use the
	date of today

	also avoids a runtime error:
	Gtk-CRITICAL **: gtk_calendar_select_month: assertion `month <= 11' failed

	* KeyRing/keyring.c:
	pack_KeyRing(): use a temporay buffer since overlapping buffers are not
	allowed by libgcrypt

	* configure.in:
	display cryptographic library name used (none, libgcrypt or OpenSSL)

2008-10-30  author  <author@hostname>

	* address_gui.c, memo_gui.c, todo_gui.c: improve previous patch

	* address_gui.c, memo_gui.c, todo_gui.c, utils.c:
	correctly select the Unfield menu entry when cycling the categories

	* po/fr.po: correct fields order

2008-10-20  author  <author@hostname>

	* alarms.c: Remove temporary debug code accidentally checked in

	* configure.in: Change comment to more standard English phrasing

	* alarms.c, utils.c:
	Fix several corner cases in alarm code which caused unnecessary
	retriggering of alarms.

2008-10-19  author  <author@hostname>

	* KeyRing/Makefile.am:
	use @OPENSSL_LIBS@ @LIBGCRYPT_LIBS@ instead of a hardcoded -lcrypto

	* configure.in: use AM_PATH_LIBGCRYPT to detect libgcrypt
	define HAVE_LIBGCRYPT if libgcrypt is found
	define OPENSSL_LIBS to the correct lib

	* KeyRing/keyring.c: unpack_KeyRing(): debug decryption

	* KeyRing/keyring.c:
	plugin_gui_cleanup(): only store the time if the plugin was active.

	If the keyring plugin is active and a synch is performed then
	plugin_gui_cleanup() is called. If the keyring plugin is called again
	then plugin_gui_cleanup() is called again just before plugin_gui() is
	called so the time difference is always < PLUGIN_MAX_INACTIVE_TIME and
	no password is requested.

	* KeyRing/keyring.c, configure.in: add support of libgcrypt

	libgcrypt is LGPL licenced so no problem to use it with a
	GPL code. This is not the case with OpenSSL.

2008-09-21  author  <author@hostname>

	* utils.c: Silence compiler warning about uninitialized variable use

	* address_gui.c, datebook_gui.c, todo_gui.c, utils.c, utils.h:
	Fix Bug 1536: Incorrect characters in LDIF export

	1) Use GTK for palm character set to UTF-8 conversion rather than assuming
	   ISO-8859-1.
	2) Recode base64 encoding routine to follow correct RFC algorithm

2008-09-03  author  <author@hostname>

	* configure.in: convert in UTF-8

	* po/fr.po: update

	* otherconv.c: declare oc_strnlen() to avoid:
	otherconv.o: In function `other_to_UTF':
	otherconv.c:183: undefined reference to `oc_strnlen'
	otherconv.c:212: undefined reference to `oc_strnlen'
	otherconv.o: In function `UTF_to_other':
	otherconv.c:265: undefined reference to `oc_strnlen'

2008-09-02  author  <author@hostname>

	* address_gui.c, datebook_gui.c, jpilot-dump.c, utils.c:
	Overhaul of ical export code.

	Fix Bug1678, incorrect truncation in middle of UTF-8 character
	Fix VCARD/ical export to use CRLF as end-of-line as called for in RFC
	Ensure RFC maximum line length of 75 is obeyed

2008-08-26  author  <author@hostname>

	* address.c, address_gui.c, contact.c, datebook.c, datebook_gui.c, import_gui.c, jpilot.c, memo.c, memo_gui.c, otherconv.c, todo.c, todo_gui.c, utils.c:
	Optimizations to character set conversion routines derived from
	code profiling.

2008-08-16  author  <author@hostname>

	* datebook_gui.c:
	Fix bug where changing calendar date on a modified record and clicking yes
	to save changes did not update calendar to newly selected date.

2008-08-14  author  <author@hostname>

	* datebook_gui.c, jpilot-dump.c:
	Fix ical export format for repeating events where last occurrence of event was not included

2008-08-06  author  <author@hostname>

	* po/zh_CN.po: patch from Fedora
	http://cvs.fedoraproject.org/viewcvs/devel/jpilot/jpilot-0.99.9-trans.patch?view=markup

	* plugins.c: increase line[] buffer

	Patch from Fedora
	http://cvs.fedoraproject.org/viewcvs/devel/jpilot/jpilot-0.99.8-overfl.patch?view=markup

2008-06-23  author  <author@hostname>

	* configure.in:
	Check for required headers for flock at configuration, rather than compilation, if option has been specified

	* alarms.c, datebook_gui.c, install_user.c, print_gui.c, sync.c, utils.c:
	Change a few messages so that existing translation strings can be re-used.  Reduces the absolute number of translations required and hence the i18n effort.

2008-06-20  author  <author@hostname>

	* address.c, contact.c, datebook.c, memo.c, otherconv.c, prefs.c, todo.c, utils.c:
	Performance improvements suggested by code profiling

	Inlined a few simple functions.
	Moved function calls to get_pref outside of loop since value returned was static for the entire loop run.
	Recoded oc_strnlen to be a thin inline function over library call.

2008-06-19  author  <author@hostname>

	* address.c, address_gui.c, alarms.c, category.c, contact.c, cp1250.c, cp1250.h, dat.c, datebook.c, datebook_gui.c, dialer.c, export_gui.c, font.c, import_gui.c, install_gui.c, install_user.c, japanese.c, jpilot-dump.c, jpilot-sync.c, jpilot.c, libplugin.c, log.c, memo.c, memo_gui.c, monthview_gui.c, otherconv.c, password.c, pidfile.c, plugins.c, plugins.h, prefs.c, prefs.h, prefs_gui.c, print.c, print_gui.c, print_headers.c, print_logo.c, restore_gui.c, russian.c, search_gui.c, sync.c, todo.c, todo_gui.c, utils.c, utils.h, weekview_gui.c:
	Code cleanup for readability/maintainability

	-Section breaks between major code blocks
	-common naming conventions across files where possible
	-remove unnecessary #includes
	-remove unused #defines
	-common file name syntax, jpilot.xxx, for files in .jpilot directory
	-for files with large lists of functions, alphabetize lists as  practical organizational strategy

2008-06-18  author  <author@hostname>

	* Expense/expense.c, KeyRing/keyring.c, SyncTime/synctime.c:
	Include help strings from plugins in i18n translation

2008-06-15  author  <author@hostname>

	* address_gui.c, memo_gui.c, todo_gui.c:
	Always place reserved 'Unfiled' category at end of category list rather than in alphabetical position somewhere in the list.
	This matches Palm HW and Palm SW behavior.

	* sync.c:
	Forked sync process must return via '_exit' call rather than 'return' from subroutine.

	* print.c: Change month printing label to remove unnecessary comma

	* monthview_gui.c, weekview_gui.c:
	Clean up variable names and add section breaks to code

	* Expense/expense.c, address_gui.c, datebook_gui.c, monthview_gui.c, todo_gui.c, weekview_gui.c:
	Standardize names for textview widgets and buffers

2008-06-14  author  <author@hostname>

	* address_gui.c: Finish patch to remove GTK 1.x macro calls

	* address_gui.c: Remove macros implementing deprecated GTK1.x calls

2008-06-13  author  <author@hostname>

	* sync.c:
	Change ordering of constant in if expression to make it clearer what test is being performed

2008-06-11  author  <author@hostname>

	* utils.c:
	delete_pc_record(): convert description and note from J-Pilot to Palm
	encoding
	Closes: 1926: It is not possible to remove a datebook record containing
	non-ASCII characters

	* utils.c: remove an extra ", " in a debug log

	* sync.c: activate locking code

	* sync.c: debug locking code

	* utils.c: Do not use flock if USE_FLOCK is not defined.
	Closes 1925: 1.6.0 has compile error on Solaris - utils.c uses flock
	which is not available

	* jpilot.c: cb_sync(): do not fork on Mac OS X.
	Solves bug 1924: JPilot crashes on MacOS X

2008-06-09  author  <author@hostname>

	* utils.c: Fix compiler warning properly around ivalue in utils.c

	* configure.in: Eliminate unnecessary macros in configure.in

	* configure.in, i18n.h:
	Check for locale.h during configure as it is required by gettext.h to implement context-sensitive messages.

	* utils.c:
	Correct undeclared ivalue introduced during pref_memo32 check-in

	* jpilot.c: Correct some indentation around #ifdefs

	* memo.c, memo_gui.c, prefs.c, prefs_gui.c, sync.c, utils.c:
	Switch over obsolete memo32 preferences to using pref_memo_sync and pref_memo_version.

	* pidfile.c, todo_gui.c: Replace deprecated calls to bzero with memset

	* mkinstalldirs:
	Gettext requires mkinstalldirs in source OR a version of automake >= 1.9

2008-06-08  author  <author@hostname>

	* i18n.h:
	check for defined(ENABLE_NLS) instead of defined(HAVE_GETTEXT)
	HAVE_GETTEXT is defined if the system provides gettext but not if
	intl/libintl.a is used (on Mac OS X)

2008-06-07  author  <author@hostname>

	* libplugin.c, sync.c, utils.c:
	Recode sync process for simultaneously (palm and PC) edited records.

	Process now accurately detects whether records have been changed versus the old code which missed 1Byte differences.
	Process is also more robust and produces fewer Sync Conflict messages.

2008-06-06  author  <author@hostname>

	* KeyRing/keyring.c:
	wrap plugin_unpack_cai_from_ai() in a new static function
	keyr_plugin_unpack_cai_from_ai() so that the plugin can call
	keyr_plugin_unpack_cai_from_ai() instead of any
	plugin_unpack_cai_from_ai() found in memory (like the
	plugin_unpack_cai_from_ai() from Expense plugin)

	* KeyRing/keyring.c: plugin_unpack_cai_from_ai(): add a log

	* KeyRing/keyring.c: remove two unused global variables

	* KeyRing/keyring.c:
	declare global variables static to avoid name space pollution

	* SyncTime/synctime.c:
	Clear compiler warning about implicitly defined function

2008-06-04  author  <author@hostname>

	* sync.c:
	Remove "is" to make string resemble others, possibly fewer i18n translations required.

	Extra space on end of string is intentional to match "Fetching... " string and to have a space between the information and the success string "OK"

	* configure.in:
	Fix enable-alarm-shell-danger in configure.in on HEAD branch of CVS

	* configure.in:
	--enable-alarm-shell-danger disabled because of typo in configure.in

	* po/fr.po: translate fuzzy strings

	* sync.c: sync_install(): remove trailing space in log message

	* address_gui.c:
	address_gui(): create the buttons "Dial" and "Mail" with the same width

	* address_gui.c:
	Remove unused code from development of picture interface.

	* address_gui.c:
	Properly line up Dial menus, IM menus, and website button in contacts GUI

	* sync.c:
	Prevent double log messages to GUI and Palm when a file can't be opened.

	Excess warning messages produced when a file, such as ContactsDB-PAdd, doesn't exist.

	* dat.c, datebook_gui.c, prefs_gui.c, sync.c:
	Remove unnecessary spaces at ends of translated strings

	* contact.c, libplugin.c:
	Remove redundant code to get to the start of GList.

	Code had already been removed for all other applications but escaped notice in the new contact.c code.

	* Expense/expense.c: Align "Date:" correctly with spinner boxes

	* jpilot.c: Recode string to reuse exsting i18n translations

2008-06-03  author  <author@hostname>

	* prefs_gui.c:
	correct spacing using gtk_table_set_col_spacings() instead of extra " "
	characters

	* i18n.h: define N_(str) also if HAVE_GETTEXT is not defined

	* prefs_gui.c:
	Improve appearance of Settings tab in preferences by adding some space between label and widget next to it.

	* prefs_gui.c:
	Make alarm note and description substitution labels insensitive when the feature is disabled in the build.

	* address_gui.c, export_gui.c, memo_gui.c, todo_gui.c, utils.c, utils.h:
	Add "Edit Categories..." item to pulldown category menu.

	Editing categories is now reached through the category menu just as it is on the Palm or the Palm Desktop SW.

	* memo_gui.c, todo_gui.c:
	Use local stack variable rather than malloc in export routine.

	Simpler code and it now matches what is done in datebook_gui.c and address_gui.c

	* prefs_gui.c:
	Reorder Datebook tab in preference GUI so that options are grouped more logically.

	* SyncTime/synctime.c: Clean up synctime code.

	Use standard return values from functions.

	* Expense/expense.c, KeyRing/keyring.c, Makefile.am, address_gui.c, alarms.c, category.c, configure.in, datebook_gui.c, dialer.c, export_gui.c, font.c, import_gui.c, install_gui.c, install_user.c, jpilot-dump.c, jpilot-sync.c, jpilot.c, jpilot.spec.in, log.c, memo_gui.c, monthview_gui.c, otherconv.c, password.c, prefs.c, prefs_gui.c, print_gui.c, restore_gui.c, search_gui.c, stock_buttons.h, sync.c, todo_gui.c, utils.c, utils.h, weekview_gui.c:
	Remove support for GTK1 in Jpilot

	Significant gains in code readability and maintainability.  1500 lines of code no longer required to be maintained.

2008-06-02  author  <author@hostname>

	* KeyRing/Makefile.am, Makefile.am:
	Add gettext.h to exported files so that 'make distcheck' passes.

	* Expense/expense.c: Transition plugins to pilot-link > 0.12.0

	* address.c, address_gui.c, configure.in, contact.c, datebook.c, memo.c, memo_gui.c, password.c, password.h, sync.c, todo.c, todo_gui.c, utils.c, utils.h:
	Complete transition to requiring pilot-link > 0.12.0

	Removed obsolete code to support pilot-link 0.11.8.
	Code base is now smaller, more readable, and easier to maintain.

	* jpilot.c, sync.c:
	Fix bug 1775 regarding unclear message about syncing

	* sync.c: Eliminate double "Sync Anyways" dialog

	* jpilot.c:
	Update user name displayed on jpilot window title if a sync to a new palm changes the name.

	* jpilot.c, monthview_gui.c, weekview_gui.c:
	Fix bug 1783, Week and Month view window sizes not remembered on exit.

	* dat.c, utils.h:
	Eliminate segmentation fault with DAT import when JPILOT_DEBUG is enabled.

	* address_gui.c, datebook_gui.c, memo_gui.c, todo_gui.c, utils.c, utils.h:
	Validate CSV file before importing.

	Fixes bug 1810

	Validation is very cursory.  It merely checks that the header line has the correct number of fields (indicated by commas) as the number of fields that can be imported.  More extensive checking based on version numbers in the header could be done at some point.

	* icons/address.xpm, icons/appl_menu_icons.h, icons/backup.xpm, icons/datebook.xpm, icons/lock_icons.h, icons/memo.xpm, icons/sync.xpm, icons/todo.xpm:
	Transfer icons from hardcode locations in jpilot.c to icons directory

	* Makefile.am, address.xpm, datebook.xpm, font.c, jpilot.c, memo.xpm, todo.xpm:
	Clean jpilot.c code

	1) Removed unused, but cluttering, font code to font.c
	2) Removed inline definition of xpm icons.
	    Icons now reside in icons/ directory and are included with standard #include.
	    Easy to substitute new icons by dropping them into the icons/ directory where they will be built into the application
	3) Removed unused #include directives

	* icons/jpilot-icon2.xpm:
	Convert jpilot-icon2 to look like all the others

	* address_gui.c, datebook_gui.c, export_gui.c, import_gui.c, jpilot.c, libplugin.c, memo_gui.c, prefs_gui.c, print_gui.c, restore_gui.c, todo_gui.c, utils.c:
	Revise strings for i18n usage

	1) Don't translate strings which are only used for debugging
	2) Make single strings for translation of one sentence rather than
	   building strings through concatenation
	3) Use the same string for the same idea so only one translation is made
	4) Added translation markup for Payback window, import/export file types

2008-06-01  author  <author@hostname>

	* i18n.h: Addendum to gettext-0.16.1 conversion

	* prefs_gui.c:
	Fix bug1778 (i18n requiring different translation based on context)

	* ABOUT-NLS, configure.in, gettext.h, i18n.h, m4/codeset.m4, m4/gettext.m4, m4/inttypes-pri.m4, m4/inttypes_h.m4, m4/lib-link.m4, m4/lib-prefix.m4, m4/stdint_h.m4, m4/ulonglong.m4, po/ChangeLog:
	Upgrade package to gettext-0.16.1

	Newer gettext allows context-sensitive messages.

	* KeyRing/README, KeyRing/README.txt:
	Change filename README.txt over to README which is GNU autotools standard

	Updated README text as well.

	* KeyRing/keyring.c:
	Code to allow keyring plugin to follow category changes on the Palm.

	Fixes Bug 1412.

	KeyRing uses a non-standard size CategoryAppInfo structure (2 bytes shorter than what pilot-link uses) and so a specialized version of pack/unpack_CategoryAppInfo was written.

	* TODO: Delete items already completed in TODO file

	* BUGS, Expense/expense.c, address_gui.c, category.c, jpilot.c, memo_gui.c, sync.c, todo_gui.c, utils.h:
	Major overhaul of category syncing logic

	Fixes Bugzilla 1563 (Inconsistent categories between palm and Jpilot)
	Fixes Bugzilla 1570 (First hot-sync changes address categories)

	Reverse engineered Palm category syncing logic by comparing Jpilot behavior
	to Palm Desktop behavior.  Discovered many undocumented features now
	included in code (mostly sync.c).

	Discovered bug in unpack_CategoryAppInfo (filed as 1912) and placed a
	workaround in Jpilot code.  See unpack_memo_cai_from_ai.

	* autogen.sh: Eliminate redundant call to aclocal in build scripts

	* configure.in: Bump version to a developmental number (1.7)

	Bug reports, etc., from users building from CVS will now
	indicate by version number that they are using unreleased code.

2008-05-25  author  <author@hostname>

	* configure.in: Changed to version 1.6.0

	* SlackBuild.in: added new empty databases

	* Expense/expense.c, KeyRing/keyring.c, address_gui.c, datebook_gui.c, install_gui.c, memo_gui.c, todo_gui.c:
	Mac OS X only: improve performances of the clist clearing hack

	* Expense/expense.c, KeyRing/keyring.c, address_gui.c, datebook_gui.c, memo_gui.c, todo_gui.c:
	Mac OS X only: hack to erase a clist before displaying it again

2008-05-24  author  <author@hostname>

	* todo_gui.c:
	Eliminate seg fault in export when note field is longer than description field

2008-05-23  author  <author@hostname>

	* configure.in:
	Place message about stock buttons in configure summary.  Raises the visibility of the option so users can know and decide whether to turn it on or off

2008-05-21  author  <author@hostname>

	* po/fr.po: translate strings

	* memo_gui.c: cb_memo_export_ok(): i18n "Yes" and "No"

	* address_gui.c: cb_addr_export_ok(): i18n the format "%s: "

	* datebook_gui.c: datebook_to_text(): i18n the Repeat Type string

	* datebook_gui.c:
	datebook_to_text(): split a i18n string to avoid text duplication

2008-05-17  author  <author@hostname>

	* po/ca.po, po/cs.po, po/es.po, po/fr.po, po/it.po, po/nl.po, po/tr.po:
	updated from translation project

2008-05-15  author  <author@hostname>

	* configure.in: stock buttons enabled by derfault

2008-05-14  author  <author@hostname>

	* jpilot.c: get_inline_pixbuf_data(): use gdk_pixbuf_unref() instead of
	g_object_unref() to release a gdk_pixbuf_new_from_xpm_data()

	* configure.in: Update version to pre4

	Remove last bits of configuration code for pilot-link versions before 0.12.0

	* address.c, address_gui.c, contact.c, prefs.c:
	Expand on segfault fix for search gui during sorting.

	Problem was not just that case statement needed a default clause but that
	addr_sort_order was not initialized properly.

	* contact.c:
	contact_compare(): initialise sort_idx[] to sane default values. Avoid a
	crash when using the search function

2008-05-10  author  <author@hostname>

	* todo_gui.c: cb_todo_export_ok(): initialize variable to NULL

	todo_gui.c:632: warning: ‘now’ may be used uninitialized in this function

	* todo_gui.c: comment out unused/deactivated category edition code

	todo_gui.c:2034: warning: unused variable ‘button’
	todo_gui.c:1281: warning: ‘cb_edit_cats’ defined but not used

	* memo_gui.c: Comment out unused category edition code

	memo_gui.c:1445: warning: unused variable ‘button’
	memo_gui.c:980: warning: ‘cb_edit_cats’ defined but not used

	* address_gui.c: comment out two unused functions

	address_gui.c:2249: warning: ‘cb_edit_cats_address’ defined but not used
	address_gui.c:2289: warning: ‘cb_edit_cats_category’ defined but not used

	* datebook_gui.c:
	cb_delete_appt(): remove the write_type variable and avoid a compiler
	warning

	datebook_gui.c:2845: warning: ‘write_type’ may be used uninitialized in
	this function

	* address_gui.c: comment out unused cb_edit_cats() function

	address_gui.c:2336: warning: ‘cb_edit_cats’ defined but not used

	* datebook_gui.c: appt_export_ok(): initialize variable now

	datebook_gui.c:688: warning: ‘now’ may be used uninitialized in this function

2008-05-08  author  <author@hostname>

	* address_gui.c, memo_gui.c, todo_gui.c:
	Temporarily remove button to edit categories for 4 main apps

	PDAs are for saving data and time.  Unfortunately the category sync code often loses data and results in lost time trying to recreate the original database.  The simplest remedy is not to offer the edit category button and have users change categories on the Palm.

	I have not changed libplugin.c so there is still a backdoor by which plugins like Expense can use the faulty code.

	* Expense/expense.c: use _() instead of gettext()

	expense.c:1313: warning: incompatible implicit declaration of built-in
	function 'gettext'

2008-05-07  author  <author@hostname>

	* utils.c: Fix compilation for GTK < 2.10 reported on message boards

2008-05-06  author  <author@hostname>

	* KeyRing/keyring.c, otherconv.c, password.c, utils.c:
	Eliminate all compiler warnings for 1.6 release

2008-05-05  author  <author@hostname>

	* address_gui.c, todo_gui.c:
	Remove use of strptime for CSV import because the function is not very portable across platforms.

	* po/.cvsignore: Ignore auto-generated Makefile.in.in

	* po/jpilot.pot:
	Regenerated for 1.6 release.  This file should possibly be removed from CVS and autogenerated by the user

	* po/Makefile.in.in:
	Makefile.in.in should be provided by gettext or intltool package

	* address_gui.c, print.c: Eliminate some compile warnings

	* configure.in:
	Configure script now requires pilot-link > 0.12.0 to build

2008-05-03  author  <author@hostname>

	* print.c: Fixed stack smashing bug in printing

	* prefs_gui.c: Fixed Palm OS version number to have new databases.
	I'm not 100% sure about this.  I seem to remember a 5.4 device without
	the new apps.

	* sync.c:
	Should fix bug 1918 - A Contacts database with a "version 10" appinfo
	structure is in the empty directory and I believe most Palms have version 11.

	The T/Es have a version 10.

	An app info struct that was too short (version 10 size) was being written
	to the Palm and would cause it to need to be hard reset.

	I tested this with my Treo 680, however I did not test it before I made this
	change to verify the need to hard reset.

	We might want to have a version 11 database in the empty directory, but I
	want to test this fix with a version 10.

	* po/zh_TW.po, po/fr.po, po/de.po, po/ru.po, po/pt_BR.po, po/nl.po, po/nb.po, po/ko.po, po/ja.po, po/it.po, po/vi.po:
	updated from the translation project

	* configure.in: updated to version 1.6.0-pre2

	* Makefile.am: Added po/jpilot.pot to EXTRA_DIST

	* monthview_gui.c, weekview_gui.c:
	revert previous patch for yellow/white today

2008-05-02  author  <author@hostname>

	* monthview_gui.c, weekview_gui.c: patch for making today white/yellow

	* sync.c: minor format change and comments

	* configure.in: updated version

	* address_gui.c, prefs.c, prefs.h:
	Allow for a resizable name column whose width is remembered.

2008-05-01  author  <author@hostname>

	* address_gui.c:
	Fix bug where first name, last name, and company were required to fit in 30 characters in clist

	* jp-contact.c, jp-pi-contact.h:
	Visual clean up of jp-contact.c, jp-pi-contact.h

	Indentation, correct comments, use standard variable names and return values

	* address_gui.c: Plug memory leak in contact category editing

	* todo_gui.c: Eliminate redundant function call

	* datebook_gui.c:
	Revise datebook_update_clist function to look like the other 3 applications

	* address_gui.c, memo_gui.c:
	Fix bug where export caused clist_row_selected to be altered for the original clist

	* address_gui.c:
	Fix out-of-bounds memory dereference affecting photo code

	* plugins.c: Plug memory leaks for plugins during syncs

2008-04-30  author  <author@hostname>

	* address_gui.c: Plug memory leaks with photo code for Contacts

	* address_gui.c, datebook_gui.c, jp-contact.c, memo_gui.c, todo_gui.c:
	Plug memory leaks in contacts and import code

2008-04-29  author  <author@hostname>

	* address_gui.c:
	Fix return/shift-return key strokes to move between left and right-hand side of Jpilot Address GUI

	* address_gui.c: Clean code up with more meaningful #defines

	* address_gui.c:
	Reorder phone buttons to display them as the Palm Desktop does.

	The Palm SW has the phone menus in one order but actually displays the phone buttons in another.  This actually enhances usability because they have demoted Fax and promoted E-mail and Mobile which people use more frequently today.

	* address_gui.c, datebook_gui.c, todo_gui.c, utils.c, utils.h:
	Eliminate hack to put pixmap in clist column titles

	* address.c, address.h, address_gui.c, contact.c, prefs.c, prefs.h, print.c:
	Add ability to sort addresses by first name, last name, or company as the Palm Desktop software does

2008-04-28  author  <author@hostname>

	* address.h:
	Add extra #define to help make address_gui code more readable

	* address_gui.c: Contact code cleanup

	1) Eliminated unnecessary routines
	2) Replaced hardcoded numbers with #defines
	3) Clear contact routine update so information such as the picture or birthday field isn't leaked when masking is on.

2008-04-27  author  <author@hostname>

	* import_gui.c: Quit import dialog after a successful import

	It is more natural after selecting import all for the user to be returned to Jpilot rather than returning to the file selection dialog to possibly import another file.

	* export_gui.c: Identify export window as belonging to Jpilot

	All other popup windows have Jpilot in the title to help the user, via the window manager, identify which windows belong to the same application.

	* address_gui.c, memo_gui.c:
	Hide DAT/ABA import button for Contact and Memos import since it is not currently supported

	* utils.c: Undo checkins 1.140, 1.141

	CLIST widget is so old and deprecated that it causes problems with the
	pointer focus in GTK/GDK that I can't resolve.

	After a change/save dialog the user must click on the Jpilot application
	to re-activate the window and give pointer focus back to Jpilot.

2008-04-26  author  <author@hostname>

	* address_gui.c:
	Default birthday reminder to value of TODO_DAYS_TILL_DUE rather than the empty string

	* memo_gui.c:
	Export now prints out which database, Memo or Memos, was exported.

	* utils.c: Eliminate compiler warning for pointer focus bug fix

	* utils.c:
	Fix bug where pointer focus was not returned to Jpilot after save/change dialog and required an extra mouse click to re-activate application

	* datebook_gui.c, memo_gui.c, todo_gui.c:
	Instrument code for switching between old and new versions of Palm databases

	* address_gui.c: Export Birthday Reminder Advance for CSV exports

	CSV can now be used to export/import data to contacts database without loss.

2008-04-25  author  <author@hostname>

	* address_gui.c:
	Fix bug where reminder field of birthday was not cleared when moving between rows in clist

	* address_gui.c, datebook_gui.c, memo_gui.c, todo_gui.c:
	i18n for text type exports

	TEXT export messages are now translated to the current locale.

	* address_gui.c, datebook_gui.c, memo_gui.c, todo_gui.c:
	Overhaul of import code remove cruft

	Highlights
	1) Consistent naming convention using cb_ for callback routines
	2) ToDo CSV import now correctly handles completed todos

	* address_gui.c:
	Fix bug where TEXT type exports did not include the Birthday field

2008-04-24  author  <author@hostname>

	* address_gui.c, datebook_gui.c, memo_gui.c, todo_gui.c:
	Redrafted export code

	1) All export code now uses similar style.
	2) Jpilot version is placed in export files.  This could be used in the
	   future on the import side to determine compatibility.
	3) All category names are UTF converted.

	* address.h, address_gui.c, contact.c, search_gui.c:
	Rename jp_free_ContactList to free_ContactList because it is not a true jp_ namespace function

	* jp-pi-contact.h:
	Replace tabs with spaces so file pretty prints without respect to user tab spacing

	* address_gui.c: Fix Bug 1899: CSV import for contacts does not work

	Issues:
	1) The code uses strptime as an inverse for strftime.  This may not
	be available on all platforms or may need a #define to enable it.
	2) The birthday CSV export does not print out the details for the reminder
	   portion of the field.  Thus some data is lost and it is not possible
		to do an export CSV/import CSV and come up with the same palm database.

2008-04-16  author  <author@hostname>

	* jpilot.c:
	Fix bug where hide/show/mask radio button in menu did not follow actual
	state of hidden records IF the padlock button on the left-hand edge
	was used to change state rather than the menu itself.

2008-04-15  author  <author@hostname>

	* sync.c: Fix Bugzilla 1909: Backup does not fully restore palm

	Incorrect logic was eliminating all files with the creator ID psys which
	included psyslaunchDB that holds the user specified application categories.

	A comparison with Palm Desktop shows that it backs up the file
	ConnectionsDB with creator ID modm.  Jpilot was wrongfully excluding modm
	files.

2008-04-03  author  <author@hostname>

	* Expense/expense.c, KeyRing/keyring.c, address_gui.c, datebook_gui.c, install_user.c, prefs_gui.c, print_gui.c, restore_gui.c, utils.c, utils.h:
	Fix Bugzilla 1900 : Copy and Paste into GtkEntry displays garbage for
	newline character.

	Added new routine to utils.c to turn on multiline truncation for GtkEntry
	widgets.  With truncation on, only the first line of input in the paste
	buffer is used by GTK.
	Modified most code locations to turn on the new property.  Exceptions are
	where multiline characters *might* be appropriate such as file save dialogs,
	search gui, password fields, and UNIX commands fields.

2008-03-14  author  <author@hostname>

	* jpilot.c:
	when comparing the command line arguments go up to the final NUL so that
	"-psn_0_290887" is not considered equal to "-p"

2008-02-24  author  <author@hostname>

	* utils.c:
	jp_open_home_file(): do not fail if flock() returns ENOLCK as this may
	happen on some filesystems (encfs for example)

2008-02-10  author  <author@hostname>

	* address_gui.c:
	cb_addr_export_ok(): initialise variables to avoid compiler warnings
	address_gui.c:1180: warning: ‘country_i’ may be used uninitialized in this function
	address_gui.c:1180: warning: ‘zip_i’ may be used uninitialized in this function
	address_gui.c:1180: warning: ‘state_i’ may be used uninitialized in this function
	address_gui.c:1180: warning: ‘city_i’ may be used uninitialized in this function
	address_gui.c:1180: warning: ‘address_i’ may be used uninitialized in this function

	* address_gui.c:
	cb_addr_export_ok(): convert category name to UTF-8 when exporting to
	vCard

	* address_gui.c:
	cb_addr_export_ok(): convert category to UTF-8 when exporting to CSV

	* address_gui.c:
	cb_addr_export_ok(): partly reverse patch 1.160. Do not convert (again) field
	names in UTF-8

2008-02-05  author  <author@hostname>

	* datebook_gui.c:
	This fixes a datebook bug.  If you would create a reoccuring appt, sync,
	then delete one day of it, or modify one occurence only, the record would
	get duplicated at sync time.  This is because the record would get modified
	on the Palm first and then compared to the original, which of course would
	fail.  This bug was not apparent in older code because the record matching
	was turned off.

	* address.h, address_gui.c, print.c, print.h:
	Added printing support for Contacts and fixed for Addresses

2008-01-31  author  <author@hostname>

	* address_gui.c: Added a 1 line header to CSV export

	* memo_gui.c: Fixed editing of categories for MemosDB-PMem

	* address_gui.c: Fixed editing of categories for Contacts

2008-01-29  author  <author@hostname>

	* address_gui.c:
	Moved Note on Address and Contacts to the next to last tab where it used to
	be.

2008-01-27  author  <author@hostname>

	* utils.c:
	Allow switching between old and new palm databases without restarting jpilot

	Switching to new palm databases requires that 4 new pdb files be available
	in the ~/.jpilot directory.  The check for these files was previously
	done only at startup so that changing the preferences would render
	jpilot unusable until the program was restarted.  Now jpilot simply copies
	over templates for both the old and new databases at startup and can
	switch over dynamically.

	* address_gui.c, prefs_gui.c:
	Remove unused variables to clean compiler warnings

	* prefs_gui.c: Added a pulldown menu for serial port setting

2008-01-26  author  <author@hostname>

	* address_gui.c:
	cb_addr_export_ok(): text mode export: convert Category and field names
	in UTF8 since the data itself is also in UTF-8.

	* address_gui.c: Fixed Contact support for exporting as LDIF

	* address_gui.c: Fixed vCard export for Contacts

2008-01-25  author  <author@hostname>

	* search_gui.c: Added support for Contacts

	* address_gui.c:
	remove label for note textview since its on its own notebook page

2008-01-23  author  <author@hostname>

	* address_gui.c:
	contact_to_gstring(): do not UTF8-convert an already converted field

	* address_gui.c:
	Put the Notes in Contacts on its own notebook page so its large.
	Added a scrollbar type to schema and used it to add a scrollbar to notes.

2008-01-22  author  <author@hostname>

	* address_gui.c: Fixed Export of Text, and CSV for Contacts.
	Output formats may change.
	VCard, and Ldif still need done.

2008-01-19  author  <author@hostname>

	* address_gui.c:
	contact_to_gstring() and make_phone_menu(): convert field names in UTF-8

2008-01-13  author  <author@hostname>

	* install_user.c:
	install_user.c:81: warning: format ‘%ld’ expects type ‘long int *’, but
	argument 3 has type ‘long unsigned int *’

	* prefs.c: prefs.c:183:31: warning: unknown escape sequence '\%'

	* prefs.c: prefs.c:102: warning: missing initializer

	* datebook_gui.c, memo_gui.c, prefs_gui.c:
	remove some warning: nested extern declaration of ...

	* todo_gui.c: movetwo extern declarations outside of a function
	todo_gui.c:2008: warning: nested extern declaration of ‘glob_date_label’
	todo_gui.c:2009: warning: nested extern declaration of ‘glob_date_timer_tag’

	* otherconv.c:
	UTF_to_other(): correctly check the returned value of g_iconv() in case
	of error.
	otherconv.c:272: warning: comparison of unsigned expression < 0 is
	always false

	* jp-contact.c: jp_unpack_ContactAppInfo(): comment out unused variable

	* address.h: rename free_ContactList() -> jp_free_ContactList()
	address_gui.c:1244: warning: implicit declaration of function
	‘jp_free_ContactList’

	* jp-contact.c:
	jp_pack_ContactAppInfo(): return -1 instead of an uninitialised value in
	case of error
	jp-contact.c:543: warning: ‘i’ is used uninitialized in this function

	* utils.c: Blank ContactDB not being copied correctly.

	A new user (no sync) has the initial database files copied from the files
	in /usr/share/jpilot.  The code to do the copying was writing an extra
	EOF character at the end of the file so the two files were not identical.
	This caused no problems with the old databases but was causing a problem
	with the new Contacts database.

	The old code for copying files may appear elsewhere in the code and
	be causing unspecified errors.

	* address_gui.c:
	addr_clear_details(): delete the contact picture if any.
	Before the patch the creation of a new record inherited the contact
	picture

	* sync.c:
	pack_contact_cai_into_ai(): store the returned value of pi_buffer_new()
	in pi_buf instead of throwing it away and using a non initialised pi_buf

2008-01-02  author  <author@hostname>

	* datebook_gui.c:
	datebook_update_clist(): use NULL mask for gtk_clist_set_pixmap() on Mac
	OS X

	* address_gui.c:
	address_update_clist(): use a NULL mask for gtk_clist_set_pixmap() on
	Mac OS X

	* address_gui.c:
	address_gui(): use a NULL mask for gtk_pixmap_new() on Mac OS X

2007-12-18  author  <author@hostname>

	* datebook_gui.c:
	Searches which return datebook events now position the calendar on the next
	occurrence of an event.

	This solves a problem where the pdb database has a repeating event which
	starts on one day but actually has no occurrence on the start date.

	This also changes the UI behavior slightly.  A search for a monthly
	repeating event will now take you to the next occurrence rather than
	the start date of the event which may have been years back.
	This is useful because one is typically concerned with what other
	irregular appts., such as a doctor's visit, might interfere with the
	regularly scheduled appointments.

	The search GUI has not been modified which may be potentially confusing.
	It shows the start date of a repeating appt. but clicking on it will take
	you to a different date than the one shown(i.e., the one closest to the
	present).

	* alarms.c, alarms.h, datebook.c, datebook.h, datebook_gui.c, utils.c, utils.h:
	Moved routines for finding the next occurrence of a repeating event into utils.c where they can be called by other parts of the code more cleanly.

2007-12-15  author  <author@hostname>

	* utils.c: testing cvs

2007-12-13  author  <author@hostname>

	* utils.c: Fix memory leak for pi_buffers when modifying records

	* dat.c:
	Fix DBA import of MonthByDay events where no RepeatDay was being assigned

	* datebook_gui.c:
	Correctly position calendar widget on correct date after adding or modifying a record

	* alarms.c, alarms.h, datebook_gui.c:
	Validate repeating event start dates to prevent problems.

	Users have encountered problems when the start date of a repeating event
	is not, in fact, an actual date on which the event occurs.  For example, the
	search dialog will find an appointment but clicking to go to that day will
	not show anything.  This fix modifies the start date to be a valid one.

2007-12-11  author  <author@hostname>

	* log.c:
	jp_vlogf(): use fopen() instead of jp_open_home_file() but with the
	correct path to have the jpilot.log file in ~/.jpilot/

	* log.c:
	reverse previous patch which caused the log file to be opened in the CWD

	* address_gui.c: Fixed memory leak

2007-11-28  author  <author@hostname>

	* Makefile.am, address_gui.c, contact.c, jp-contact.c, jp-pi-contact.h, sync.c, utils.c:
	Renamed contact code to prevent namespace polution with pilot-link

2007-11-25  author  <author@hostname>

	* log.c:
	jp_vlogf(): do not open jpilot.log using jp_open_home_file() since the
	locking mechanism will prevent any other jpilot execution

	* jpilot.c: call gtk_pixmap_new() with a NULL mask on Mac OS X

	* jpilot.c:
	do not force the size of the 4 main app buttons since the bitmap may be
	truncated

	* todo_gui.c:
	cb_clist_selection(): simulate completion click by clicking the
	"Completed" and "Apply" buttons. Setting the completion date does not
	work and create a conflicting entry.
	See Debian bug #451868 (http://bugs.debian.org/451868)

2007-11-24  author  <author@hostname>

	* todo_gui.c:
	todo_update_clist(): use a NULL mask for gtk_clist_set_pixmap() on Mac
	OS X

	* datebook_gui.c, todo_gui.c:
	datebook_gui(): use a NULL mask for gtk_pixmap_new() on Mac OS X

	* address_gui.c:
	addr_clear_details(): do not call gtk_check_menu_item_set_active() with
	an non-existant Gtk+ menu item

2007-11-23  author  <author@hostname>

	* po/fr.po: update

	* po/jpilot.pot: regenerated

	* prefs_gui.c: remove useless space chars

2007-11-20  author  <author@hostname>

	* address_gui.c:
	cb_clist_selection(): also reset reminder checkbox and value if they are
	not used

	* address_gui.c:
	cb_clist_selection(): clear birthday info if none is set

	* address_gui.c:
	do not convert again to utf8 contact_app_info.labels[] if Contacts
	database (new format) is used

	* address_gui.c: i18n buttons "Change Photo" and "Remove Photo"

	* address_gui.c:
	cb_photo_menu_select(): mark the record as changed if the photo is
	changed

	* sync.c:
	unpack_cai_from_ai() does not return a negative value in case of error
	but return EXIT_SUCCESS (0) or EXIT_FAILURE (1). The test was wrong.

2007-11-07  author  <author@hostname>

	* Makefile.am, jpilot.kdelnk:
	Removed jpilot.kdelnk as it is obsolete in KDE and replaced by jpilot.desktop

	* address_gui.c:
	Restore ability to change categories lost during ContactDB code addition

	* po/fr.po: use infinitive form for Import & Export

	* jpilot.c: Correct highlighting of images on mouseover

	Buttons with embedded pixmaps were showing the highlight color around the pixmap but the back of the pixmap retained the ordinary background color.  Switched to using transparency masks for pixmaps so that highlighted button underneath can show through.

	* sync.c:
	Add a newline for clarity in warning message during sync_install

	* restore_gui.c:
	Removing printf debugging code accidentally included in last checkin

	* restore_gui.c:
	More gracefully handle filenames which are not UTF-8 compliant during restore

	Filenames such as the Manana database with a tilde over the n will not convert
	to utf8 cleanly.  The code now warns users that these databases are not being
	restored so the user can intervene manually.

2007-11-06  author  <author@hostname>

	* memo.c, memo_gui.c, sync.c, utils.c: Fix syncing of Memos database

	* prefs.h: Correct inline documentation about new palm OS prefs

	* empty/CalendarDB-PDat.pdb, empty/ContactsDB-PAdd.pdb, empty/Makefile.am, empty/MemosDB-PMem.pdb, empty/TasksDB-PTod.pdb:
	Add empty databases for new palm applications

	* prefs_gui.c:
	Add preference selection code for choosing new (Palm OS >= 4) databases

	Tasks and Calendar preference support is coded but commented out
	until the core code supports these databases.

2007-11-05  author  <author@hostname>

	* sync.c:
	Add horizontal formatting break in GUI during sync for more readability

	* sync.c:
	Restore category syncing for slow syncs which was lost during contacts DB code changes

2007-11-04  author  <author@hostname>

	* sync.c: fix a crash bug on Mac OS X

	* jpilot.c:
	call gtk_pixmap_new() with NULL instead of mask since that does not work
	for Gtk+ on Mac OS X and the change has no side effect

	* KeyRing/keyring.c:
	keyring.c:1374: warning: implicit declaration of function 'gettext'

	* KeyRing/keyring.c: case insensitive sort

	Thanks to Wolfgang Becker for the patch

	* address_gui.c:
	address_gui.c:3214: warning: nested extern declaration of 'glob_date_label'
	address_gui.c:3215: warning: nested extern declaration of 'glob_date_timer_tag'

2007-11-01  author  <author@hostname>

	* utils.c: dialog_generic(): use _() instead of gettext()

	* utils.c:
	utils.c:254: warning: nested extern declaration of ‘glob_date_label’

	* jpilot.c: only define week_start if needed

	* jpilot.c: change i type from int to unsigned int

	jpilot.c:1496: warning: comparison between signed and unsigned

	* jpilot.c:
	move declaration of accel_group from global to local in main()

	jpilot.c:1478: warning: declaration of ‘accel_group’ shadows a global
	declaration
	jpilot.c:126: warning: shadowed declaration is here

	* jpilot.c:
	initialize the .extra_data field of the GtkItemFactoryEntry entries

	* jpilot.c: rename get_main_menu() window parameter to my_window

	jpilot.c:1144: warning: declaration of ‘window’ shadows a global
	declaration
	jpilot.c:112: warning: shadowed declaration is here

	* jpilot.c: Use %lu instead of %ld for unsigned long int

	jpilot.c:911: warning: format ‘%ld’ expects type ‘long int *’, but
	argument 3 has type ‘long unsigned int *’

	* jpilot.c:
	main(): jpilot.c:2881: warning: declaration of ‘char_set’ shadows a
	previous local
	jpilot.c:1988: warning: shadowed declaration is here

	* jpilot.c:
	Do not #include <gdk/gdkx.h> since this file does not exist on Gtk+ for
	Quartz (Mac OS X) and is not used

2007-10-31  author  <author@hostname>

	* utils.c:
	Reverse ifdef for proper compilation when not running pilot-link-0.12

2007-10-27  author  <author@hostname>

	* address_gui.c: declare local variables and functions as static

	* address_gui.c:
	use #defined values instead of constants in phone_type_menu_item[]
	definition to avoid a buffer overflow since 7 is used instead of
	NUM_MENU_ITEM1 (and NUM_MENU_ITEM1 == 8)

	* pi-buffer.c, pi-buffer.h: Not needed with pilot-link 0.12.x

2007-10-25  author  <author@hostname>

	* po/fr.po: translate a string

	* po/jpilot.pot: regenerated

	* address_gui.c:
	address_gui(): revert to Address database if Contacts database can't be
	used

	* libplugin.c, prefs.c, utils.c, utils.h:
	call jp_close_home_file() instead of fclose() to avoid deadlocks

	* sync.c: Undo/Revert 1.72 changes

	English makes a distinction between words that start with a vowel sound
	and those that don't.  Correct usage is "an Address record" but
	"a Memo record".  This requires "an %s" and "a %s" C strings.

2007-10-24  author  <author@hostname>

	* po/fr.po: add some translations

	* sync.c: use "a %s record" instead of "an %s record"

	* po/jpilot.pot: regenerate

	* address_gui.c:
	contact_to_gstring(): use "%s%s: %s" instead of  "%s%s:%s"

	* address_gui.c: contact_to_gstring(): i18n the format string "%s%s:%s"

	* utils.c:
	charset_p2newj(): add a case for CHAR_SET_LATIN1 to just create a copy
	of the string to avoid a test in the caller code

	* address_gui.c: convert field names in UTF-8

2007-10-23  author  <author@hostname>

	* search_gui.c: cb_entry(): sort the search results

	* po/POTFILES.in: add contact.c

	* Makefile.am, address.h, address_gui.c, contact.c, jp-contact.c, jp-pi-contact.h, libplugin.h, memo.c, memo_gui.c, pi-buffer.c, pi-buffer.h, prefs.c, prefs.h, prefs_gui.c, sync.c, sync.h, utils.c, utils.h:
	Changes for supporting the new Contacts, and Memos Databases
	New databases are: ContactsDB-PAdd and MemosDB-PMem
	Import/Export only works for Addresses, needs Contacts support
	jpilot-dump needs updated for Contacts
	A pref needs to be put into Memos to toggle new/old DBs
	Japanese Kana patches were not ported to new code (need Japanese help)

2007-10-21  author  <author@hostname>

	* sync.c:
	Improved detection of matching records during sync which lowers probability
	of data loss for a multiple modification event (record modified on Palm and
	desktop simultaneously).

	Certain databases (Memo and ToDo) can use memcmp to check for any
	differences between records.  This catches changes which preserve
	record length such as changing SMITH to smith.

2007-10-20  author  <author@hostname>

	* reconf:
	use a recursive rm for *.cache to remove the directory autom4te.cache

	* sync.c: Fix typo for last checkin

	* sync.c:
	Eliminate syncing databases when the conduit is turned off in preferences.

	Fixes Bug 1072, 1618

2007-10-19  author  <author@hostname>

	* sync.c:
	Fix Bug 1840, record conflict during sync preserves data and warns user to manually merge records

	* address_gui.c:
	Fix Bug 1595: seg fault when exporting CSV under Japanese character set

	* address.c: Fix segfault behavior under Japanese character set

	* utils.c: Stop memory leak in charset_p2newj

	* sync.c: Major overhaul of sync code

	When records conflict, i.e., modifications on both the Palm and the PC,
	the previous behavior had been to overrule the Palm in all cases and
	keep the PC record.  This can lead to unacceptable data loss.
	The new strategy detects a conflict and keeps both records to allow the
	user to merge changes manually.

	Without writing equality comparison routines for each database it is
	impossible to be completely sure that the records are different.  The
	current code checks only to see if the records are the same length.
	Changes which preserve length, such as SMITH to smith or 1234 to 4567,
	will not be caught.  Nevertheless, the probabilistic chance of data loss
	has decreased significantly since both a length-preserving change AND
	a simultaneous modification of the same record is rare.  It is rare enough
	that the previous unacceptable behaviour has not generated any comments
	until recently.

	Other problems fixed:
	syncing without forking now works
	a slow sync where the pdb database does not exist no longer locks the pc3 file

	* address.c: Handle obscure error case and shut up compiler warning

2007-10-10  author  <author@hostname>

	* alarms.c: Add code to shut up a compiler warning

2007-10-06  author  <author@hostname>

	* plugins.c: add support for Mac OS X plugins (.dylib)
	Original patch from macport at
	http://svn.macports.org/repository/macports/trunk/dports/palm/jpilot/files/patch-plugins.c

	* utils.c:
	comment out pilot_time_to_unix_time() and unix_time_to_pilot_time()
	since they are aleady provided by pilot-link and make the link fail on
	Mac OS X (multiple definitions)

2007-10-03  author  <author@hostname>

	* utils.c: call pi_buffer_free() only if RecordBuffer in not NULL

	utils.c:2126: warning: ‘RecordBuffer’ is used uninitialized in this
	function

	* jpilot.c:
	jpilot.c:1930: warning: the address of ‘str_ver’ will always evaluate as
	‘true’

	* address.c:
	remove two compiler warnings: address.c:64: warning: ‘str1’ may be used
	uninitialized in this function

	* jpilot-dump.c: add support of iCalendat format (-i argument)

	Thanks to Jay Kline for the patch

	* autogen.sh: Exit is a command fails

2007-09-23  author  <author@hostname>

	* utils.c: Adjust modification time of pdb files when syncing

	Fixes Bug 1839 where no mtime update prevents version control
	Fixes restore bug where latest copy of pdb was not installed
	because it was incorrectly dated relative to backup pdb timestamp

2007-09-22  author  <author@hostname>

	* jpilotrc.green:
	Correct color of day boxes which fall outside of month in monthview gui

	* jpilotrc.blue, jpilotrc.default, jpilotrc.green, jpilotrc.purple, jpilotrc.steel, monthview_gui.c, weekview_gui.c:
	Highlight TODAY in week and month views using GTK styles

2007-09-21  author  <author@hostname>

	* alarms.c: Completed update and optimization of alarm code

	Code now optimized to jump to date near current date which reduces search
	time in algorithm.
	Code now functionally correct for all alarm types including repeatWeekly.
	Bug 1794, alarms not being removed in a timely fashion, is fixed.

2007-09-20  author  <author@hostname>

	* alarms.c: Alarms are incorrectly set when advance is not zero

2007-09-19  author  <author@hostname>

	* alarms.c: Major refactor of alarm code
	  Existing code incorrectly generated alarms for various types of repeating events.
	  Current code is functionally correct but is not optimized for performance.

	* jpilot.c, plugins.c, utils.c: Clean up compiler warnings

2007-09-18  author  <author@hostname>

	* prefs.c, prefs_gui.c: Resolve 1762 and 1838

	Treos syncing over USB need a serial rate above 9600.

	Changed default serial rate to 115200 and removed documentation that implied
	the serial rate wasn't used during USB operations.

	* datebook_gui.c:
	Fix Bug 1842: Alarm checkbox not reset off for new records

2007-08-27  author  <author@hostname>

	* po/pt_BR.po: Applied translation update from Bugzilla 1834

2007-08-11  author  <author@hostname>

	* jpilot.desktop: use a validated Categories= field. See
	http://standards.freedesktop.org/menu-spec/1.0/apa.html

	* address_gui.c:
	address_gui(): do not convert the labels if the charset is latin1 but
	use the labels directly
	Correct a bug I introduced in revision 1.128 and reported as Debian bug
	#436499

2007-08-07  author  <author@hostname>

	* prefs.c:
	The default mail command needs to change now that the mozilla code base has been split into browser(firefox) and mailer(thunderbird)

2007-07-22  author  <author@hostname>

	* monthview_gui.c, weekview_gui.c:
	Allow selection of text in weekview and monthview guis.

	Code now uses the button_release event rather than button_press event to
	switch from the weekview and monthly views to the jpilot calendar window.
	This allows selections of text to be copied before the automatic
	re-focus to the calendar widget.

	This was done in response to a request on the jpilot-mailing list.

	* monthview_gui.c:
	Recode GTK2 section to correctly handle enter_notify events

2007-06-15  author  <author@hostname>

	* docs/Makefile.am:
	do not distribute the generated manpages since they shall be generated
	locally using the correct $(datadir)

	* docs/Makefile.am, icons/Makefile.am:
	install docs and icons in /usr/share/doc/jpilot instead of
	/usr/share/doc/jpilot-x.y.z

2007-06-14  author  <author@hostname>

	* address_gui.c:
	convert the field names to UTF-8 when displaying them in the Quick View

2007-06-06  author  <author@hostname>

	* Expense/expense.c, KeyRing/keyring.c, libplugin.c, memo.c, plugins.c, sync.c, todo.c, address.c, category.c, datebook.c, jpilot.c:
	Improve code efficiency of Glists

	Doubly-linked Glists are used throughout the code.
	During their creation the inefficient g_list_append is used which requires
	traversing the Glist.  Replaced g_list_append with g_list_prepend
	The lists, which are delivered with a pointer to the tail, are
	often traversed to find the head of the list.  By switching to g_list_prepend
	the head of the list is already available and a second uneccessary list
	traversal can be avoided.

2007-06-05  author  <author@hostname>

	* prefs.c, prefs.h, todo_gui.c:
	Feature request 1395: Remember ToDo sort order between invocations

	* address_gui.c, datebook_gui.c, todo_gui.c:
	Change indentation for better readability

2007-05-31  author  <author@hostname>

	* address.c:
	Addendum to fixing Bugzilla 1814 which will prevent an occasional double free on a pointer

2007-05-30  author  <author@hostname>

	* address.c: Fix Bugzilla 1814: incorrect sort order

2007-04-13  author  <author@hostname>

	* address.c, address_gui.c:
	do not convert the labels and phonelabels from PDA to local encoding in
	the address_app_info structure itself since the fields are limited to 16
	bytes and converting to UTF-8 may expand them well above that limit

	The labels are no more truncated

	* todo_gui.c: remove an unused variable

	* japanese.c: remove an explicit cast

	japanese.c:222: warning: value computed is not used

	* Expense/expense.c:
	remove get_pay_type() since it is defined but never used

	* address.c: make print_address_list() return void instead of int

	address.c:57: attention : control reaches end of non-void function

	* address.c: remove unused variable
	address.c:51: attention : unused variable ‘next’

	* sync.c:
	jp_sync(): buffer variable was used not defined when JPILOT_DEBUG is
	used

2007-02-16  author  <author@hostname>

	* utils.c: jp_open_home_file(): do not try to lock a non existant file

2007-02-12  author  <author@hostname>

	* monthview_gui.c, weekview_gui.c:
	Partial fix for Bug 1783: Dimensions of weekview and monthview guis not preserved

2007-02-09  author  <author@hostname>

	* utils.c:
	fix bug 1781: use flock() to lock file access and avoid database
	corruption

2007-02-01  author  <author@hostname>

	* po/pt_BR.po: Updated translations for portugese_Brazil translation

2007-01-23  author  <author@hostname>

	* po/fr.po: typos

2007-01-03  author  <author@hostname>

	* configure.in, po/pt_BR.po:
	Add Feature 1777: Portugese_Brazil translation

2006-12-30  author  <author@hostname>

	* print.c: Fix bug 1776: missing showpage on postscript output

2006-12-16  author  <author@hostname>

	* jpilotrc.blue, jpilotrc.green, jpilotrc.purple, jpilotrc.steel:
	Fix color of inactive scrollbar buttons under latest GTK libraries(2.10)

2006-12-07  author  <author@hostname>

	* todo.c:
	Stop printing contents of oversized note or description field in todo when
	field exceeds max length.

	On entering an overly large note or description field jpilot emits a warning
	and truncates the buffer to a maximum length.  In addition the current behavior
	has been to print the entire problem buffer which obscures what is happening
	and makes it look like there has been some weird corruption within the Jpilot program.

	* address_gui.c:
	Use a slightly more robust scheme to decide when Mail versus Dial button should be displayed

	Old scheme relied on the gettext translation being equal to "E-mail" but this is not
	very portable between different locales.  Instead jpilot now uses the same scheme it uses
	for exporting records(csv, ldif) which is to check for a labelcode of 4.  This is still a
	hardcoded value but it seems to be the one Palm developers have chosen and is unlikely
	to change anytime soon.

2006-11-15  author  <author@hostname>

	* jpilot.c:
	Tweak fix to bug 1744 so that resizing main jpilot window doesn't simply open up the log window

2006-11-11  author  <author@hostname>

	* search_gui.c:
	automatically select the first record found. Closes bug 1756.

	* jpilot.c:
	Fix Bug 1744 : Output messages window is not properly sized to show buttons

	Fixed for GTK2 by querying the window for it's desired size and setting the
	location of the pane divider appropriately.

2006-11-07  author  <author@hostname>

	* search_gui.c:
	Feature Request 1757: Clicking on case sensitive widget automatically re-performs the search with the new setting.  Patch from Ludovic

2006-11-05  author  <author@hostname>

	* jpilot.c:
	bad_sync_exit_status(): call gettext() to translate the text of the
	message box

	* po/fr.po: update text formating

2006-10-19  author  <author@hostname>

	* .cvsignore, docs/.cvsignore, po/.cvsignore:
	Add a few rules to cvsignore files to remove clutter when updating

2006-10-10  author  <author@hostname>

	* po/Makefile.in.in:
	Use intltool-0.35 Makefile.in.in rather than gettext Makefile.in.in

	* Makefile.am, m4/Makefile.am:
	Eliminate distribution of gettext macros in m4 directory

	* autogen.sh:
	Use autopoint in preference to gettextize which should only be used when first adapting program for NLS

	* po/POTFILES:
	POTFILES is a derived object and does not need to be stored in CVS.
	configure regenerates file from POTFILES.in

	* Makefile.am, configure.in, autogen.sh: Overhaul autotools environment

	Added lots of explicit comments about how scripts are operating
	Removed accumulated cruft
	Fixed Bug 1721
	Fixed configure script where --enable-option could interfere with building
	correctly if the default for the option was already to be enabled.
	Fixed many potential problems in the configure sh script where unquoted
	variables were being compared to unquoted strings.

2006-10-05  author  <author@hostname>

	* KeyRing/keyring.c:
	plugin_gui(): replace a static affectation by a dynamic one to use l10n
	for the columns titles

	* po/fr.po: translate missing strings

	* po/fr.po: convert from ISO-8859-1 to utf-8

2006-10-03  author  <author@hostname>

	* docs/Makefile.am, docs/jpilot-dial.1, docs/jpilot-dial.man, docs/jpilot-dump.1, docs/jpilot-dump.man, docs/jpilot-sync.1, docs/jpilot-sync.man, docs/jpilot.1, docs/jpilot.man:
	Man pages are now derived objects through a makefile rule.  This allows variable substitution to correct what were previously hardcoded paths

2006-09-29  author  <author@hostname>

	* po/.cvsignore:
	Small mods as some names have changed slightly between versions of intltool and gettext

	* po/es.po, po/fr.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/ru.po, po/rw.po, po/sv.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, po/POTFILES, po/ca.po, po/cs.po, po/da.po, po/de.po, po/jpilot.pot:
	2 files missing gettext tags added : rebuilt po toolchain

	* SyncTime/synctime.c: Added gettext macros to text strings

2006-09-28  author  <author@hostname>

	* po/POTFILES.in:
	2 files missed being added to gettext translation list

	* dialer/Makefile.unix:
	Removed old Makefile.unix from CVS which has been replaced long ago by automake

	* dialer/Makefile.am, docs/Makefile.am, empty/Makefile.am, icons/Makefile.am:
	Clean Automake.am files in subdirectories

	* autogen.sh: Updated comments to clearly document script

	* configure.in:
	Fix configuration bug where enable-gtk2=yes would actually disrupt GTK2 build

	* KeyRing/keyring.c:
	Feature request 1730: sortable last changed column in keyring

2006-09-27  author  <author@hostname>

	* todo_gui.c:
	Sort order selected by column is now remembered across changes such as the addition or modification of a record

	* todo_gui.c:
	Fix possible data corruption issue associated with sorted columns

	* KeyRing/keyring.c:
	Fix possible data overwriting situation when using sorted columns

	* KeyRing/keyring.c: Feature request 1730: sortable columns in KeyRing

	* KeyRing/keyring.c:
	Feature request 1730: last changed field is updated whenever the password is changed

	* KeyRing/keyring.c:
	Take out unnecessary commented out code and re-phrase some comments

	* address_gui.c:
	Add feature request 1667: Larger Note field in address book gui

2006-09-26  author  <author@hostname>

	* po/.cvsignore: Changeover from no to nb for Norway language code

	* configure.in, jpilot.c:
	Fix bug 1722 : macro of nl_langinfo preventing compilation on Solaris and OpenBSD

	* print.c: use a safer way to fix bug 1731

	* configure.in: Fix bug 1734 : building on 64 bit architectures

	* configure.in:
	Fix bug 1733: Norwegian language code changing from no to nb

	* po/no.po:
	Removed old Norwegian language file in favor of new language code nb

	* po/nb.po:
	Norwegian language file changing from old code of no to new code of nb

	* print.c: Fix bug 1731: subscript out of range

2006-09-04  author  <author@hostname>

	* Expense/Makefile.am, KeyRing/Makefile.am, SyncTime/Makefile.am:
	remove -Wall option, CFLAGS= should be used on configure line

2006-09-03  author  <author@hostname>

	* address.c, address_gui.c:
	Fix sorting by name or company in address book which was busted while fixing Bugzilla 1700

2006-08-28  author  <author@hostname>

	* datebook_gui.c, jpilot-dump.c: minor cleanup

	* ChangeLog, po/jpilot.pot, po/es.po, po/fr.po, po/it.po, po/ja.po, po/ko.po, po/nl.po, po/no.po, po/ru.po, po/rw.po, po/sv.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, po/ca.po, po/cs.po, po/da.po, po/de.po, configure.in:
	0.99.9 release

	* SlackBuild.in: Rewrote to work better

2006-07-30  author  <author@hostname>

	* utils.c: remove a unused variable
	utils.c:1379: warning: unused variable ‘out’

	* libplugin.c: comment two unused static functions and avoid
	libplugin.c:372: warning: ‘pilot_time_to_unix_time’ defined but not used
	libplugin.c:385: warning: ‘bytes_to_bin’ defined but not used

	* utils.h:
	add declaration of get_timeout_interval() to avoid a address_gui.c:2589:
	warning: implicit declaration of function ‘get_timeout_interval’

2006-07-22  author  <author@hostname>

	* address.c, address.h, address_gui.c:
	Fix Bug 1700: Sorting by company labels in address book are incorrect

2006-07-05  author  <author@hostname>

	* libplugin.c, libplugin.h, utils.c, utils.h:
	Removed raw_header_to_header() and replaced with unpack_db_header().
	This should fix the machine dependent problems with reading the structure
	straight from disk.  This should now run properly on ARM and Zaurus.

2006-06-25  author  <author@hostname>

	* KeyRing/keyring.c:
	Fix translation of category name All which was not being passed through gettext

	* address_gui.c, datebook_gui.c, memo_gui.c, todo_gui.c, utils.c:
	Fix Bug 1679: Excess power consumption from needless time updates

2006-06-23  author  <author@hostname>

	* weekview_gui.c, monthview_gui.c:
	do not try to change the datebook displayed day when the user click in a
	day in the week or month view and the datebook application is NOT active
	any more. This typically crashed jpilot.

	This closes Debian bug #374495

2006-06-09  author  <author@hostname>

	* jpilot.c: Moved nested function to enable building on Mac OSX

	* datebook_gui.c:
	Re-add code to use Page-Up to go backward one day and Page-Up to go forward
	one day.  Code changed to only accept page-up/page-down in clist, and
	calendar widget so as to not affect text widgets.

2006-06-05  author  <author@hostname>

	* address_gui.c, datebook_gui.c, jpilot.c, memo_gui.c, todo_gui.c:
	Removed clipboard code.  The X11 clipboard code was causing X to lock up
	under certain circumstances.  It seems that it didn't interact well with
	other applications.  I received numerous reports of this.  The newer
	versions of GTK don't seem to need this code anymore anyway.

2006-05-26  author  <author@hostname>

	* print.c:
	Fixed small months on monthview printout not being the correct months

2006-05-18  author  <author@hostname>

	* restore_gui.c: Fix Bug 1668: Buffer overrun in user ID field

	* jpilot.c, utils.c:
	Fix Bug 1640: permissions on files should be 0600 for privacy

2006-05-13  author  <author@hostname>

	* sync.c:
	Changed incorrect database names for sync_categories during a slow sync.
	The databases affected were MemoDB doing a sync_categories with Memo32DB and
	and Manana doing a sync_categories with ToDoDB.  I suspect this is why the
	MemoDB could be corrupted at times and was hard to reproduce.  It would not
	happen on a fast sync.  Not fully tested.

2006-05-09  author  <author@hostname>

	* utils.c:
	set_bg_rgb_clist_row() and set_fg_rgb_clist_cell(): initialise the
	.pixel field to avoid warning: ‘color.pixel’ is used uninitialized

	* otherconv.c:
	UTF_to_other(): use the correct error message in case of memory
	exhaustion (and avoid a warning: ‘errstr’ is used uninitialized)

2006-05-08  author  <author@hostname>

	* jpilot.c:
	Fix bug 1661 where pref_fdow is not set correctly for GTK 2.8 libraries

2006-04-20  author  <author@hostname>

	* datebook_gui.c:
	cb_delete_appt(): do not call charset_j2p() since it will be done later by
	pc_datebook_write(). The problem was we had a double conversion UTF-1 ->
	Latin1 and the latin1 encoding was wrong as UTF-1 for the second
	convertion so the text was truncated.

	This solves Debian bug #363452

2006-04-17  author  <author@hostname>

	* alarms.c: Fix Bug 1650: Text does not wrap in alarm dialog window

2006-04-12  author  <author@hostname>

	* po/de.po: translation update by Peter Mukunda Pasedach

2006-04-11  author  <author@hostname>

	* KeyRing/keyring.c:
	Fix Bug 1594: Syncing KeyRing causes Palm to crash with invalid UniqueID

2006-04-02  author  <author@hostname>

	* ChangeLog:
	restore the file to a correct value (revert the "Just forcing a commit"
	by David)

2006-03-29  author  <author@hostname>

	* ChangeLog:
	Just forcing a commit to see why commit emails aren't being sent

	* jpilot.c:
	Modified scroll code in output window to more reliably keep to the end of the window

2006-03-26  author  <author@hostname>

	* SlackBuild.in, description-pak: Changed to Slackware convention

2006-03-15  author  <author@hostname>

	* address_gui.c: Fix bug 1639 where CRLF is not used for vCARD export

2006-02-25  author  <author@hostname>

	* jpilot-dump.c: Resolve bug 1634 "jpilot-dump is off by 1 day"

	dumpbook(): explicitly initialise the .tm_isdst field (daylight saving
	time) instead of using the random value in memory

2006-02-14  author  <author@hostname>

	* jpilot-dump.c, jpilot-sync.c, jpilot.c, prefs.c:
	Resolve Bug 1051, 1617

	Code now checks whether locale supports am/pm formats before offering them as choices.

	* jpilot.c, todo_gui.c: Use EXIT_FAILURE macro where appropriate

2006-02-09  author  <author@hostname>

	* jpilot.c: Fix bug 1615: scrollbar position during hotsync

2006-02-04  author  <author@hostname>

	* po/ja.po: Updated po file from miurahr

2006-01-26  author  <author@hostname>

	* utils.c:
	Fix bug 1592 where hitting cancel in calendar popup causes date to go back 1900 years for each occurrence

2006-01-15  author  <author@hostname>

	* ChangeLog, configure.in: version 0.99.9-pre2

	* 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/ko.po, po/nl.po, po/no.po, po/ru.po, po/rw.po, po/sv.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po:
	regenerate for 0.99.9-pre2

2006-01-11  author  <author@hostname>

	* datebook_gui.c: Work around GTK bug in nested callback routines.

	When creating a new appt in the datebook the first time the pulldown menus
	for setting the time are used they appear and disappear.  One has to click
	a second time for the menus to stay on the screen.  In addition, if one
	clicks and holds the mouse the very first time then the entry for 8 am is
	missing in the menu.  This patch fixes both items.

	* datebook_gui.c: Reuse existing local variable for memory savings

	* datebook_gui.c: Remove unused variables

	* datebook_gui.c:
	Prevent end time in appt from being before start time.  This mimics PalmOS behavior more closely

	* configure.in, jpilot.c:
	Extract first day of week from locale under GTK 2.8 libraries

2006-01-10  author  <author@hostname>

	* Makefile.am: Add test_compile target for developers to Makefile

	A number of simple errors would have been caught by developers before patches
	were checked in to CVS if the build logs had been searched.  I added a target
	which configures a GTK1 build, compiles the code, and then checks for warnings
	and errors.  If the GTK1 build passes then it does the same sequence for GTK2.

	It is recommended to run 'make test_compile' before checking new code into CVS.

	* search_gui.c: Increase keyboard functionality in search GUI.

	Search results in clist can be scrolled through using cursor keys.  Added
	ability to hit Enter and automatically go to the currently highlighted record.
	Previously one had to use the mouse and click on a row in the clist to
	have this functionality.

	* search_gui.c:
	Have focus default to search entry field when the Find window is called to the front

	* jpilotrc.blue, jpilotrc.green, jpilotrc.purple, jpilotrc.steel:
	Modify gtkrc coloring files to produce correct results on GTK2.8 libraries

2006-01-06  author  <author@hostname>

	* utils.c:
	Incorrect fopen call caused next_id file to grow without bound

	* datebook_gui.c:
	GTK uses day 0 to unselect the current calendar day.  Use this fact in
	cb_cal_changed to avoid extra clist_updates when adding a new appointment.

	* datebook_gui.c:
	Change a few subroutine names to be consistent with other gui.c files

2006-01-05  author  <author@hostname>

	* address_gui.c, datebook_gui.c:
	Disconnect signals when a new record is added so that cb_record_changed is not called every time a character is typed

	* memo_gui.c:
	Re-connect disconnected signals at the end of memo_clear_details for consistency with other clear_details subroutines

	* po/.cvsignore: add ko.gmo and uk.gmo

	* address_gui.c, datebook_gui.c, memo_gui.c, todo_gui.c:
	Enter hotkey now positions cursor at the start of an entry in GTK2

	* alarms.c:
	Only print note field in alarms if it exists.  Eliminate extra spaces otherwise

	* alarms.c:
	Alarm reminders which are for a specific time should not show a duration(time1-time1)

2006-01-01  author  <author@hostname>

	* alarms.c, utils.c:
	Declare variables used with GTK+2 only when GTK+2 is used

	* utils.h: add declaration of g_strlcpy() if GTK+1 is used

	* utils.c:
	add definition of g_strlcpy() when GTK+1 is used since this function is
	new in GTK+2.

	This is the exact copy of strlcpy() from OpenBSD with the name changed
	ftp://ftp.openbsd.org/pub/OpenBSD/src/lib/libc/string/

2005-12-30  author  <author@hostname>

	* KeyRing/keyring.c, libplugin.c, libplugin.h, utils.c:
	Added a last changed button, and calendar dialog to keyring

	* utils.c: Removed global variables from cal_dialog code

	* sync.c:
	Apply patch to fix FD leak when errors occur.  Patch provided by Phuah Yee Keat

	* KeyRing/keyring.c:
	Added a field for the last changed date and set it to today when the
	record is changed.  It probably should be editable like the begin date
	button in datebook.  I'll save this for future work.

2005-12-28  author  <author@hostname>

	* datebook_gui.c:
	Fix Bugzilla 1533 where null description in appointment crashes ical export of datebook

2005-12-19  author  <author@hostname>

	* jpilot.c:
	buttons Clear and Remove are always visible with GTK+ 2.8 and a
	button_box. Revert back to a simple box.

2005-12-18  author  <author@hostname>

	* configure.in, ChangeLog: version 0.99.9-pre1

	* 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/ko.po, po/nl.po, po/no.po, po/ru.po, po/rw.po, po/sv.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po:
	regenerate

	* jpilot.c:
	use GTK2 stock buttons for Minimize and Clear buttons of the log window

	* import_gui.c:
	import_record_ask(): convert category name in correct encoding (UTF)

	* import_gui.c: import_record_ask(): use GTK2 stock button

	* import_gui.c: import_gui(): move the Import button on the right side

	* address.c, address_gui.c, datebook.c, datebook_gui.c, japanese.c, libplugin.c, print.c, todo.c:
	do not cast malloc() return value. See
	http://faq.cprogramming.com/cgi-bin/smartfaq.cgi?answer=1047673478&id=1043284351

	* address_gui.c, alarms.c, category.c, datebook_gui.c, dialer.c, export_gui.c, install_gui.c, install_user.c, jpilot-sync.c, jpilot.c, memo_gui.c, password.c, prefs.c, sync.c, todo_gui.c:
	use g_strlcpy() instead of (unsafe) strncpy() + setting a NULL byte

	* utils.c: use g_strlcpy() instead of strncpy() + setting a NULL byte

	* datebook_gui.c:
	cb_date_cats(): convert category name in correct encoding (UTF)

	* datebook_gui.c:
	cb_date_cats(): use STOCK buttons for the DB3 category selection box

2005-12-16  author  <author@hostname>

	* monthview_gui.c, weekview_gui.c:
	use GTK2 stock icons for week and month views

	* jpilot.c:
	get_inline_pixbuf_data(): use g_object_unref() instead of g_free() since
	gdk_pixbuf_new_from_xpm_data() returns an object.

	This avoids a startup crash under Ubuntu with:
	*** glibc detected *** free(): invalid pointer: 0x0811d968 ***

2005-12-14  author  <author@hostname>

	* alarms.c, prefs.c: use a new (nicer) alarm dialog box

	* po/ChangeLog, po/Makefile.in.in: upgraded to gettext 0.14.5

	* datebook_gui.c:
	datebook_gui(): add some space around the "Week" and "Month" buttons as
	already done for the other buttons

	* datebook_gui.c:
	do not remap PageUp and PageDown to previous/next day since these kays
	are also used by GTK+ for Begin/End in a textfield

	The patch is easily reverted since I just #if 0 the code

	* ABOUT-NLS, configure.in, m4/Makefile.am, 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:
	upgraded to gettext 0.14.5

	* configure.in: add ko l10n

	* po/ko.po: translation by Byeong-Taek Lee, thanks

2005-12-11  author  <author@hostname>

	* otherconv.c, prefs.c, prefs.h: Add support of Korean (CP949) encoding

2005-12-06  author  <author@hostname>

	* search_gui.c: Highlight first row of returned search results

	* configure.in: Change configure to build GTK2 version by default

	Per discussion on the Jpilot message boards, all of the major distros are
	now building Jpilot under GTK2.  The last survey of users also showed
	2/3 using GTK2 and 1/3 using GTK1.  GTK1 build is availble by explicitly
	configuring with --disable-gtk2.

	* prefs_gui.c:
	Create grayed out insensitive checkbutton in preferences window when Datebk is disabled in build

	* Expense/expense.c, KeyRing/keyring.c:
	Update set_new_button function in plugins to more clearly code for what is happening in GUI

2005-12-05  author  <author@hostname>

	* docs/jpilot-dump.1, jpilot-dump.c:
	Update jpilot-dump help print-out and man page to reflect using D for datebook instead of B

2005-12-04  author  <author@hostname>

	* address_gui.c, datebook_gui.c, memo_gui.c, todo_gui.c:
	Clean set_new_button code

	Instead of trying to track deltas between old state and new state I simply
	put up the buttons I want to display and hide the other ones.  This makes
	the code easier to understand and there is no performance penalty because
	a gtk_widget_hide on an already hidden widget takes almost zero time.

2005-12-03  author  <author@hostname>

	* BUGS:
	Remove list of bugs for versions of jpilot that are no longer supported

	* UPGRADING: Remove no longer relevant file UPGRADING from distribution

	* Expense/expense.c: Add prototype to fix compiler warning

	* SlackBuild.in, docs/Makefile.am, jpilot.spec.in, po/Makefile.in.in:
	Remove no longer relevant file UPGRADING from distribution

	* docs/jpilot-upgrade-99.1:
	Removing man page for upgrade process which is no longer relevant

	* Expense/expense.c, KeyRing/keyring.c:
	Fix compile error for plugins because plugin_find commands work differently than main apps

	* Expense/expense.c, KeyRing/keyring.c, address_gui.c, datebook_gui.c, memo_gui.c, todo_gui.c:
	Correct bug where clicking on a clist row does not always send you to the correct record

	When a record is modified, and a user clicks on a different row in a clist instead of hitting
	the 'apply changes' button`, and the user selects that the changes be saved then there is the
	possibility that the entry that the user selected will no longer be in the row that the user selected.
	This is caused by the addition of the new or modified record and the subsequent default sorting of the
	clist.  The bug is corrected by finding out which record, rather than which row, the user was trying to
	access and then going to that record after the new or modified one has been added.

	* monthview_gui.c, prefs.c, weekview_gui.c:
	Highlight the day of the week in weekview and monthview guis by bolding the corresponding label

	* Expense/expense.c, KeyRing/keyring.c, address_gui.c, datebook_gui.c, memo_gui.c, todo_gui.c:
	Remove clist_hack code.  Fix for modal window/clist lock up is now in utils.c

	* alarms.c: Fixed broken compilation under GTK1

	gtk_window_stick() is only available under GTK2

2005-12-02  author  <author@hostname>

	* alarms.c:
	dialog_alarm(): make the alarm window appear on _all_ desktops and not
	just the one with J-Pilot

	* alarms.c:
	dialog_alarm(): make the alarm window always appear and stay _above_ the
	main J-Pilot window

2005-11-30  author  <author@hostname>

	* utils.c: Labels in modal dialogs shouldn't be selectable.

	When selectable, the tab key bounces between the label and the yes/no buttons.
	When unselectable, the tab key bounces only between the two buttons.

	* import_gui.c:
	Changed icon from OK to CLOSE which more accurately reflects its behavior.

	See install_gui.c for another example of CLOSE instead of OK

	* utils.c: Fix mouse lockup bug caused by clist widgets

2005-11-29  author  <author@hostname>

	* import_gui.c: use GTK+2 stock button

	* print_gui.c: use GTK+2 stock buttons

2005-11-28  author  <author@hostname>

	* utils.c: Improve alignment of help screens in GTK1

	Default text alignment changed from centered(GTK1) to left-justified(GTK2).
	Patch forces left-justification in GTK1 so that the two versions of jpilot
	look the same.

	* category.c:
	Error message changed to prevent conflict with existing "Edit Categories" window.

	When editing categories and an error occurs the alert window has the title
	"Edit Categories <2>" because the window manager has to give it a unique name.
	This is confusing so the alert window was re-titled to "Edit Categories Error"

	* Expense/expense.c, KeyRing/keyring.c, SyncTime/synctime.c, jpilot.c:
	Change title for plugin help from Help to About xxx

	* jpilot.c, utils.c:
	Correct information and improve format of Jpilot help screen

2005-11-27  author  <author@hostname>

	* category.c:
	For consistency, edit categories window does not get stock_buttons unless it is explicitly enabled

	* jpilot.c, password.c:
	Change password masking dialog to use new button ordering more clearly

	* KeyRing/keyring.c:
	Keyring password dialog now uses stock buttons for Cancel and Ok

	* KeyRing/keyring.c, category.c, datebook_gui.c, export_gui.c, install_user.c, password.c, restore_gui.c, search_gui.c, utils.c:
	Fix compile-time warnings in GTK1 related to new button boxes

	* Expense/expense.c, KeyRing/keyring.c, address_gui.c, datebook_gui.c, memo_gui.c, todo_gui.c:
	use 3 pixels instead of 6 between the buttons in the top-rigth corner

	* utils.c:
	dialog_generic(): set the window title to the message title instead of
	having just "jpilot"

	* search_gui.c:
	cb_search_gui(): remove some spacing to have more useful data displayed

	* utils.c: Patch from Chris Bryden for double free causing a segfault

	* configure.in, po/uk.po: Added Ukrainian po translation

	* Expense/expense.c, KeyRing/keyring.c, address_gui.c, category.c, datebook_gui.c, dialer.c, export_gui.c, install_gui.c, install_user.c, jpilot.c, memo_gui.c, password.c, prefs_gui.c, restore_gui.c, search_gui.c, todo_gui.c, utils.c, utils.h:
	Patch from Ludovic:
	 - I tried to update every button to use stock GTK+ buttons when possible
	 - use a button_box (instead of hbox) to align the buttons on the right
	 - dialog_generic() has been greatly improved
	  . do not set the window title as indicated in [1]
	  . do not force the dimensions but let GTK+ select the correct size
	  . use a bold font for the title and normal text for the long error message
	  . do not use a frame but the format specified in [2]
	  . use an icon (char *frame_text argument now replaced by int type argument)
	 - the password entry window has a nice icon
	 - the buttons Delete/Copy/New now have a small space around them so they
	   look like more independent and real buttons.
	[1] http://developer.gnome.org/projects/gup/hig/2.0/windows-alert.html
	[2] http://developer.gnome.org/projects/gup/hig/2.0/windows-alert.html#alert-text

2005-11-25  author  <author@hostname>

	* datebook_gui.c:
	Reverse a partially coded patch that slipped in with Ludovic's button patch

	* Expense/expense.c, KeyRing/keyring.c:
	Correct button order issues in plugins

2005-11-24  author  <author@hostname>

	* address_gui.c, datebook_gui.c, memo_gui.c, todo_gui.c:
	Apply button order patch from Ludovic

2005-11-23  author  <author@hostname>

	* INSTALL: Update dates and version numbers

	* BUGS: Update file to reference bugs.jpilot.org

	* docs/jpilot-sync.1: Add date to man page

	* docs/jpilot.1: Updating documentation for style, content

	* docs/jpilot-dump.1: Add date to man page

	* docs/jpilot-dial.1:
	Update man page and add documentation for rv, lv options

2005-11-22  author  <author@hostname>

	* address_gui.c, datebook_gui.c, memo_gui.c, todo_gui.c:
	Fix residual outline bug in clist.

	Changing the category of the last line in a clist and applying changes causes
	the record to be re-filed in the new category but leaves a ghostly black outline.

2005-11-17  author  <author@hostname>

	* po/fr.po: update some fuzzy strings

	* KeyRing/keyring.c, address_gui.c, datebook_gui.c, export_gui.c, memo_gui.c, password.c, todo_gui.c, utils.c:
	The "Yes" or "OK" button is on the right.
	We try to be follow the GNOME Human Interface Guidelines
	http://developer.gnome.org/projects/gup/hig/2.0/windows-alert.html#alert-button-order

	* utils.c: use stock OK and Cancel buttons for the calendar

	* datebook_gui.c, export_gui.c: use stock OK and Cancel buttons

	* m4/gtk.m4: correctly quote AM_PATH_GTK to avoid a:
	  m4/gtk.m4:7: warning: underquoted definition of AM_PATH_GTK

2005-11-10  author  <author@hostname>

	* docs/jpilot-dump.1: Lost first .TP format code during update

2005-11-08  author  <author@hostname>

	* docs/jpilot-dump.1: upgrade man page to reflect changes in options

	* jpilot-dump.c: Heavily re-worked jpilot-dump.c

	Removed unnecessary includes
	Changed usage string
	Indented code according to normal conventions

	Code is still not very i18n-compliant

2005-11-06  author  <author@hostname>

	* KeyRing/keyring.c: Fix compiler warning on unused variable

	* libplugin.c, libplugin.h: Add undelete routine for plugins

	* KeyRing/keyring.c:
	Re-code large sections for clarity and conformance with the other 4 _gui.c files

2005-11-05  author  <author@hostname>

	* jpilot-sync.c:
	Fixed unresolved symbol glob_tooltips when loading plugins from jpilot-sync

2005-11-01  author  <author@hostname>

	* po/fr.po: correct 4 fuzzy strings

2005-10-31  author  <author@hostname>

	* Makefile.am:
	removed jpilot.rh7.spec since rpmbuild tried to use it with a -tb build

	* SlackBuild.in: changed to work for release 0.99.8

	* po/.cvsignore: added rw.gmo

2005-10-30  author  <author@hostname>

	* SlackBuild.in, jpilot.spec.in, docs/jpilot-address.png, docs/jpilot-datebook.png, docs/jpilot-expense.png, docs/jpilot-install.png, docs/jpilot-memo.png, docs/jpilot-print.png, docs/jpilot-search.png, docs/jpilot-todo.png:
	updated screenshots

	* docs/Makefile.am: updated prefs screenshots

	* docs/manual.html: updated 0.99.8 screen shots

	* docs/jpilot-prefs-1.png, docs/jpilot-prefs-2.png, docs/jpilot-prefs-3.png, docs/jpilot-prefs-4.png, docs/jpilot-prefs-5.png, docs/jpilot-prefs-6.png, docs/jpilot-prefs-7.png, docs/jpilot-prefs-8.png:
	0.99.8

	* docs/jpilot-prefs-1.png, docs/jpilot-prefs-2.png, docs/jpilot-prefs-3.png, docs/jpilot-prefs-4.png, docs/jpilot-prefs-5.png, docs/jpilot-prefs-6.png, docs/jpilot-prefs-7.png, docs/jpilot-prefs-8.png:
	replacing with binary

	* docs/jpilot-prefs-1.png, docs/jpilot-prefs-2.png, docs/jpilot-prefs-3.png, docs/jpilot-prefs-4.png, docs/jpilot-prefs-5.png, docs/jpilot-prefs-6.png, docs/jpilot-prefs-7.png, docs/jpilot-prefs-8.png:
	*** 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/rw.po, po/sv.po, po/tr.po, po/vi.po, po/zh_CN.po, po/zh_TW.po:
	regenerated

	* configure.in, ChangeLog: Changes for 0.99.8

2005-10-28  author  <author@hostname>

	* SlackBuild.in: Added rw.mo (Rwanda)

	* jpilot.spec.in:
	Updated and tested on SuSE 9.3, SuSE 10.0 and Slackware 10.2

	* address_gui.c: PANE_CREEP patch, missed this file

	* otherconv.c:
	Made char_set_to_text multithread safe and use less memory.
	#ifdef'ed out jp_logf DEBUGs which were too much output to log.

2005-10-26  author  <author@hostname>

	* alarms.c: Reduce alarm code CPU burden by 10

	* address_gui.c: Speed up cb_address_quickfind function

2005-10-25  author  <author@hostname>

	* Expense/expense.c: Fix memory leak in search

	* utils.c:
	Edited -h help information to have uniform style, punctuation, and removed a typo

2005-10-24  author  <author@hostname>

	* Expense/expense.c, KeyRing/keyring.c, datebook_gui.c, jpilot.c, memo_gui.c, todo_gui.c, utils.h:
	With GTK-1 the pane would creep at each setting because of gtk being off by 2
	pixels on either the read or the write.  This is fixed with GTK2, so I
	defined PANE_CREEP to make GTK1 and GTK2 both behave as expected.

	* datebook_gui.c: Fix highlighting of non-stock buttons

	* address_gui.c, memo_gui.c, todo_gui.c: datebook_gui.c

	* alarms.c, datebook.c, datebook.h, datebook_gui.c, japanese.c, jpilot.c, libplugin.c, libplugin.h, log.h, password.h, prefs_gui.c, print.c, sync.c, utils.c, utils.h:
	Correct spelling mistakes in code comments

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

2005-10-23  author  <author@hostname>

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

2005-10-22  author  <author@hostname>

	* memo_gui.c: Fix typo affecting stock_buttons

2005-10-20  author  <author@hostname>

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

	* 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  author  <author@hostname>

	* po/zh_CN.po: update by Funda Wang

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

2005-10-18  author  <author@hostname>

	* 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  author  <author@hostname>

	* 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  author  <author@hostname>

	* 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  author  <author@hostname>

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

2005-09-25  author  <author@hostname>

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

2005-09-24  author  <author@hostname>

	* 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  author  <author@hostname>

	* jpilotrc.default: fixed typo

2005-09-12  author  <author@hostname>

	* 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  author  <author@hostname>

	* Makefile.am: Added install_user.h

2005-08-30  author  <author@hostname>

	* otherconv.c: fix compile warnings about oc_free_iconv

2005-08-29  author  <author@hostname>

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

2005-08-28  author  <author@hostname>

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

	* 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  author  <author@hostname>

	* TODO: Added an item

	* Makefile.am: reverted accidental checkin

	* README: Removed PalmOS password needs removed warning

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

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

2005-08-17  author  <author@hostname>

	* 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  author  <author@hostname>

	* 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  author  <author@hostname>

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

	* ChangeLog, configure.in: version 0.99.8-pre10

2005-08-07  author  <author@hostname>

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

2005-08-06  author  <author@hostname>

	* 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

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

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

2005-06-24  author  <author@hostname>

	* po/ja.po: long date format localization

	* 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:
	update/regenerate

	* 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  author  <author@hostname>

	* 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  author  <author@hostname>

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

2005-05-08  author  <author@hostname>

	* plugins.c: missing sizeof

2005-05-03  author  <author@hostname>

	* ChangeLog: version 0.99.8-pre9

	* configure.in: version 0.99.8-pre8

	* 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  author  <author@hostname>

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

	Thanks to Jason Day for the patch

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

	* 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  author  <author@hostname>

	* libplugin.c: cut-paste typo

2005-04-09  author  <author@hostname>

	* 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  author  <author@hostname>

	* 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  author  <author@hostname>

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

2005-03-20  author  <author@hostname>

	* 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  author  <author@hostname>

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

	* 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  author  <author@hostname>

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

2005-03-06  author  <author@hostname>

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

	* po/fr.po: correct a translation

2005-03-04  author  <author@hostname>

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

	* Expense/expense.c, KeyRing/keyring.c, address.c, category.c, datebook.c, memo.c, todo.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  author  <author@hostname>

	* 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  author  <author@hostname>

	* 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  author  <author@hostname>

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

	* po/ja.po: update by Harada kazutaka

2005-02-20  author  <author@hostname>

	* 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  author  <author@hostname>

	* 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/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:
	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  author  <author@hostname>

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

2005-02-02  author  <author@hostname>

	* 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  author  <author@hostname>

	* 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  author  <author@hostname>

	* 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  author  <author@hostname>

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

	Thanks to Brian de Alwis for the patch

	* utils.c: Correct return values for get_highlight_day function

2005-01-27  author  <author@hostname>

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

	* datebook_gui.c, jpilot.c, monthview_gui.c, prefs.c, prefs.h, prefs_gui.c, utils.c, utils.h, weekview_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  author  <author@hostname>

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

2005-01-22  author  <author@hostname>

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

2005-01-21  author  <author@hostname>

	* 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  author  <author@hostname>

	* 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"

	* 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  author  <author@hostname>

	* 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  author  <author@hostname>

	* po/ja.po: update from Kazutaka HARADA

2005-01-10  author  <author@hostname>

	* 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  author  <author@hostname>

	* 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/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:
	update/regenerate for 0.99.8-pre7

2005-01-05  author  <author@hostname>

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

2005-01-02  author  <author@hostname>

	* 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  author  <author@hostname>

	* sync.c: Changes for pilot-link 0.12.0

	* configure.in: Changes for 0.12.0

2004-12-21  author  <author@hostname>

	* 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  author  <author@hostname>

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

2004-12-18  author  <author@hostname>

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

2004-12-17  author  <author@hostname>

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

2004-12-14  author  <author@hostname>

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

2004-12-13  author  <author@hostname>

	* 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  author  <author@hostname>

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

2004-12-11  author  <author@hostname>

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

2004-12-10  author  <author@hostname>

	* 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

	* address_gui.c, category.c, datebook_gui.c, jpilot.c, memo_gui.c, prefs.c, todo_gui.c, utils.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  author  <author@hostname>

	* 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  author  <author@hostname>

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

2004-12-04  author  <author@hostname>

	* 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  author  <author@hostname>

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

	* 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  author  <author@hostname>

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

	Thanks to Kazutaka HARADA for the patch

2004-11-29  author  <author@hostname>

	* 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  author  <author@hostname>

	* 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

	* 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  author  <author@hostname>

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

	* utils.c: Remove second unnecessary cast

	* 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

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

2004-11-26  author  <author@hostname>

	* ChangeLog, configure.in, jpilot.spec: 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

	* address_gui.c, memo_gui.c, restore_gui.c, todo_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

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

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

2004-11-25  author  <author@hostname>

	* 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  author  <author@hostname>

	* 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

	* 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  author  <author@hostname>

	* 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, address.c, address.h, address_gui.c, alarms.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, utils.h, weekview_gui.c:
	Add CVS Id tag to code

2004-11-21  author  <author@hostname>

	* po/fr.po: translate 6 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/sv.po, po/tr.po, po/vi.po, po/zh_CN.po, po/zh_TW.po:
	regeneration

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

	* jpilot.c: Test Id in header of file

	* 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  author  <author@hostname>

	* 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  author  <author@hostname>

	* 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  author  <author@hostname>

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

	* 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  author  <author@hostname>

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

	* 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  author  <author@hostname>

	* 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  author  <author@hostname>

	* 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  author  <author@hostname>

	* 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.

	* jpilot.c: removed declarations from mid-code

2004-11-11  author  <author@hostname>

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

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

	* utils.c: variable declared mid code

	* 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  author  <author@hostname>

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

2004-11-07  author  <author@hostname>

	* 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  author  <author@hostname>

	* 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  author  <author@hostname>

	* 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  author  <author@hostname>

	* 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  author  <author@hostname>

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

2004-10-29  author  <author@hostname>

	* 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.

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

2004-10-28  author  <author@hostname>

	* 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  author  <author@hostname>

	* 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

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

	* datebook_gui.c: datebook_gui.c

2004-10-22  author  <author@hostname>

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

	* 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

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

2004-10-20  author  <author@hostname>

	* ChangeLog, configure.in: version 0.99.8-pre2

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

2004-10-19  author  <author@hostname>

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

	* 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  author  <author@hostname>

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

2004-10-17  author  <author@hostname>

	* 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:
	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  author  <author@hostname>

	* 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

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

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

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

2004-10-15  author  <author@hostname>

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

	* 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  author  <author@hostname>

	* 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  author  <author@hostname>

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

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

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

2004-10-08  author  <author@hostname>

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

2004-10-07  author  <author@hostname>

	* 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

	* 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  author  <author@hostname>

	* 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  author  <author@hostname>

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

2004-10-04  author  <author@hostname>

	* address_gui.c, datebook_gui.c, memo_gui.c, todo_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  author  <author@hostname>

	* 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  author  <author@hostname>

	* 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

	* 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

2004-10-01  author  <author@hostname>

	* 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  author  <author@hostname>

	* 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  author  <author@hostname>

	* 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  author  <author@hostname>

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

	* po/jpilot.pot, 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:
	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  author  <author@hostname>

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

	* aclocal.m4, config.guess, config.sub, ltmain.sh, m4/Makefile.in:
	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  author  <author@hostname>

	* 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  author  <author@hostname>

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

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

	* 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  author  <author@hostname>

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

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

	* 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  author  <author@hostname>

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

2004-09-13  author  <author@hostname>

	* print_logo.c: Testing cvs auto emailer

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

	* print_logo.c: Testing cvs auto emailer

2004-09-06  author  <author@hostname>

	* 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  author  <author@hostname>

	* 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  author  <author@hostname>

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

2004-05-28  author  <author@hostname>

	* address.c: patch for bug 1178

2004-05-03  author  <author@hostname>

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

	* print_logo.c: Ludovic patch for setlocale

2004-04-21  author  <author@hostname>

	* po/cs.po, po/da.po, po/de.po, po/ja.po, po/no.po, po/sv.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  author  <author@hostname>

	* po/ru.po: updated for 0.99.7

2004-04-15  author  <author@hostname>

	* po/tr.po: updated for 0.99.7

	* po/es.po: updated

2004-04-08  author  <author@hostname>

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

2004-03-25  author  <author@hostname>

	* po/fr.po: help menu fix

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

2004-03-23  author  <author@hostname>

	* 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  author  <author@hostname>

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

2004-03-07  author  <author@hostname>

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

2004-03-04  author  <author@hostname>

	* address_gui.c: paste error

2004-03-03  author  <author@hostname>

	* AUTHORS: added Panayotis Katsaloulis for greek code

2004-03-01  author  <author@hostname>

	* 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

	* 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 ***

2004-02-29  author  <author@hostname>

	* 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  author  <author@hostname>

	* po/fr.po: update

2004-02-25  author  <author@hostname>

	* po/sv.po: File menu problem

2004-02-22  author  <author@hostname>

	* 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

	* 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/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

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

2004-02-21  author  <author@hostname>

	* memo_gui.c, sync.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  author  <author@hostname>

	* 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, Expense/expense.c, KeyRing/keyring.c, address_gui.c, memo_gui.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  author  <author@hostname>

	* jpilot.c: Made menu code a little simpler

2004-02-16  author  <author@hostname>

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

	* address_gui.c, datebook_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  author  <author@hostname>

	* datebook_gui.c: GTK2 patches accelerators - Rik

2004-02-11  author  <author@hostname>

	* jpilot.c: accelerators for GTK2, Ludovic Rouseau

2004-02-08  author  <author@hostname>

	* 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  author  <author@hostname>

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

2004-01-05  author  <author@hostname>

	* jpilot.c: Iconify at startup

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

2004-01-04  author  <author@hostname>

	* print_logo.c: added LC_ALL C

	* category.c: cp1252 patches

2004-01-02  author  <author@hostname>

	* 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, memo_gui.c, todo_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  author  <author@hostname>

	* 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  author  <author@hostname>

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

2003-12-29  author  <author@hostname>

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

2003-12-24  author  <author@hostname>

	* datebook.c: fixed endless for loop

2003-12-08  author  <author@hostname>

	* 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  author  <author@hostname>

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

2003-11-16  author  <author@hostname>

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

2003-11-13  author  <author@hostname>

	* 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  author  <author@hostname>

	* 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  author  <author@hostname>

	* address_gui.c: highlighting changed recs was broken

2003-10-10  author  <author@hostname>

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

2003-10-03  author  <author@hostname>

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

2003-09-14  author  <author@hostname>

	* 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  author  <author@hostname>

	* 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  author  <author@hostname>

	* KeyRing/README.txt, 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, todo.c, todo_gui.c, utils.c, weekview_gui.c:
	Ludovic Rousseau cleanup patch

	* Expense/expense.c: Expense buffer overflows

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

2003-07-31  author  <author@hostname>

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

2003-07-13  author  <author@hostname>

	* po/zh_TW.po: regenerated

	* icons/Makefile.am: Added README

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

	* SlackBuild.in: missing files

2003-07-12  author  <author@hostname>

	* 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-11  author  <author@hostname>

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

2003-07-06  author  <author@hostname>

	* 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

2003-07-05  author  <author@hostname>

	* 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  author  <author@hostname>

	* 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  author  <author@hostname>

	* 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  author  <author@hostname>

	* 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  author  <author@hostname>

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

	* po/ja.po: updated

2003-06-10  author  <author@hostname>

	* 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  author  <author@hostname>

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

2003-06-03  author  <author@hostname>

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

2003-06-02  author  <author@hostname>

	* po/jpilot.pot, 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

	* 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  author  <author@hostname>

	* 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  author  <author@hostname>

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

2003-05-21  author  <author@hostname>

	* print_headers.c: AM/PM being cut off

	* jpilot.spec: auto-generated

	* 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  author  <author@hostname>

	* datebook_gui.c: typo

	* datebook_gui.c: Fix DST on import

2003-05-02  author  <author@hostname>

	* 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  author  <author@hostname>

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

2003-04-23  author  <author@hostname>

	* 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

2003-04-22  author  <author@hostname>

	* 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, po/de.po, po/es.po:
	updated

	* po/Makefile.in.in, po/POTFILES: 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  author  <author@hostname>

	* po/vi.po: New Translation

2003-03-25  author  <author@hostname>

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

	* utils.c: null pointer fix

2003-03-23  author  <author@hostname>

	* po/nl.po: updated

2003-03-14  author  <author@hostname>

	* todo.c: minor fix

2003-03-13  author  <author@hostname>

	* todo.c: fixed null pointer

2003-02-26  author  <author@hostname>

	* address_gui.c: ldif export crash, fix

2003-02-23  author  <author@hostname>

	* po/POTFILES.in: added category.c

	* category.c: charset reverse translation

2003-02-22  author  <author@hostname>

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

	* po/ru.po: updated

	* 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:
	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  author  <author@hostname>

	* 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

	* jpilot.c: opening of browser windows

	* Makefile.am: -export-dynamic

2003-02-16  author  <author@hostname>

	* 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  author  <author@hostname>

	* 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  author  <author@hostname>

	* 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  author  <author@hostname>

	* 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  author  <author@hostname>

	* 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, address_gui.c, alarms.c, category.c, dialer.c, password.c, todo_gui.c, utils.c:
	gtk_widget_get_toplevel

2003-02-05  author  <author@hostname>

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

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

2003-02-04  author  <author@hostname>

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

2003-01-31  author  <author@hostname>

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

2003-01-24  author  <author@hostname>

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

2003-01-14  author  <author@hostname>

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

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

2003-01-13  author  <author@hostname>

	* 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  author  <author@hostname>

	* 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  author  <author@hostname>

	* 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  author  <author@hostname>

	* 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-30  author  <author@hostname>

	* po/fr.po: updated

2002-12-28  author  <author@hostname>

	* 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  author  <author@hostname>

	* 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, 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, utils.c, utils.h, weekview_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  author  <author@hostname>

	* configure.in: Detection of p-l version without try_run

2002-12-20  author  <author@hostname>

	* KeyRing/Makefile.in, configure.in: version

	* po/jpilot.pot: updated

	* po/Makefile.in, Expense/Makefile.in, SyncTime/Makefile.in, docs/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/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/sv.po, po/tr.po, po/zh_CN.po, po/zh_TW.po:
	update

	* utils.h, category.c, sync.c: category cleanup

	* autogen.sh: *** empty log message ***

2002-12-15  author  <author@hostname>

	* sync.c, log.c: Fixed debug on crash problem

2002-12-14  author  <author@hostname>

	* 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  author  <author@hostname>

	* log.c: More fixing of pipe logging code

2002-12-11  author  <author@hostname>

	* jpilot.c: Report build option in help window

	* autogen.sh: now pass configure options to configure

	* Expense/expense.c, address_gui.c, datebook_gui.c, dialer/jpilot-dial.c, todo.c, todo_gui.c, utils.c, utils.h:
	Added vCard, iCalendar export

	* address.c, alarms.c, category.c, config.h.in, configure.in, cp1250.c, dat.c, datebook.c, libplugin.c, memo.c, memo_gui.c, missing, password.c, sync.c:
	changes for pendantic biuld

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

	* KeyRing/keyring.c:
	Initial password generate code and pendantic changes

2002-12-03  author  <author@hostname>

	* 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  author  <author@hostname>

	* 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  author  <author@hostname>

	* 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, Expense/expense.c, SyncTime/synctime.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  author  <author@hostname>

	* SyncTime/synctime.c: minor log change

	* jpilot.c, log.c: Fixing pipe logging

2002-11-14  author  <author@hostname>

	* 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-10  author  <author@hostname>

	* jpilot.c: minor change

2002-11-05  author  <author@hostname>

	* po/fr.po: updated

2002-10-30  author  <author@hostname>

	* Expense/expense.c, KeyRing/keyring.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, todo.c, todo_gui.c, utils.c, utils.h, weekview_gui.c:
	jpilot_logf -> jp_logf

	* po/tr.po: updated

2002-10-25  author  <author@hostname>

	* 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  author  <author@hostname>

	* 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  author  <author@hostname>

	* 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  author  <author@hostname>

	* po/jpilot.pot: Removed stupid tilde ns

2002-10-13  author  <author@hostname>

	* po/fr.po: Updated

2002-10-11  author  <author@hostname>

	* alarms.c: Fixed the ignoring of exceptions for alarms

2002-10-09  author  <author@hostname>

	* 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  author  <author@hostname>

	* 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  author  <author@hostname>

	* 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  author  <author@hostname>

	* 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  author  <author@hostname>

	* 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  author  <author@hostname>

	* 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  author  <author@hostname>

	* 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  author  <author@hostname>

	* address.c, datebook.c, memo.c, prefs.c, prefs.h, todo.c:
	Changed English to Latin1

2002-09-23  author  <author@hostname>

	* docs/Makefile.in, Expense/Makefile.in, po/Makefile.in, m4/Makefile.in, 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

	* address.c, address_gui.c, datebook.c, datebook_gui.c, libplugin.c, libplugin.h, memo.c, memo_gui.c, sync.c, todo.c, todo_gui.c:
	Keeping unique IDs unique

	* depcomp: initial add

2002-09-09  author  <author@hostname>

	* configure: Use autogen.sh, or autoconf

2002-08-30  author  <author@hostname>

	* ChangeLog: Changes

	* configure.in: check for broken pilot-link versions

2002-08-28  author  <author@hostname>

	* autogen.sh, po/cat-id-tbl.c, po/messages.po, po/stamp-cat-id, m4/isc-posix.m4, m4/iconv.m4, m4/glibc21.m4, m4/codeset.m4, m4/atconfig.m4, m4/gtk.m4, m4/init.m4, m4/libtool.m4, m4/m4.m4, m4/missing.m4, m4/sanity.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, 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

	* ABOUT-NLS, COPYING, Expense/Makefile, Expense/Makefile.in, KeyRing/Makefile, KeyRing/Makefile.in, KeyRing/keyring.c, KeyRing/libplugin.h, Makefile.in, SyncTime/Makefile, SyncTime/Makefile.in, SyncTime/libplugin.h, SyncTime/synctime.c, aclocal.m4, address_gui.c, alarms.c, config.guess, config.h.in, config.sub, configure, configure.in, datebook.c, datebook.h, datebook_gui.c, docs/jpilot-sync.1, docs/jpilot-upgrade-99.1, docs/jpilot.1, export_gui.c, jpilot-col.spec, jpilot-dump.c, jpilot-sync.c, jpilot.c, jpilot.spec, jpilot.spec.in, jpilotrc.green, 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:
	*** empty log message ***

	* Expense/Makefile.am: automake support

	* Expense/Makefile, Expense/Makefile.in, Expense/expense.c, Expense/libplugin.h, po/Makefile, po/Makefile.in, po/Makefile.in.in, po/POTFILES, 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:
	*** empty log message ***

2002-08-27  author  <author@hostname>

	* 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, 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, SyncTime/Makefile.in, SyncTime/aclocal.m4, SyncTime/configure, SyncTime/configure.in, SyncTime/install-sh, SyncTime/libplugin.h, SyncTime/synctime.c, 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, 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, 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:
	Version 0.99

	* patch_dst_0.98: *** empty log message ***

	* 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, 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, po/Makefile.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:
	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, ABOUT-NLS, config.guess, config.sub, configure, ltconfig, ltmain.sh, mkinstalldirs, patch_dst_0.98, Expense/Makefile.in, Expense/aclocal.m4, Expense/configure, Expense/configure.in, Expense/expense.c, Expense/libplugin.h, SyncTime/Makefile.in, 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:
	Version 0.97

2002-08-26  author  <author@hostname>

	* 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.h, datebook_gui.c, install_gui.c, jpilot.c, log.c, log.h, memo.c, memo_gui.c, monthview_gui.c, prefs.c, prefs.h, prefs_gui.c, search_gui.c, sync.c, todo.c, todo_gui.c, utils.c, utils.h, weekview_gui.c:
	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.