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

	* camlibs/stv0680/library.c: Major rework of the Capture Preview
	  mode. It now supports all common formats of the camera and should
	  not stop after some captures.
	  Removed some of the double error conversions.
	
	* camlibs/stv0680/stv680.html: Some documentation fixes regarding 
	  Capture Image.
	   
2001-11-23  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/gphoto2-camera.c: Don't free a camera if it is 
	  currently in use. This fixes reentrancy crashes in gtkam on
	  shutdown during an operation.

2001-11-23  Colin Marquardt  <colin@marquardt-home.de>

	* frontends/command-line/options.c (usage): 
	  Make the help table format string translatable.
	  Make table lines 79 chars wide.

	* po/de.po (Message): All command line help table entries are now
	  translated.

2001-11-22  Marcus Meissner <marcus@jet.franken.de>

	* camlibs/stv0680/library.c: file_count can also use 
	  a different USB control message (0x8d), and it gets 
	  2 bytes for the number of images.

2001-11-22  Colin Marquardt  <colin@marquardt-home.de>

	* libgphoto2_port/libgphoto2_port/gphoto2-port.c (gp_port_write):
 	    Patch from Bill Marr <marr@shianet.org>:
	    Fix bug whereby hexadecimal output is erroneously 
            shown in decimal format.

2001-11-22  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* configure.in:
	* acconfig.h: No need for --with-multi any more
	* libgphoto2/gphoto2-camera.c: Add some comments about the 
	  problems with HAVE_MULTI.

2001-11-22  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/gphoto2-camera.[c,h]: Expose gp_camera_exit to the world.

2001-11-22  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* frontends/command-line/main.c: Mark more strings for translation

2001-11-22  Colin Marquardt  <colin@marquardt-home.de>

	* frontends/command-line/options.c: Make help descriptions
	  translatable.

2001-11-21  Colin Marquardt  <colin@marquardt-home.de>

	* frontends/command-line/main.c: Mark up more strings for
  	  translation.

	* camlibs/sierra/sierra.c: Spelling fixes.

2001-11-21  Marcus Meissner <marcus@jet.franken.de>
	
	* camlibs/stv0680/stv0680.html: Collected programming information
	  into nice HTML table.

2001-11-21  Colin Marquardt  <colin@marquardt-home.de>

	* po/POTFILES.in: Removed ../camlibs/canon/psa50.c

2001-11-21  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	I quote from an e-mail: "You (Lutz) should remove the code you added
	that broke (at least) two of the supported 'libgphoto2' camera
	libraries!!!" *sigh*. 

	* conigure.in: Add a --with-multi option and a warning that people
	  who use it will run into troubles with digita and dc240 and that
	  people who don't use it will run into troubles when using Nautilus
	  or Konqueror for browsing their camera.

2001-11-21  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/gphoto2-camera.[c,h]: Add a pre_func and a post_func 
	  that gets called before and after each access to the camera driver.
	* camlibs/konica/library.c: Use above functions.

2001-11-20  Gilles Grandou <gilles@grandou.net>

	* camlibs/sierra.[c,h]:
	  - intoduced camera classes, in order to customise behaviour for
	    various specific cameras.
	  - camera_init(): initialize model class in private library area,
	    initialize set_config and get_config function pointers.
	  - camera_get/set_config(): changed to address specific camera
	    classes. Currents one has been renamed for olympus cams, a new
	    one targeted to Epson cameras has been introduced. The default
	    set is pointing to Olympus for compatibility with current
	    code, but this should change in the future.
	  - camera_summary(): detect missing memory card. tested on Epson
	    3000z. added some info in summary.
	  - camera_manual(): added custom message for Epson cameras.
	    Current is targeted to Olympus ones. Default still display
	    Olympus message for compatibility.

2001-11-20  Hans Ulrich Niedermann <hun@n-dimensional.de>

	* HACKING: covertly introducing important policy changes :-)

2001-11-20  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* configure.in: Put gettext hack in again. Someone complained...

2001-11-19  Mariusz Woloszyn <emsi@ipartners.pl>
	
	* camlibs/ptp: added camera filenames support,
	* fixed some minor and major bugs in handling unaligned
	  structures

2001-11-19  Mariusz Woloszyn <emsi@ipartners.pl>
	
	* camlibs/ptp: basic (and hacked) ptp camera functionality:
	  only JPG image and thumbnails downloading supported

2001-11-19  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* configure.in: Remove gettext hack. Let's see if someone complains...

2001-11-18  Hans Ulrich Niedermann <hun@n-dimensional.de>

	* INSTALL: added note about RPM temporarily not working
	* doc/api/Makefile.am
	* libgphoto2_port/doc/Makefile.am: sourced out doc generation to
	  DocRules.am
	* libgphoto2_port/doc/DocRules.am: new file
	* configure.in
	* libgphoto2_port/configure.in
	* libgphoto2_port/m4/documentation.m4: disable building docs by
	  default 
	* libgphoto2_port/autogen.sh: added debug output
	* autogen.sh: added debug output & cleaned up a bit
	* configure.in: upped version to dev1 to map build errors to the
	  changes I just introduced

2001-11-18  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	Patch from Ole Aamot <Ole.Aamot@nr.no>:

	* tests: Use mcheck.h (useful when searching for mem-leaks).

2001-11-18  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	Patch from Bill Marr <marr@shianet.org>:

	* camlibs/digita/commands.c: Fix bug causing 8 bad trailing 
	  pixels in Digita thumbnail image download.

2001-11-17  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* frontends/command-line/options.c: Mark some more strings for
	  translation.

2001-11-17  Hans Ulrich Niedermann <hun@n-dimensional.de>

	* configure.in: changed package name from gphoto to gphoto2
	* configure.in: changed version from 2.0beta4 to 2.0beta4dev0 to
	  distinguish bug reports from various stages of beta4 development
	* camlibs/sonydscf1/README: added remark about general state of driver
	* libgphoto2_port/intl/Makefile.in
	* intl/Makefile.in: fixed incorrect location of config.h

2001-11-17  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* frontends/command-line: Fix translation. You use N_(...) to _mark_ a
	  string for translation. In order to convert it, you need to call
	  _(...). That is, call gp_camera_get_error in order to get a string
	  and after that, convert this string using _(...) before displaying
	  it.

2001-11-17  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/ptp/ptp.[c,h]: Hide some internals
	* frontends/command-line/main.c: Fix translation by calling
	  setlocale (LC_ALL, "") (?).

2001-11-17  Colin Marquardt  <colin@marquardt-home.de>

	* libgphoto2_port/configure.in (BUILD_INCLUDED_LIBINTL): Added
	  'de' to ALL_LINGUAS.

	* libgphoto2_port/po/de.po: Added translation.

2001-11-16  Hans Ulrich Niedermann <hun@n-dimensional.de>

	After Scott just released beta3, I tried to tag the correct file
	revisions as gphoto-2_0beta3.

	* configure.in: changed version number to 2.0beta4dev0 so we can
	  distinguish logs with the finer grain revisions. Just increase
	  the last number every time you made some changes that could
	  break or fix something of interest.

2001-11-15  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/ptp: Remove a whole lot of warnings, remove unnecessary
	  PTPResult (we've got PTP_RC_*), flesh out library.c a bit - still
	  not functional, though.

2001-11-15  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	Patch from Greg Ingram <ingram@symsys.com>, slightly reworked:

	* camlibs/polaroid/pdc700.c: Make the assumption that we need to 
	  deal with multiple packets only on PDC700_PIC and PDC700_THUMB.

2001-11-15  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* MAINTAINERS: Move camlibs/ptp up to regain alphabetical order.

2001-11-15  Mariusz Woloszyn <emsi@ipartners.pl>

	* camlibs/ptp/: Started PTP support library developement

2001-11-15  Colin Marquardt  <colin@marquardt-home.de>

	* po/de.po: Update.

2001-11-15  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/ptp: Basic structure for a new driver.

2001-11-14  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/polaroid/pdc700.c: Introduce enum PDCConf for better
	  readability (instead of #define).
	  (camera_set): Renamed into (pdc700_config) for consistency reasons.
	  (camera_get_config): Implement date and time here.
	  (camera_summary): I don't quite get it - this should read 2000 here
	  instead of 0 for V3.10? If not, please revert this and correct
	  both the remark in PDCDate and the code in camera_get_config.

2001-11-14  Greg Ingram <ingram@symsys.com>

	* camlibs/polaroid/pdc700.c: 
	  - boosted the preferred baudrate to 115200
	  - discovered the self-timer state datum 
	  - discovered how to set the camera's configuration, added 
	    camera_get_config() and camera_set_config() routines and flagged 
	    the config operation
	  - added some delaying tactics in pdc700_capture()
	  - added usb vendor/product ids (no, usb doesn't work yet)
	
2001-11-14  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* cammlibs/agfa/agfa.c: Initialize a.speed[0] to 0 instead of 
	  leaving it uninitialized.

2001-11-13  Hubert Figuiere  <hfiguiere@teaser.fr>

	* camlibs/kodak/dc240/library.c: Handle GP_ERROR_IO_TIMEOUT errors. Better
	  handling of checksums. (patch by Peter Fales <psfales@lucent.com>)
	* camlibs/kodak/dc240/dc240.c (camera_init): camera reset sends garbage
	  within the 1500ms timeout. Handle that properly with 2 read. (patch by
	  Peter Fales <psfales@lucent.com>)

2001-11-13 Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/gphoto2-filesys.c: Adjust filename only for thumbnails,
	  audio files, etc, not for normal pictures.

2001-11-12 Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* configure.in:
	* libgphoto2/libgphoto-2.0.pc.in: Renamed to ...
	* libgphoto2/libgphoto2.pc.in: ... this. It seems that people 
	  really want our project to be called libgphoto2 and not libgphoto...
	  Therefore, be consistent here, too.

2001-11-11 Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* frontends/command-line/main.c: Add a switch for GP_FILE_TYPE_AUDIO.

2001-11-10 Dan Fandrich <dan@coneharvesters.com>

	* libgphoto2/jpeg.[ch]: moved array definitions from .h to .c
	* libgphoto2_port/serial/unix.c: changed serial port prefix for Darwin

2001-11-10 Hans Ulrich Niedermann <gp@n-dimensional.de>

	* libghoto2_port/doc/Makefile.am
	* doc/api/Makefile.am: fixed condition rules (added else targets)

2001-11-10  Fredrik <fredrik@krixor.xy.org>

	* camlibs/canon/canon.c: Clear all of camera->pl right after
	  malloc(). psa50_eot needed explicit clearing. This was
	  causing problems with serial communication.
	* camlibs/canon/psa50.c: Don't free psa50_serial_dialogue()'s
	  receive buffer in psa50_get_disk(). This caused us to dump
	  core when accessing serial canon cameras.

2001-11-10  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/polaroid/pdc700.c: PPM-thumbnails are 9600 bytes, not
	  4800. Sorry, guys. Should work again.

2001-11-10  Greg Ingram <ingram@symsys.com>

	* camlibs/polaroid/pdc700.c: Report
	  memory size, power source, mode, and auto-power-off time  
	  in the camera_summary.

2001-11-09  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	Patch from Greg Ingram <ingram@symsys.com>, unfortunatelly without
	ChangeLog entry...

	* camlibs/polaroid/pdc700.c: Report lcd state and caption (?) in 
	  the camera_summary.

2001-11-09  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/sierra: Clean up header files (hide internals, make
	  functions static)

2001-11-08  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/sierra: Improve error reporting. Use register 47 for 
	  pic-info retrieval. Support GP_FILE_TYPE_AUDIO.

2001-11-08  Chris Pinkham <cpinkham@infi.net>

	* camlibs/jamcam/README
	  camlibs/jamcam/jamcam.c
	  camlibs/jamcam/library.h
	  camlibs/jamcam/library.c: made downloading images more robust and
	  added better error recovery.  Added support for downloading images
	  from MMC card.  Changed summary info to show support for v2 cameras.
	  Fixed gp_camera_progress percentage argument to be >0 and <1.

2001-11-08  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/gphoto2-filesys.h: Expand CameraFileInfo to include 
	  information about audio data, too.

2001-11-08  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	Patches from Greg Ingram <ingram@symsys.com>:

	* camlibs/polaroid/pdc700.c: Lots of new stuff

2001-11-06  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* gphoto2-file.c: Added GP_FILE_TYPE_AUDIO for cameras that can
	  attach audio data to a picture.

2001-11-06  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	Patch by Peter Jay Salzmann <p@dirac.org> (slightly adapted):

	* camlibs/polaroid/pdc700.c: Tell the user about the current image
	  quality setting.

2001-11-06  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/gphoto2-filesys.c: Don't trust the camera libraries,
	  set name, type, and adjust name for mime type after getting a file.

2001-11-06  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	Chris Pinkham <cpinkham@corp.infi.net> decoded the thumbnails:

	* camlibs/polaroid/pdc700.c: Convert the thumbnails from YUV 2:1:1
	  to PPM.

2001-11-06  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/polaroid/pdc700.c: Fix memmove (third parameter is # of
	  bytes to be moved). Display version information in camera_summary.

2001-11-05  Colin Marquardt  <colin@marquardt-home.de>

	* po/de.po: Update. Convert quote signs to the ones recommended by
                    the folks at de@li.org.

2001-11-05  Chris Pinkham <cpinkham@infi.net>

	* camlibs/jamcam/jamcam.c
	  camlibs/jamcam/library.c: added initial support for MMC card on
	  Jamcam v3 cameras.  added more error checking.  changed camera
	  model string to "KBGear JamCam" instead of
	  "KBGear JamCam v3.0" since driver supports both v2 and v3
	  cameras now.

2001-11-05  Marcus Meissner <marcus@jet.franken.de>

	* camlibs/jd11: Implemented progress reporting.

2001-11-05  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/polaroid/pdc700.c: Checksum is only 1 byte long.

2001-11-05  Chris Pinkham <cpinkham@infi.net>

	* camlibs/panasonic/coolshot/coolshot.c
	  camlibs/panasonic/coolshot/library.c
	  camlibs/jamcam/jamcam.c
	  camlibs/jamcam/library.c: added support for gp_camera_progress().
	  Fixed bug in jamcam driver jamcam_file_count() routine.

2001-11-05  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/polaroid/pdc700.c: Timeout = 2sec, try each speed 2 times.

2001-11-05  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/sierra/PROTOCOL: Updated (upload).

2001-11-04  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/polaroid/pdc700.c: While searching the archives, I found
	  some dumps and saw that there is something wrong with the logic in
	  pcd700_read. Why didn't anyone fix?

2001-11-04  Stephane Castejon <scastejo@club-internet.fr>

	* liggphoto2/gphoto2-result.c,h : remove GP_ERROR_LOW_BATTERY
	* camlibs/sierra/library.c : add an error message regarding the
	  low battery level.

2001-11-04 Hans Ulrich Niedermann <gp@n-dimensional.de>

	* frontends/command-line/interface.c: clarified comment
	* frontends/command-line/main.c: added note for user that the
	  error msg from _set_error may be unrelated to real error
	* libgphoto2/gphoto2-filesys.c: improved comment for
	  gp_filesystem_set_file_funcs() 
	* libgphoto2_port/doc/Makefile.am: added dependencies like in
	  doc/api/Makefile.am - rebuilds docs now 

	* libgphoto2_port/doc/gphoto2-port-sections.txt
	* libgphoto2_port/libgphoto2_port/gphoto2-port-log.c
	* libgphoto2_port/libgphoto2_port/gphoto2-port-log.h:
	  reintroduced GPLogLevel for log levels instead of int. maintains
	  source compatibility.

	* libgphoto2_port/usb/libusb.c: fixed classification of success
	  msg; clarified one error message 
	
	* camlibs/sonydscf55/sony.c: prepare for building docs

	* camlibs/canon/canon.c:
	  - models[] now ends with { NULL, 0, 0, 0 } instead of { 0, 0, 0 }
	  - is_image now is true for both .JPG and .CRW images
	  - changed several calls to gp_debug* to GP_DEBUG
	  - added lots of comments and made existing ones gtkdoc-able
	  - added debug code to _get_file_path
	* camlibs/canon/canon.h: #define GP_MODULE "canon"
	* camlibs/canon/psa50.c:
	  - added, improved and gtkdoc-abled comments for functions
	    that are likely to survive restructuring
	  - changed several calls to gp_debug* to GP_DEBUG

2001-11-03  Stephane Castejon <scastejo@club-internet.fr>

	* camlibs/sierra/sierra.c,h
	* camlibs/sierra/library.c,h
	Add support for the upload feature.
	Replace gp_port_settings_[get/set] by gp_port_[get/set]_settings

	* liggphoto2/gphoto2-result.c,h : add GP_ERROR_LOW_BATTERY

2001-11-03 Marcus Meissner <marcus@jet.franken.de>

	* camlibs/template/template.c: Make it compile with current libraries.
	  Added NLS macros, missing functions, etc.

2001-11-03 Marcus Meissner <marcus@jet.franken.de>
	
	* camlibs/agfa/agfa.c
	* camlibs/barbie/barbie.c
	* camlibs/canon/psa50.c
	* camlibs/digita/digita.c
	* camlibs/dimera/dimera3500.c
	* camlibs/jamcam/jamcam.c
	* camlibs/jd11/jd11.c
	* camlibs/panasonic/dc1000.c
	* camlibs/panasonic/dc1580.c: 
	  If we check for 'ENABLE_NLS', we need to include <config.h>.
	  Fix 'redefinition of _' compile warnings due to broken copy & pasted
	  macro.

2001-11-01 Marcus Meissner <marcus@jet.franken.de>
	
	* camlibs/jd11:
	  - added Bayer interpolation, kept old mode as 'raw'.
	  - added configuration widgets and calls for Bulb Exposure Time
	    and Color Weighting
	  - fixed number of images for 0 images (was returning 1)
	  - cleaned up several functions in regard to GP_ return values.
	  - added resend commands to the packet reader.
	  - Added the I/O Magic MagicImage 420 as compatible camera.
	* camlibs/jd11/jd11.html: Added more information gained from the
	  Twain drivers.

2001-11-01 Marcus Meissner <marcus@jet.franken.de>
	
	* frontends/command-line/main.c: x was not set to 0 before listing
	  serial speeds leading to corrupt output.

2001-11-01 Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/gphoto2-filesys.c: Fix bug (folder deletion)

2001-11-01 Lutz Müller <urc8@rz.uni-karlsruhe.de>

	Patch from Chris <adapt@ihug.co.nz>:

	* frontends/command-line/main.c: Don't gp_file_free twice

2001-10-28 Hans Ulrich Niedermann <gp@n-dimensional.de>

	* packaging/rpm/package.spec.in: cleaned up file lists, moved .a and .la to -devel
	
2001-10-31 Dan Fandrich <dan@coneharvesters.com>

	* camlibs/agfa/Makefile.am
	* camlibs/barbie/Makefile.am
	* camlibs/canon/Makefile.am
	* camlibs/casio/Makefile.am
	* camlibs/digita/Makefile.am
	* camlibs/dimera/Makefile.am
	* camlibs/directory/Makefile.am
	* camlibs/fuji/Makefile.am
	* camlibs/jamcam/Makefile.am
	* camlibs/jd11/Makefile.am
	* camlibs/jd350e/Makefile.am
	* camlibs/kodak/dc120/Makefile.am
	* camlibs/kodak/dc210/Makefile.am
	* camlibs/kodak/dc240/Makefile.am
	* camlibs/kodak/dc3200/Makefile.am
	* camlibs/konica/Makefile.am
	* camlibs/minolta/dimagev/Makefile.am
	* camlibs/panasonic/Makefile.am
	* camlibs/panasonic/coolshot/Makefile.am
	* camlibs/panasonic/l859/Makefile.am
	* camlibs/polaroid/Makefile.am
	* camlibs/samsung/Makefile.am
	* camlibs/sierra/Makefile.am
	* camlibs/sonydscf1/Makefile.am
	* camlibs/sonydscf55/Makefile.am
	* camlibs/stv0680/Makefile.am
	* camlibs/template/Makefile.am
	* libgphoto2_port/serial/Makefile.am
	* libgphoto2_port/usb/Makefile.am: added -module flag to libtool link 
	  command for each library that is dlopen'ed

2001-10-31 Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/bayer.c: Remove unused variable
	* libgphoto2/gphoto2-camera.c: Use the library handle in order
	  to check if the camera has been initialized. Make it possible
	  to call gp_camera_set_[port_info,abilities] on an already
	  initialized camera.

2001-10-31 Dan Fandrich <dan@coneharvesters.com>

	* camlibs/dimera/*.c: use renamed get/set functions, gp_camera_set_error

2001-10-30  Hubert Figuiere  <hfiguiere@teaser.fr>

	* README: added a few USB Mass storage cameras.

2001-10-30 Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/polaroid/pdc640.c: If you malloc memory for camera->pl, 
	  free it in camera_exit.

2001-10-30 Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* frontends/command-line/gphoto2-cmd-config.c:
	  Implement GP_WIDGET_TEXT and GP_WIDGET_TOGGLE
	* camlibs/directory/directory.c: Expand configuration dialog
	  for testing purposes. Additions #ifdef'd out.

2001-10-30 Fredrik <fredrik@krixor.xy.org>

	* frontends/command-line/interface.c: Since status messages are
	  now written to stderr, flush stderr instead of stdout.

2001-10-30 Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* frontends/command-line/main.c: Be more elaborate about wrong ports.
	  Fixes #475320

2001-10-30 Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* frontends/command-line/main.[c,h]: Fix --capture-image

2001-10-29 Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* frontends/command-line/interface.c: Suppress empty status
	  messages. Those indicate that we should _clear_ the status and 
	  not print _anything_.
	* frontends/command-line/main.c: No need for gp_camera_init 
	  anymore
	* libgphoto2/gphoto2-camera.c: Make sure the camera is 
	  initialized.

2001-10-29 Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/gphoto2-abilities-list.c: Additional debug message. Spews
	  a lot of output, but people get segfaults when loading camera 
	  libraries and we need to know on which library.

2001-10-29 Marcus Meissner <marcus@jet.franken.de>

	* camlibs/jd11/jd11.c: Added Quark Probe 99, Argus DC-100 and DC-2000
	  as compatible models. Reported by Russ Burdick.

2001-10-28 Hans Ulrich Niedermann <gp@n-dimensional.de>

	* TESTERS: added list of volunteer testers to the source distribution
	* frontends/command-line/interface.c: moved status msgs to stderr
	* libgphoto2/gphoto2-abilities-list.c: don't scan USB for ID 0, 
	  better (?) error handling and reporting
	* libgphoto2_port/libgphoto2_port/gphoto2-port.c: removed report 
	  about param that is only passed on
	* libgphoto2_port/usb/libusb.c: improved error reporting
	* packaging/usbcam.console: improved chown/chmod handling 
	  (race condition removed)
	* packaging/rpm/package.spec.in: begun support for automatic file lists

2001-10-27 Marcus Meissner <marcus@jet.franken.de>

	* camlibs/jd11: New Jenoptik JD11 driver for gphoto2.
	* configure.in: added jd11 subdirs
	* MAINTAINERS: added myself

2001-10-27 Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/canon/canon.c: rmdir/mkdir support
	* camlibs/canon/psa50.c (psa50_directory_operations): Consistently
	  return a gphoto2 error code.
	* camlibs/directory: Add rmdir/mkdir support
	* libgphoto2/gphoto2-camera.[c,h]
	* libgphoto2/gphoto2-filesys.[c,h]: Add rmdir/mkdir support

2001-10-26 Hans Ulrich Niedermann <gp@n-dimensional.de>

	* Makefile.am: moved spec file to packaging/rpm/
	* Makefile.am: added CDPATH warning, rpm target and cvs-tags target
	* gphoto.spec.in: moved spec file to packaging/rpm/package.spec.in
	* configure.in: added packaging/rpm/Makefile.am
	* configure.in: moved spec file to packaging/rpm/
	* packaging/Makefile.am: added rpm/, removed README.rpm
	* packaging/rpm/: new directory with Makefile.am and .cvsignore
	* packaging/Makefile.am: use @PACKAGE@-@VERSION@.spec for the SRPM file
	* packaging/README.rpm: removed obsolete how-to-build-a-RPM docs
	* packaging/rpm/README.rpm: added new this-is-how-our-RPM-works-internally docs
	* libgphoto2_port/po/POTFILES.in: gphoto2-port.c, not gp_port.c

2001-10-26 Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/canon/serial.c: gp_port_pin_get -> gp_port_get_pin

2001-10-26 Hans Ulrich Niedermann <gp@n-dimensional.de>

	* libgphoto2/gphoto2-debug.h: reformatted a little bit (more comments)
	* packaging/Makefile.am: fixed typo resulting in wrong dir creation
	* camlibs/fuji/.cvsignore: added (copied .cvsignore from camlib/canon)
	* doc/api/.cvsignore: added scan
	* intl/.cvsignore: added po2tbl.sed
	* libgphoto2_port/intl/.cvsignore: added po2tbl.sed
	* libgphoto2_port/doc/.cvsignore: added scan and tmpl
	* camlibs/canon/util.c: added explanatory comment
	* camlibs/samsung/samsung.c: added #include <string.h>
	* camlibs/canon/psa50.c: added function prototypes
	* libgphoto2/exif.c: added function prototypes
	* tests/test-gphoto2.c_ replaced exit() by return() in main()

2001-10-26 Fredrik <fredrik@krixor.xy.org>

	* camlibs/canon/.indent.pro:
	  Added -T GPPort and some other types
	* camlibs/canon/psa50.c:
	* camlibs/canon/psa50.h:
	* camlibs/canon/canon.c:
	* camlibs/canon/serial.c:
	* camlibs/canon/util.c:
	  Moved all global variables into camera->pl.
	  Re-indented.
	  Fixed small memory leak in update_disk_cache().
	  Renamed psa50_dir to canon_dir since a comment said to do
	  so when merging with more camera models (something that
	  was done a long time ago).
	  Added some comments.
	  Added/improved debugging output.
	  Cleaned out some superfluous debugging I forgot in my last
	  big patch.

2001-10-26 Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* include: Move everything from here ...
	* libgphoto2: ... to here.

2001-10-26 Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2: Adapt to changes in libgphoto2_port

2001-10-26 Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* frontends/command-line/gphoto2-cmd-capture.c: Adjust brighness
	  and contrast with arrow keys

2001-10-26 Dan Fandrich <dan@coneharvesters.com>

	* libgphoto2_port/include/gphoto2-portability.h:
	* libgphoto2_port/include/gphoto2-port-parallel.h:
	* libgphoto2_port/include/gphoto2-port-serial.h:
	* libgphoto2_port/serial/unix.c:
	* libgphoto2/jpeg.c:
	  Preliminary support for OS X/Darwin

2001-10-26 Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* configure.in: Check for jpeglib and aalib.
	* frontends/command-line/main.c
	* frontends/command-line/Makefile.am
	* frontends/command-line/gphoto2-cmd-capture.[c,h]: New. Display 
	  the preview prior saving it.

2001-10-24 Hans Ulrich Niedermann <gp@n-dimensional.de>

	* gphoto.spec.in: hotplug dependency is a prereq not a requires
	  (patch by Tim Waugh <twaugh@redhat.com>)

2001-10-25 Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/canon/serial.[c,h]: No need to set the port path anywhere.
	  This is fully handled by gphoto2. That is: gp_settings_get, 
	  adjust what needs to be adjusted, and then gp_settings_set.
	* camlibs/canon/canon.c: Adjust parameters to canon_serial_init
	* camlibs/digita/serial.c: there is no dev->device_fd any more

2001-10-25 Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* frontends/command-line/main.c: Remember --camera and --port

2001-10-25 Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* frontends/command-line/main.c: Adapt to changes in gphoto2-port
	* libgphoto2: Here, too.

2001-10-24 Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* configure.in
	* acconfig.h: Check for CDK
	* frontends/command-line/Makefile.am
	* frontends/command-line/gphoto2-cmd-config.[c,h]: New
	* frontends/command-line/main.c: Hook up --config

2001-10-25  Colin Marquardt  <colin@marquardt-home.de>

	* (Repository): s/retreiv/retriev/g

2001-10-24 Hans Ulrich Niedermann <gp@n-dimensional.de>

	* camlibs/jamcam/library.h: removed completely unnecessary compiler
	  warning
	* camlibs/sonydscf1/command.c: added #include <string.h> and
	hopefully fixed calls to strndup 
	* frontends/command-line/main.c: added debug output of guessed
	port, moved debugging interface to final log level handling,
	output logging information on stderr instead of stdout 
	* libgphoto2/exif.[ch]: moved definition of tagnames[]= from
	exif.h to exif.c, left an extern decl
	* libgphoto2/gphoto2-debug.c: simplified gp_debug_printf by using
	gp_logv instead of gp_log
	* libgphoto2_port/libgphoto2_port/gphoto2-port-log.c: moved to
	final log level mechanism, undefine HEXDUMP_ constants after use
	* libgphoto2_port/libgphoto2_port/gphoto2-port-log.h: moved to
	final log level mechanism using lots of comments


2001-10-24  Colin Marquardt  <colin@marquardt-home.de>

	* po/de.po: Update.

2001-10-24 Hans Ulrich Niedermann <gp@n-dimensional.de>

	* doc/gphoto.txt: adapted to new hotplug scripts
	* packaging/Makefile.am: add hotplug scripts to docs when installing
	* packaging/Makefile.am: add README.rpm
	* packaging/README.rpm: added RPM build instructions

2001-10-23 Lutz Müller <urc8@rz.uni-karlsruhe.de>

	Bug reported by David Robert <david@ombrepixel.com>:

	* frontends/command-line/shell.c: Fix bug (leading blanks with
	  filenames)

2001-10-23 Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/gphoto2-core.[c,h]: Removed. All functions redirected
	  to gphoto2-abilities-list. Caching of this list should be done 
	  in the frontend.
	* frontends/command-line/main.c: Don't use gp_autodetect.
	* libgphoto2/setting.c: Move some initialization stuff from 
	  gphoto2-core to here.

2001-10-23 Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs: Remove every reference to gp_camera_result_as_string
	  including camera->functions->result_as_string. It was mostly
	  unused anyways.
	* frontends/command-line/main.c: No history any more
	* libgphoto2/gphoto2-camera.[c,h] (gp_camera_[get,set]_error): New

2001-10-23 Hans Ulrich Niedermann <gp@n-dimensional.de>

	* camlibs/canon/util.c: made canon debug use gp_log. 
	  this makes canon drv to compile again

2001-10-23 Lutz Müller <urc8@rz.uni-karlsruhe.de>

	Patch from Fredrik <fredrik@krixor.xy.org>:

	* libgphoto2/gphoto2-debug.c: Bug fix

2001-10-23 Lutz Müller <urc8@rz.uni-karlsruhe.de>

	Patch from Carsten Weinholz <c.weinholz@netcologne.de>, slightly
	modified (removed unnecessary //-comments, indentation):

	* camlibs/stv0680: Added support for "Aiptek PenCam Trio"

2001-10-22 Hans Ulrich Niedermann <gp@n-dimensional.de>

	* packages/usbcam.group: added. linux-hotplug script
	* packages/usbcam.console: added. linux-hotplug script
	* packages/Makefile.am: added.
	* packages/.cvsignore: added.
	* gphoto.spec.in: simplified a bit (only gphoto and 
	  gphoto-devel, no lib* packages any more). added hotplug support.
	* configure.in: added packaging/
	* Makefile.am: added packaging/, added .tar.bz2 dist support

2001-10-22 Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* frontends/command-line/main.c: Don't use gphoto2-core.h - use
	  gphoto2-abilities-list.h.

2001-10-22 Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* frontends/command-line/main.c: Adjust to changes in
	  gphoto2-port-log.h.

2001-10-22 Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/canon: Use camera->pl instead of camera->camlib_data.
	  Add warning about use of global variables.
	* libgphoto2/gphoto2-camera.h: Remove camera->camlib_data.

2001-10-22 Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/canon/canon.c: Use the CameraFilesystem. Declare some
	  functions static.
	* libgphoto2/gphoto2-camera.[c,h]: We now use the CameraFilesystem
	  exclusively - major cleanup. 

2001-10-22 Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/gphoto2-camera.c: Autodetect also in case of 
	  camera->port != NULL.
	* frontends/command-line/main.c: Only call gp_camera_set_abilities
	  if a model has been specified. Same with gp_camera_set_port_path.

2001-10-22 Fredrik <fredrik@krixor.xy.org>

	* camlibs/canon/psa50.c:
	Added all USB commands to a nice structure so that you call
	psa50_usb_dialogue() with a function identifier and don't have to keep
	track of cmd1,cmd2,cmd3 and length of camera reply.

	* camlibs/canon/psa50.c:
	Separated the "returns L (long) data" commands from psa50_usb_dialogue()
	and made a new psa50_usb_long_dialogue() that handles these correctly.
	This should fix a number of problems with those kinds of transfers (I
	previously fixed this for get_file, now it is fixed for all functions
	using this). Large directorys filling more than one USB bulk packet
	probably never worked before, but should work now.

	* camlibs/canon/canon.c:
	* camlibs/canon/psa50.c:
	* camlibs/canon/serial.c:
	* camlibs/canon/usb.c:
	Improved function error reporting for fetching of thumbnails and
	pictures and at the same time fixed a one-byte-per-pic-downloaded memory
	leak ;)

	Added lots of error checking and better debug result reporting to various
	functions.

	Changed hard-coded attribute values to easier-to-understand-and-maintain
	defines.

	Changed a bunch of fprintf() and perror() to gp_debug_printf().

2001-10-21 Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* doc/api: Some additions
	* libgphoto2/Makefile.am
	* libgphoto2/gphoto2-library.c: Dummy file, needed by gtk-doc
	* libgphoto2/gphoto2-camera.[c,h]: Updated documentation

2001-10-21 Hans Ulrich Niedermann <gp@n-dimensional.de>

	* libgphoto2_port/libgphoto2_port/gp_port.c: log USB IDs in hex instead of decimal

2001-10-20 Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/kodak/dc120: Prepare for camera->camlib_data removal. Fix
	  compile warnings

2001-10-20 Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/kodak/dc3200: Prepare for camera->camlib_data removal.

2001-10-20 Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/panasonic: Prepare for camera->camlib_data removal. Fix lots
	  of compile warnings. Remove gp_port_[close,free,new] (sic).

2001-10-20 Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/agfa/commands.h: Unused -> removed.
	* camlibs/agfa/Makefile.am: Reflect above.
	* camlibs/agfa/agfa.[c,h]: Use camera->pl instead of
	  camera->camlib_data. Fix small memory leak in camera_init (in case
	  of error).

2001-10-20 Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/minolta/dimagev/dimagev.[c,h]: Prepare for removal of
	  camera->camlib_data. Fix memory leaks (in case of errors).

2001-10-20 Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/digita:
	* camlibs/dimera: Prepare for elimination of camera->camlib_data.
	* camlibs/konica: Some additional debugging messages

2001-10-20 Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/gphoto2-camera.[c,h] (gp_camera_get_port_speed): New

2001-10-20 Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/kodak/dc240/library.c: Don't access a CameraFile directly.
	  This lets us ...
	* libgphoto2/gphoto2-file.[c,h]: ... make internals of CameraFile
	  private. Header file moved from include over to here in order to
	  prepare for documentation

2001-10-20 Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs: Instead of camera->port_info->speed, use
	  settings.serial.speed. That lets us ...
	* libgphoto2/gphoto2-camera.[c,h]: ... remove camera->port_info

2001-10-20 Hans Ulrich Niedermann <gp@n-dimensional.de>

	* gphoto.spec.in: made RPM spec file work for 1st time

2001-10-20 Hans Ulrich Niedermann <gp@n-dimensional.de>

	* configure.in
	* include/.cvsignore
	* libgphoto2_port/configure.in
	* libgphoto2_port/include/.cvsignore: moved config.h and stamp-h to include/

2001-10-20 Hans Ulrich Niedermann <gp@n-dimensional.de>

	* libgphoto2_port/stamp-h.in: removed as file is generated automatically anyway
	* libgphoto2_port/doc/Makefile.am
	* doc/api/Makefile.am: added DESTDIR to installation of html files
	* gphoto.spec.in: use DESTDIR for installation
	* .cvsignore: ignore *.tar.{bz2,gz}
	* HACKING: added licensing paragraph (LGPL vs. GPL)

2001-10-20 Hans Ulrich Niedermann <gp@n-dimensional.de>

	* Makefile.am
	* camlibs/agfa/Makefile.am
	* camlibs/barbie/Makefile.am
	* camlibs/canon/Makefile.am
	* camlibs/digita/Makefile.am
	* camlibs/dimera/Makefile.am
	* camlibs/directory/Makefile.am
	* camlibs/jd350e/Makefile.am
	* camlibs/kodak/Makefile.am
	* camlibs/kodak/dc120/Makefile.am
	* camlibs/kodak/dc240/Makefile.am
	* camlibs/kodak/dc3200/Makefile.am
	* camlibs/konica/Makefile.am
	* camlibs/minolta/Makefile.am
	* camlibs/minolta/dimagev/Makefile.am
	* camlibs/panasonic/Makefile.am
	* camlibs/polaroid/Makefile.am
	* camlibs/sierra/Makefile.am
	* camlibs/sonydscf1/Makefile.am
	* camlibs/stv0680/Makefile.am
	* doc/api/Makefile.am
	* frontends/command-line/Makefile.am
	* libgphoto2_port/Makefile.am
	* libgphoto2_port/doc/Makefile.am
	* libgphoto2_port/include/Makefile.am
	* libgphoto2_port/libgphoto2_port/Makefile.am
	* libgphoto2_port/serial/Makefile.am
	* libgphoto2_port/usb/Makefile.am
	* camlibs/Makefile.am: added missing files to EXTRA_DIST and/or *_SOURCES

2001-10-19 Hans Ulrich Niedermann <gp@n-dimensional.de>

	* libgphoto2_port/libgphoto2_port/Makefile.am: use $(libdir) as library directory
	* libgphoto2/Makefile.am: moved docs to DOC_DIR
	* libgphoto2_port/Makefile.am: added m4/ directory, moved docs to DOC_DIR
	* libgphoto2_port/autogen.sh: add m4/ dir for aclocal
	* libgphoto2_port/configure.in: add m4/ dir, sourced out doc stuff, new version, check for install
	* libgphoto2_port/doc/Makefile.am: moved to $(htmldir)
	* libgphoto2_port/m4/documentation.m4: added sourced out doc stuff
	* libgphoto2_port/m4/Makefile.am: added
	* doc/Makefile.am: added docs in DOC_DIR
	* doc/api/Makefile.am: moved to $(htmldir)
	* configure.in: sourced out doc stuff, check for install
	
2001-10-19 Dan Fandrich <dan@coneharvesters.com>

    * frontends/command-line/main.c: Added automatic port type guessing
      when the type isn't specified

2001-10-19  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/casio
	* camlibs/polaroid
	* camlibs/barbie
	* camlibs/dimera
	* camlibs/jamcam
	* camlibs/panasonic/coolshot
	* camlibs/samsung: Use camera-fs and get_file_func

2001-10-19  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/kodak/dc240: Use camera->fs - this should fix file deletion
	  that I broke earlier.
	* camlibs/kodak/dc3200: Use camera->fs. Don't use
	  gp_port_[new,free,open,close]. Declare some functions static in
	  order to fix compile warnings.

2001-10-18  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* frontends/command-line/main.c: Port to gp_log
	* libgphoto2/gphoto2-debug.[c,h]: Clean up even more.
	* po/POTFILES.in: Add frontends/command-line/main.c

2001-10-18  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/digita/digita.c: Fix compile warnings ("static ..."). Use
	  camera->fs.

2001-10-18  Fredrik <fredrik@krixor.xy.org>

	* frontends/command-line/main.c: Only try to set port speed if port
	  begins with 'serial' since gp_camera_set_port_speed() now fails
	  if called for non-serial port.

2001-10-18  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/canon.c: Don't use camera->model.
	* libgphoto2/gphoto2-camera.[c,h]: Remove camera->model.

2001-10-18  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/polaroid/pdc320.[c,h]: Don't use camera->model.

2001-10-18  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/sonydscf55: Use camera->pl, fix compile warnings

2001-10-18  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/panasonic/l859
	* camlibs/sierra: Use camera->pl

2001-10-17  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs: Don't use camera->port_info->path. This one has already
	  be set by gphoto2

2001-10-17  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/directory/directory.c: Use camera->fs exclusively.

2001-10-17  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/jd350e: Use camera->port directly. 

2001-10-17  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/stv0680: Make direct use of camera->port. Kill compile 
	  warnings by declaring some functions static.

2001-10-17  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/konica/library.c: Use camera->pl
	* libgphoto2/gphoto2-camera.[c,h]: Move lots of internals into 
	  camera->pc (for core use only) and offer hook for camera libraries
	  (camera->pl) and frontends (camera->pf)

2001-10-17  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* frontends/command-line/main.c: Use gp_log.
	* libgphoto2/gphoto2-debug.[c,h]: Use gp_log.

2001-10-17  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/gphoto2-debug.c: Make tranition to gp_log_*
	* camlibs/sierra: Adjust parameters of camera_capture

2001-10-17  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* README: no glib-dependency any more
	* camlibs: gp_abilities_new doesn't exist any more
	* doc/api: Even more documentation
	* libgphoto2/gphoto2-abiltiies.h: Cleaned up.
	* libgphoto2/gphoto2-abilities-list.c: Documented

2001-10-16  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	Patch from Dan Fandrich <<dan@coneharvesters.com>:

	* libgphoto2/gphoto2-abilities-list.c:
	* libgphoto2/gphoto2-camera.c: Make models case-insensitive.

2001-10-16  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/gphoto2-camera.[c,h]: Documented

2001-10-16 Dan Fandrich <dan@coneharvesters.com>

	* camlibs/dimera/*: added i18n support; improved error returning
	* po/POTFILES.in: added dimera3500.c

2001-10-16 Hans Ulrich Niedermann <gp@n-dimensional.de>

	* doc/api/.cvsignore: added tmpl directory and .cvsignore~

2001-10-16 Hans Ulrich Niedermann <gp@n-dimensional.de>

	* camlibs/casio/casio-qv.c:
	* camlibs/dimera/dimera3500.c:
	* camlibs/dimera/mesalib.c:
	* camlibs/sonydscf55/sony.c:
	* libgphoto2/abilities.c:
	* libgphoto2/gphoto2-abilities-list.c:
	* tests/test-filesys.c: added #include lines that should have already been there

2001-10-16 Hans Ulrich Niedermann <gp@n-dimensional.de>

	* frontends/command-line/main.c: added package and version to debug msgs
	* frontends/command-line/main.c: added --print-usb-usermap command
	* frontends/command-line/main.h: added definition name of hotplug script

2001-10-16  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* frontends/command-line/main.c: Use gp_camera_set_abilities.
	* include/gphoto2-camera.h:
	* libgphoto2/camera.c:Introduce gp_camera_[set,get]_abilities.

2001-10-16  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/gphoto2-result.[c,h]: GP_ERROR_NOT_SUPPORTED now in
	  libgphoto2_port.

2001-10-16  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/camera.c:
	* camlibs/konica/library.c:
	* camlibs/kodak/dc240/dc240.c:
	* camlibs/sierra: GP_ERROR_IO_UNKNOWN_PORT -> GP_ERROR_UNKNOWN_PORT
	* frontends/command-line: Kill warnings
	* configure.in: There are now some header files in
	  libgphoto2_port/libgphoto2_port
	* include/gphoto2-camera.h: Use the new GPPort and GPPortInfo

2001-10-16  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	Bug found by Fredrik <fredrik@krixor.xy.org>:

	* doc/api/Makefile.am: Don't if-out everything.

2001-10-16  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	Bug found by Colin Marquardt <colin@marquardt-home.de>:

	* doc/api/Makefile.am: Don't generate documentation if not
	  ENABLE_GTK_DOC

2001-10-15  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/gphoto2-debug.[c,h]: Documented.

2001-10-15  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	Patch approved by Gus Hartmann <hartmann@madison-expat.net>:

	* camlibs/minolta/dimagev/download.c
	* camlibs/minolta/dimagev/upload.c: Don't access the CameraFile struct
	  directly.

2001-10-14  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* include/gphoto2-library.h: Moved to ...
	* libgphoto2/gphoto2-libary.h: ... here.

2001-10-14  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/polaroid/pdc640.c: Remove non-existant
	  GP_ERROR_NO_CAMERA_FOUND.

2001-10-14  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/gphoto2-result.[c,h]: Documented.

2001-10-14  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/gphoto2-list.[c,h]: Documented.

2001-10-13  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/gphoto2-abilities-list.[c,h]: Simplified, expose fewer
	functions.

2001-10-12 Hans Ulrich Niedermann <gp@n-dimensional.de>

	* libgphoto2_port/libgphoto2_port/gp_port.c: more detailed debug
	  output for *_write and *_read
	* libgphoto2_port/usb/libusb.c: removed the last fprintf, fixed
	  missing "%s" in string
	* libgphoto2_port/usb/libusb.c: added call notification at
	  GP_DEBUG_HIGH for most methods

2001-10-12 Hans Ulrich Niedermann <gp@n-dimensional.de>

	* frontends/command-line/main.c: added package and version to debug msgs
	* frontends/command-line/main.c: added --print-usb-usermap command
	* frontends/command-line/main.h: added definition name of hotplug script

2001-10-12 Hans Ulrich Niedermann <gp@n-dimensional.de>

	* HACKING: reformatted, added not for emacs users
	* README: added hint to gphoto2-cli.txt
	* AUTHORS: fixed typo

2001-10-12 Hans Ulrich Niedermann <gp@n-dimensional.de>

	* camlibs/canon/canon.c: added is_crw() function
	* camlibs/canon/canon.c: moved to 1-bit power source detection
	* camlibs/canon/psa50.h: moved to 1-bit power source detection
	* camlibs/canon/Protocol: 1-bit power source detection seems to work better
	* camlibs/canon/Makefile.am: removed util.[ch] from canon driver
	* camlibs/canon/serial.c: removed dump_hex() and "util.h", added "serial.h"
	* camlibs/canon/serial.h: added prototype for canon_usb_camera_init()

2001-10-12  Fredrik <fredrik@krixor.xy.org>

	* camlibs/canon/psa50.c: more debug output in
	  psa50_usb_dialogue() and cleanups to psa50_get_file_usb()
	  (fixes downloading of small files (read: thumbnails)).

2001-10-12  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* include
	* libgphoto2: More renaming in order to make gtk-doc happy.

2001-10-12  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* include/gphoto2-widget.h
	* include/gphoto2-filesys.h: Moved to ...
	* libgphoto2/gphoto2-widget.h
	* libgphoto2/gphoto2-filesys.h: ... here.
	* libgphoto2/widget.c
	* libgphoto2/filesys.c: Moved to ...
	* libgphoto2/gphoto2-widget.c
	* libgphoto2/gphoto2-widget.h: ... here.
	* include/Makefile.am
	* libgphoto2/Makefile.am: Updated.
	* camlibs/.../Makefile.am: Updated to reflect changes above

2001-10-11  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/libgphoto-2.0.pc.in: -I${includedir}

2001-10-11  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/directory/directory.h: Removed.
	* camlibs/directory/directory.c: Remove cruft

2001-10-11  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/canon/psa50.c
	* camlibs/dimera/dimera3500.c:
	* camlibs/kodak/dc120/library.c:
	* camlibs/kodak/dc240/library.c:
	* camlibs/kodak/dc3200/library.c:
	* camlibs/panasonic/dc1000.c:
	* camlibs/panasonic/dc1580.c:
	* camlibs/panasonic/l859/l859.c:
	* camlibs/sierra/library.c:
	* frontends/command-line/interface.c: Unify percentage handling and
	define 0.0 <= percentage <= 1.0.

2001-10-11  Hans Ulrich Niedermann <gp@n-dimensional.de>

	* docs/, doc/: moved all documentation to doc/
	* doc/gphoto2.txt, doc/gphoto2-cli.txt: added to distribution

2001-10-11  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* include/gphoto2-widget.h
	* libgphoto2/exif.[c,h]
	* libgphoto2/widget.c: Fix stuff gtk-doc was complaining about.
	
2001-10-10  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* configure.in: Give some feedback (gtk-doc: yes/no?)

2001-10-10  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/filesys.c: Documented.

2001-10-10  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/template/template.c: Updated.

2001-10-10  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* frontends/command-line/interface.c: Don't jump to the next line
	  for status messages - this disturbs the nice formatting of listings.

2001-10-09  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/casio/casio-qv.c: On capture, append the file to the 
	  filesystem
	* camlibs/polaroid/pdc640.c: Here, too.
	* include/gphoto2-camera.h: Add some more warnings
	* libgphoto2/filesys.c:
	* include/gphoto2-filesys.h: We don't need to expose
	  gp_filesystem_folder_number, that doesn't make sense

2001-10-09  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	Shift the whole library towards exclusively using the
	CameraFilesystem:

	* camlibs/agfa/agfa.c: delete_file_func, get_file_func
	* camlibs/canon/canon.c: Add warning that upload and deletion is
	  broken
	* camlibs/jd350e/jd350e.c: Tiny update
	* camlibs/kodak/dc120/dc120.c: folder_list_func, file_list_func, 
	  get_file_func, delete_file_func
	* camlibs/kodak/dc240.c: Add warning that changes have to be made
	* camlibs/konica/library.c: delete_all_func, delete_file_func
	* camlibs/minolta/dimagev/dimagev.c: delete_file_func, put_file_func,
	* camlibs/panasonic/dc1000.c: file_list_func, get_file_func,
	  put_file_func, delete_file_func
	* camlibs/panasonic/dc1580.c: get_file_func, put_file_func, 
	  delete_file_func
	* camlibs/panasonic/l859.c: delete_file_func, delete_all_func
	* camlibs/polaroid/pdc320.c: get_file_func, delete_all_func
	* camlibs/polaroid/pdc640.c: get_file_func, delete_file_func
	* camlibs/sierra/library.c:
	* camlibs/sierra/sierra.c: delete_all_func, delete_file_func
	* camlibs/sonydscf1/sonydscf1.c: delete_file_func
	* camlibs/sonydscf55/sonydscf55.c: Tiny update
	* camlibs/stv0680/stv0680.c: Tiny update
	* frontens/command-line/interface.c: Don't show "" status and 0.0
	  progress
	* libgphoto2/camera.c:
	* include/gphoto2-camera.h: Remove put_file, delete_all and delete - 
	  this should all be done using the filesystem. In the future, 
	  file_get and the listing functions will also disappear.
	* include/gphoto2-filesys.h:
	* libgphoto2/filesys.c: Add deletion and upload.
	* libgphoto2/jpeg.c: Kill unused variable
	* tests/test-filesys.c: Update

2001-10-09  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/sonydscf1:
	  Clean up a bit. This camera uses globals and won't work with
	  big frontends...
	  Use camera->port and camera->fs.

2001-10-09  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/stv0680/stv0680.[c,h]:
	  Fix compile warnings by declaring some functions static.
	  Use camera->port and camera->fs.

2001-10-09  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/sonydscf55/camera.c:
	  Fix compile warnings by declaring some functions static.
	  Use camera->port and camera->fs.

2001-10-09  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/minolta/dimagev/dimagev.[c,h]:
	  Fix compile warnings by declaring some functions static.
	  Use camera->port and camera->fs.

2001-10-09  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/panasonic/l859/l859.[c,h]:
	  Fix compile warnings by declaring some functions static.
	  Use camera->port and camera->fs.
	  (l859_debug): Removed. Now in libgphoto2_port

2001-10-09  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/jd3503/library.c: Fix compile warnings by declaring some
	  functions static.
	* camlibs/jd350e.c: Here, too. #include <stdlib.h>. Use camera->port
	  and camera->fs. First in order to avoid problems with port locking
	  and second for caching.
	* camlibs/jd350e.h: No filesystem here. Use camera->fs.

2001-10-09  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/konica/library.c: Remove reference to gphoto2-frontend.h.

2001-10-08  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* include/gphoto2-frontend.h
	* libgphoto2/frontend.c: Removed
	* frontends/command-line
	* include/Makefile.am
	* libgphoto2: Remove references to above

2001-10-08  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/panasonic/dc.c: gp_frontend_status ->
	  gp_camera_status

2001-10-08  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/kodak/dc240/library.c: gp_frontend_status ->
	  gp_camera_status

2001-10-08  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* include/gphoto2-[camera,frontend].h
	* libgphoto2/[camera,frontend].c: gp_frontend_message ->
	  gp_camera_message
	* camlibs: Reflect above

2001-10-08  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/polaroid/pdc640.c: Patch from Chris. Don't know what's
	  inside...

2001-10-08  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* include/gphoto2-frontend.h
	* libgphoto2/frontend.c
	* camlibs: gp_frontend_progress -> gp_camera_progress,
	gp_frontend_status -> gp_camera_status

2001-10-08  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/camera.c: Correctly initialize on gp_camera_new
	* frontends/command-line: Use the new gp_camera_[status,progress]

2001-10-08  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/camera.c
	* include/gphoto2-camera.h (gp_camera_status*), (gp_camera_progress*):
	New

2001-10-08  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* include/gphoto2-frontend.h
	* libgphoto2/frontend.c: Remove gp_frontend_prompt. This and the other
	gp_frontend functions will reappear some day in gphoto2-camera.

2001-10-07 Hans Ulrich Niedermann <gp@n-dimensional.de>

	* configure.in: remove unnecessary variables at the beginning

2001-10-08  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/camera.c: Additional debugging messages

2001-10-07  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/jamcam: Use libgphoto2/bayer.h and libgphoto2/gamma.h
	* libgphoto2/Makefile.am: LIBADD -lm

2001-10-07  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* configure.in: -lm
	* libgphoto2/Makefile.am
	* libgphoto2/bayer.[c,h]
	* libgphoto2/gamma.[c,h]: New
	* camlibs/polaroid/pdc640.c: Use above

2001-10-07  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	Patch from Chris Byrne <adapt@ihug.co.nz>:

	* camlibs/polaroid/pdc640.c: Updated

2001-10-07  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	Patch from David Faure <david@mandrakesoft.com>

	* libgphoto2/core.c: Fix logic

2001-10-06  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* configure.in: Bump version up to 2.0beta3

2001-10-06  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	Patch from Hans Ulrich Niedermann <hun@n-dimensional.de>:

	* frontends/command-line: Add --version

2001-10-06  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* include/gphoto2-list.h
	* libgphoto2/list.c (gp_list_ref), (gp_list_unref): New

2001-10-06  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* include/gphoto2-debug.h
	* libgphoto2/debug.c (gp_debug_history_get_size): New

2001-10-06  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/debug.c: Use the debug level from libgphoto2_port instead
	of keeping an own global variable

2001-10-05  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* configure.in: Check for vsnprintf, too.
	* libgphoto2/debug.c: Use vsnprintf if available.

2001-10-05  Fabrice Bellet <fabrice@gnu.org>

	* frontends/command-line/actions.c:
	* frontends/command-line/foreach.c:
	* frontends/command-line/main.c: Print directory names at
	each step of the recursion when using '--list-folders --recurse'.

2001-10-05  Fabrice Bellet <fabrice@gnu.org>

	* frontends/command-line/actions.c:
	* frontends/command-line/actions.h:
	* frontends/command-line/foreach.c:
	* frontends/command-line/main.c: The --recurse option should now work
	with --get-all-thumbnails, --get-all-images, --get-all-raw-data,
	--list-files and --list-folders.

2001-10-04  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/filesys.c: Only spew debugging messages in case of error -
	there don't seem to be serious bugs in there any more.

2001-10-04  Hubert Figuiere  <hfiguiere@teaser.fr>

	* camlibs/kodak/dc240/library.c: patch by Peter Fales <peter@fales.com>
	compute the packet checksum and ask to resend it.

2001-10-04  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* include/gphoto2-debug.h: #include <gphoto2-port-debug.h>
	* include/gphoto2-result.h: #include <gphoto2-port-result.h>
	* libgphoto2/debug.c: #include <gphoto2-port.h>

2001-10-04  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/debug.c: Move debugging stuff to libgphoto2_port so
	that those messages get saved, too.

2001-10-04  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/konica/library.c: const
	* frontents/command-line/main.c: Print out last debugging messages
	on error
	* include/gphoto2-debug.h:
	* libgphoto2/debug.c: Remember history
	* include/gphoto2-result.h:
	* libgphoto2/result.c: Revert the result_as_description thing
	
2001-10-04  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/result.c:
	* libgphoto2/camera.c:
	* include/gphoto2-camera.h:
	* include/gphoto2-result.h: Put in some consts.

2001-10-03  Hubert Figuiere  <hfiguiere@teaser.fr>

	* camlibs/kodak/CAMERAS: added latest Kodak DX models.

2001-10-03  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* frontends/command-line/main.c: Print out additional information
	on error.
	* include/gphoto2-result.h:
	* libgphoto2/result.c (gp_result_as_description): New.

2001-10-03  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/camera.c: Check the result of gp_port_open.

2001-10-01  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/konica/localization/Makefile.am: EXTRA_DIST the localization
	data to get the stuff included in the dist tarball.

2001-10-01  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/konica: Rejoice, we no longer have a glib dependency!

2001-10-01  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/konica/konica.[c,h]:
	* camlibs/konica/library.c: Moving towards glib-free code...

2001-09-27  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/sierra/protocol.c:
	* camlibs/sierra/sierra.c: Gilles Grandou <gilles@grandou.net>
	figured out how to retrieve date and software revision.
	* configure.in:
	* camlibs/jd350e: New driver from Michael Trawny <trawny99@yahoo.com>

2001-09-25  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/jpeg.h: Fix a warning
	* libgphoto2/camera.c: Fix locking problem in
	gp_camera_folder_delete_all.

2001-09-24  Nathan Stenzel <nathanstenzel@users.sourceforge.net>

	* camlibs/polaroid/pdc320.h:
	* camlibs/polaroid/pdc320.c: now uses jpeg.c and jpeg.h
	* libgphoto2/jpeg.h:
	* libgphoto2/jpeg.c: Can now create and write jpeg files
	(except for actual encoding of compressed data)

2001-09-24  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/jpeg.h:
	* camlibs/polaroid/pdc320.c: Adapt to changes jpeg_* -> gp_jpeg_*
	* libgphoto2/jpeg.h: Kill yet another warning.

2001-09-24  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/jpeg.[c,h]: Respect the namespace of libjpeg. Otherwise,
	gtkam and other graphical frontends will horribly fail.

2001-09-24  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/core.c: have_initted is no longer needed.

2001-09-24  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/sonydscf1/sonydscf1.c:
	* libgphoto2/debug.c: glob_debug is now static in libgphoto2

2001-09-24  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* frontends/command-line/main.c: glob_debug is now static in libgphoto2

2001-09-24  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/jpeg.c: #define CHECK_RESULT(...) (...)

2001-09-23  Nathan Stenzel <nathanstenzel@users.sourceforge.net>

    * libgphoto2/jpeg.h
    * libgphoto2/jpeg.c: Quantization table handling is much easier to do.

2001-09-23  Chris Pinkham <cpinkham@infi.net>

	* camlibs/jamcam/jamcam.c
	  camlibs/jamcam/library.h
	  camlibs/jamcam/library.c: Added support for low-res images.

2001-09-22  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/filesys.c: Fix two small bugs.

2001-09-22  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/jamcam/.cvsignore:
	* camlibs/sonydscf55/.cvsignore: New
	* include/gphoto2-debug.h:
	* libgphoto2/debug.c: Debugging stuff can be found here.
	* frontends/command-line/main.c: Use gp_debug_set_level and don't
	use gp_init any more (this is done automatically).
	* include/Makefile.am:
	* libgphoto2/Makefile.am: Add the debugging files
	* include/gphoto2-core.h: Remove debugging and initialization stuff
	* libgphoto2/core.c: Make gp_init a static function.
	* (...) Various smaller changes regarding gp_init and gp_debug_*.

2001-09-22  Raymond Penners  <raymond@dotsphinx.com>

	* camlibs/sonydscf55/*: Fixes & eliminated compiler warnings.

2001-09-22  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	Patch from Carsten Pfeiffer <carpdjih@sp.zrz.tu-berlin.de>

	* camlibs/sonydscf1.sonydscf1.c:
	* include/gphoto2-core.h:
	* include/gphoto2-file.h:
	* include/gphoto2-filesys.h:
	* libgphoto2/core.c:
	* libgphoto2/file.c:
	* libgphoto2/filesys.c: char *whatever -> const char *whatever.

2001-09-22  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	Patch from Ilya Konstantinov <future@shiny.co.il>:

	* camlibs/sierra/sierra.c (get_info_func): Set the filename.

2001-09-21  Raymond Penners  <raymond@dotsphinx.com>

	* AUTHORS
	  MAINTAINERS
	  configure.in
	  camlibs/sonydscf55/*: added camera library for Sony DSC-F55
	  and Sony's Serial Port Adaptor MSAC-SR1 for the Sony DCR-PC100.

2001-09-18  Chris Pinkham <cpinkham@infi.net>

	* camlibs/canon/psa50.c
	  camlibs/canon/serial.c
	  libgphoto2_port/include/gphoto2-port.h
	  libgphoto2_port/libgphoto2_port/gp_port.c
	  libgphoto2_port/usb/libusb.c: changed *usb_msg_read* and
	  *usb_msg_write* functions to allow passing in of request and
	  index values.

	* MAINTAINERS
	  configure.in
	  camlibs/jamcam/Makefile.am
	  camlibs/jamcam/jamcam.c
	  camlibs/jamcam/library.c
	  camlibs/jamcam/library.h: added camera library for KBGear JamCam v3.0

2001-09-12  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/core.c: Add some CHECK_INITs.

2001-09-11  Nathan Stenzel <nathanstenzel@users.sourceforge.net>

    * libgphoto2/jpeg.c: New
    * libgphoto2/jpeg.h: New

2001-09-10  Hubert Figuiere  <hfiguiere@teaser.fr>

	* libgphoto2_port/usb/libusb.c (gp_port_usb_find_device_lib): if
	device and vendor IDs are 0, return not found.

2001-09-10  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/kodak/dc240/dc240.c (camera_init): Don't open/close the port.
	This is done by libgphoto2.

2001-09-10  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/camera.c
	(gp_camera_init): Do a simple CHECK_RESULT_OPEN_CLOSE on the init_func
	(gp_camera_set_port): Set the path if the port is a serial one.
	* camlibs/template/template.c:
	* camlibs/sierra/sierra.c:
	* camlibs/samsung/samsung.c:
	* camlibs/polaroid/pdc700.c:
	* camlibs/polaroid/pdc320.c:
	* camlibs/panasonic/coolshot/coolshot.c:
	* camlibs/konica/library.c:
	* camlibs/dimera/mesalib.c:
	* camlibs/digita/usb.c:
	* camlibs/digita/serial.c:
	* camlibs/casio/casio-qv.c:
	* camlibs/canon/serial.c:
	* camlibs/barbie/barbie.c:
	* camlibs/agfa-cl18/agfa.c: Don't open the port. This is always done
	by libgphoto2.

2001-09-10  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/camera.c (gp_camera_list_folders), (gp_camera_list_files):
	Return the result instead of GP_OK if anything goes wrong
	* libgphoto2/filesys.c: Check if path to folder is absolute. If not,
	return GP_ERROR_PATH_NOT_ABSOLUTE.
	* libgphoto2/result.c:
	* include/gphoto2-result.h: GP_ERROR_PATH_NOT_ABSOLUTE: New error.

2001-09-10  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/sierra/sierra.c (get_info_func): Fix copy & paste bug.

2001-09-10  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/core.c: Additional debugging stuff.

2001-09-09  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/core.c: Use "... == GP_OK" instead of "!...". That should
	prevent that every USB camera shows up on gp_autodetect...

2001-09-07  Hubert Figuiere  <hfiguiere@teaser.fr>

	* libgphoto2_port/usb/libusb.c (gp_port_usb_close): Fixed a
	segfault when passed device handle was NULL.

2001-09-07  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/filesys.c (gp_filesystem_format): Don't request any
	listings here.

2001-09-07  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/polaroid/pdc640.c: New
	* camlibs/polaroid/Makefile.am: Added pdc640

2001-09-06  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* MAINTAINERS: Added Marius for panasonic
	* camlibs/panasonic/coolshot/Makefile.am: @dotlibs

2001-09-06  Chris Pinkham <cpinkham@infi.net>

	* camlibs/panasonic/coolshot/README
	  camlibs/panasonic/coolshot/coolshot.c
	  camlibs/panasonic/coolshot/library.c: changed thumbnail code to
	  properly decode thumbnails after discovering they are encoded in
	  YUV 4:1:1 format.

2001-09-05  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/polaroid/pdc320.c: Bug fixes from Nathan Stenzel
	<nathanstenzel@motion.net>

2001-09-03  Chris Pinkham <cpinkham@infi.net>

	* camlibs/panasonic/coolshot/README
	  camlibs/panasonic/coolshot/coolshot.c
	  camlibs/panasonic/coolshot/library.h
	  camlibs/panasonic/coolshot/library.c: added thumbnail support.

2001-09-02  Chris Pinkham <cpinkham@infi.net>

	* camlibs/panasonic/coolshot/coolshot.c
	  camlibs/panasonic/coolshot/library.c: code cleanup
	* camlibs/panasonic/coolshot/README: added TODO list for driver

2001-09-02  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* include/gphoto2-filesys.h:
	* libgphoto2/filesys.c: Cache files, too.
	* libgphoto2/camera.c: Use cached files if exist.
	* camlibs/konica/library.c:
	* camlibs/sierra/sierra.c: Cache files in the filesystem.

2001-09-02  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/panasonic/coolshot/coolshot.c: Use gp_list_populate instead
	of accessing the filesystem. The filesystem is clever enough to do
	that itself.

2001-09-02  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/stv0680/pattrec.[c,h]: Move those files ...
	* libgphoto2/pattrec.[c,]: ...here.

2001-09-02  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* frontends/command-line/options.c: #include <config.h>

2001-09-01  Chris Pinkham <cpinkham@infi.net>

	* configure.in: added line to generate
	camlibs/panasonic/coolshot/Makefile
	* MAINTAINERS: added line for camlibs/panasonic/coolshot driver
	* camlibs/panasonic/Makefile.am: added coolshot to SUBDIRS declaration
	* camlibs/panasonic/coolshot/Makefile.am
	* camlibs/panasonic/coolshot/README
	* camlibs/panasonic/coolshot/TODO
	* camlibs/panasonic/coolshot/coolshot.[c,h]
	* camlibs/panasonic/coolshot/library.[c,h]:added files to support
	Panasonic Coolshot KXL-600A & KXL-601A digital cameras.

2001-09-01  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/casio: New
	* configure.in: Add casio. Like the polaroid and samsung, those drivers
	DON'T WORK and therefore are signed as EXPERIMENTAL. I add those only
	to give you a basic framework on which to build.

2001-08-31  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/polaroid/pdc700.c: New

2001-08-31  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* configure.in: Added polaroid.
	* camlibs/samsung/samsung.c: Added GP_DRIVER_STATUS_EXPERIMENTAL;
	* frontends/command-line/main.c: print the EXPERIMENTAL/TESTING flag
	* include/gphoto2-abilities.h:
	* libgphoto2/abilities.c: Added CameraDriverStatus
	* camlibs/polaroid/pdc320.c:
	* camlibs/polaroid/Makefile.am: New

2001-08-31  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/samsung/Makefile.am:
	* camlibs/samsung/samsung.c: New but untested. (Just ported it from
	old gphoto).
	* configure.in: Added samsung

2001-08-31  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/camera.c: Add debugging messages

2001-08-31  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/agfa-cl18/agfa.c: Remove gp_port_usb_find_device, that's in
	libgphoto2/camera.c now.
	* camlibs/canon/canon.c: Move the declaration of the models struct here.
	* camlibs/canon/canon.h: The models struct is no longer needed here.
	* camlibs/psa50.[c,h]: cs->gdev is now camera->port.
	* camlibs/canon/serial.[c,h]
	(canon_usb_probe): Removed. Now in libgphoto2/camera.c
	(canon_serial_init): Don't create/free a port here. Use camera->port.
	(canon_serial_close): Removed. No longer needed. Handled by libgphoto2
	(canon_serial_restore): Same here.
	* digita/commands.c: Indicate usb product/vendor in the abilities
	so that gphoto2 can autodetect. Use camera->port.
	* camlibs/digita/serial.c: Don't create/free the port here. Handled by
	libgphoto2
	* camlibs/digita/usb.c: No probe, no port creation (->libgphoto2)
	* camlibs/directory/directory.c: Declare lots of functions static.
	* camlibs/kodak/dc240/library.[c,h]:
	* camlibs/kodak/dc240/dc240.[c,h]: Use camera->port
	* camlibs/konica/library.c: No gp_port_usb_find_device here.
	* libgphoto2/camera.c (gp_camera_init): In case of USB,
	find the device. That removes redundancy in the camera libraries.

2001-08-30  Dan Fandrich <dan@coneharvesters.com>
	* libgphoto2/file.c:
	* include/gphoto2-file.h:
	* camlibs/dimera/dimera3500.c: removed traces of the PNM
	pseudo-file type and added PGM.

2001-08-30  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/dimera/dimera3500.c (camera_file_get): Use
	gp_file_adjust_name_for_mime_type
	* libgphoto2/file.c (gp_file_adjust_name_for_mime_type):
	GP_MIME_RAW -> *.raw

2001-08-30  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/agfa.c:
	* camlibs/commands.c:
	* camlibs/commands.h: Use a macro CHECK for most of the simple
	error checks. That makes the code much cleaner.

2001-08-30  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/agfa-cl18/agfa.h: Renamed to
	* camlibs/agfa-cl18/commands.h
	* camlibs/Makefile.am: Reflect this change.
	* camlibs/commands.c:
	* camlibs/agfa.c: Improve error reporting.

2001-08-30  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/agfa-cl18/*: Bring it up to date (camera->port and camera->fs)

2001-08-29  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/barbie/*: Use camera->port and camera->fs.
	* camlibs/dimera/dimera3500.c
	(populate_filesystem): Removed.
	(camera_folder_list_folders): Removed. We don't support folders anyways
	(camera_folder_list_files): Renamed to
	(file_list_func): Don't access the CameraFilesystem here. Just
	populate the list. The CameraFilesystem will get updated by libgphoto2.
	(camera_file_get_info): Renamed to
	(get_info_func): New
	(camera_file_set_info): Removed. Not supported.
	(camera_init): Correctly gp_filesystem_set_list_funcs and
	gp_filesystem_set_info_funcs so that the CameraFilesystem has full
	control over the information
	* include/gphoto2-list.h:
	* libgphoto2/list.c: (gp_list_populate): New. Please use this
	function to populate the list passed to you on file_list_func.
	* libgphoto2/filesys.c: Don't remove the dirty flag on folders 
	on gp_filesystem_append (thanks, Dan!)

2001-08-29  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/template/*: Updated
	* include/gphoto2-camera.h: Add a note about c_folder_list_folders and
	c_folder_list_files not to be used. Same with [get,set]_info.
	* include/gphoto2-filesys.h: Remove an uneeded typedef.
	* libgphoto2/filesys.c: Here, too.

2001-08-29  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	Dan Fandrich <dan@coneharvesters.com> found this bug:

	* libgphoto2/camera.c (list_files, list_folders): If
	gp_filesystem_list_files returns 0 files, try the old method. Same with
	folders.

2001-08-29  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	Fabrice did it again:

	* camlibs/sierra/*: Actually use camera->fs.

2001-08-29  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* include/gphotoos2.h:
	* include/gphoto2-portability-os2.h: Removed. Contents are now ...
	* include/gphoto2.h: ... here.

2001-08-29  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* gphoto2-library.h: Clean up this file.
	* gphoto2-camera.h: We don't need camera_init, camera_abilities, and
	camera_id here. That belongs into gphoto2-library.h.
	* libgphoto2/camera.c:
	* libgphoto2/core.c: Adapt
	* camlibs/*: Move camera_init to the bottom of the file. Camera
	driver authors, could you please declare the functions above static?
	Except camera_id and camera_abilities.

2001-08-29  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	All work from Fabrice Bellet <Fabrice.Bellet@creatis.insa-lyon.fr>:

	* libgphoto2/filesys.c (gp_filesystem_number): Check if the folder
	is dirty (like in gp_filesystem_folder_number).

2001-08-29  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/sierra/*:
	* camlibs/directory/directory.c (camera_folder_list_folders),
	(camera_folder_list_files), (camera_file_[get,set]_info): Removed.
	Use the camera->fs. Use camera->port.
	* camlibs/*: camera->port->* -> camera->port_info->*
	* include/gphoto2-camera.h:
	* libgphoto2/camera.c: Open the port before accessing a camera,
	close it after.

2001-08-28  Hubert Figuiere  <hfiguiere@teaser.fr>

	* include/gphoto2-file.h (GP_MIME_BMP): added this mime type.

2001-08-29  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* include/gphoto2-file.h: Add a note about the crappy API
	* include/gphoto2-abilities-list.h:
	* libgphoto2/abilities-list.c:
	* libgphoto2/core.c: Don't access the CameraAbilitiesList directly
	any more.

2001-08-29  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	Another patch from Ilya Konstantinov <future@shiny.co.il>:

	* libgphoto2/camera.c (gp_camera_new): Correctly initialize the speed
	to 0

2001-08-28  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/canon/psa50.c:
	* camlibs/kodak/dc120/library.c:
	* camlibs/minolta/dimagev/dimagev.c:
	* camlibs/panasonic/dc1000.c:
	* camlibs/panasonic/dc1580.c:
	* camlibs/sonydscf1/sonydscf1.c: Remove direct accesses to the 
	CameraFile struct.

2001-08-27  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	Patch from Fabrice Bellet <Fabrice.Bellet@creatis.insa-lyon.fr>:

	* camlibs/sierra/library.[c,h]:
	* camlibs/sierra/sierra.c: Use the new filesystem to cache file 
	information and for listing files/folders.
	* include/gphoto2-file.h:
	* libgphoto2/file.c (gp_file_detect_mime_type), 
	(gp_file_adjust_name_for_mime_type): New
	* libgphoto2/camera.c: list->count = 0;
	* libpghoto2/filesys.c (gp_filesystem_number): If this function is
	called, scan the whole filesystem.
	* tests/test-filesys.c: Test gp_filesystem_get_folder, too.

2001-08-27  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/sierra/sierra.c: Now that libgphoto2_port is patched, we
	can revert the quick fix from two hours ago.

2001-08-27  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/camera.c
	* libgphoto2/file.c: strcpy -> strncpy

2001-08-27  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* include/gphoto2-filesys.h:
	* libgphoto2/filesys.c: Cache folders and files, too (that is, only
	query them from the camera when needed.
	* frontends/command-line/main.c: Don't require a port with
	"Directory Browse".
	* camlibs/konica/library.c: Use the new functions
	* camlibs/directory/directory.[c,h]: Use the filesystem
	* tests/test-filesys.c: Demonstrate the use of the new functions.

2001-08-27  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/sierra/sierra.c: And correctly use the macros CHECK (won't
	stop the camera) and CHECK_STOP (after the connection has been started).

2001-08-27  Lutz MÜller <urc8@rz.uni-karlsruhe.de>

	* camlibs/sierra/sierra.c: Until I can fix the bug in
	libgphoto2_port, don't close the USB port.

2001-08-27  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	Suggestion from Ilya Konstantinov <gphoto-devel@future.galanet.net>:

	* include/gphoto2-camera.h:
	* libgphoto2/camera.c (gp_camera_[get,set]_port_name) and
	(gp_camera_[get,set]_port_path): New
	* frontends/command-line/main.c: Call those functions.

2001-08-27  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* include/gphoto2-filesys.h:
	* libgphoto2/filesys.c: Implement caching for file information.
	* tests/test-filesys.c: Test it here.
	* camlibs/konica/library.c: Use gp_filesystem_[get,set]_info. This
	stuff is really incredibly fast.

2001-08-27  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	Daniel Resare <noa@metamatrix.se> suggested using AC_CONFIG_SUBDIRS:

	* configure.in: Use AC_CONFIG_SUBDIRS(libgphoto2_port).
	* Makefile.am: build.sh isn't needed any more
	* INSTALL: Update installation instructions
	
	* doc/Makefile.am: Removed OVERVIEW and NOTES. This should have 
	happened a long time ago.

2001-08-27  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	Ilya Konstantinov <gphoto-devel@future.galanet.net> pointed me to
	this bug:

	* camlibs/sierra/sierra.c (camera_file_get): Add a break in the
	switch statement so that people can download files instead of getting
	errors.

2001-08-27  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* include/gphoto2-core.h:
	* libgphoto2/core.c (gp_autodetect): Revert an API change I committed
	by error. Sorry.
	* libgphoto2/camera.c:
	* frontends/command-line/main.c: Here too.

2001-08-27  Lutz Müller <urc8@rz.uni-karlsruhe.de>
	
	Suggestions from Fabrice Bellet <Fabrice.Bellet@creatis.insa-lyon.fr>:

	* camlibs/sierra/library.c (sierra_change_folder): Just return if we
	are already in the requested folder.
	(sierra_update_fs_for_folder): Dont jump into the folder twice.
	* camlibs/sierra/sierra.c (camera_init): Use camera_start here instead
	of reimplementing everything again.

2001-08-26  Hubert Figuiere  <hfiguiere@teaser.fr>

	* configure.in: fixed a typo in the dotlibs value.

2001-08-26  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* include/gphoto2-camera.h:
	* libgphoto2/camera.c: Add gp_camera_[set,get]_model. Please use
	those functions instead of directly accessing camera->model.
	* libgphoto2/core.c: On exit, set glob_abilities_list = NULL
	* tests/test-gphoto2.c: Add lots of documentation.

2001-08-26  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/dimera/dimera3500.c: explicitly set the conversion method
	to GP_FILE_CONVERSION_METHOD_CHUCK.
	* camlibs/digita/digita.c: Move the conversion raw -> ppm to ...
	* include/gphoto2-file.h:
	* libgphoto2/file.c: ... here.
	* include/gphoto2-filesystem.h:
	* libgphoto2/filesys.c: Implement "dirty" folders.

2001-08-26  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/dimera3500.c: Move the raw->pnm conversion ...
	* include/gphoto2-file.h:
	* libgphto2/file.c: ... here. Now, other camera drivers can use this,
	too.
	* include/gphoto2-core.c:
	* libgphoto2/core.c: Small change to make the API consistent.
	* frontends/command-line/main.c: Add possibility for download of raw
	data.

2001-08-25  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* include/gphoto2-file.h:
	* include/gphoto2-library.h:
	* include/gphoto2-camera.h: Support for raw data.
	* libpghoto2/file.c: Adjust to above changes.
	* libgphoto2/frontend.c: Kill a warning.
	* libgphoto2/libgphoto-2.0.pc.in: CFlags -> Cflags
	* libgphoto2/widget.c: Include gphoto2-result.h instead of gphoto2.h
	* camlibs/*: Prepare support for download of raw data. Remove lots of
	redundant code (people just copied & pasted the code for file_get 
	and file_get_preview...). I hope everything works as it did before.
	* frontend/command-line/*: Prepare support for download of raw data

2001-08-24  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/abilities.c:
	* include/gphoto2-abilities.h: Let gp_abilities_new return an error 
	code. This was the last one.
	* camlibs/*: Adjust to above change.
	* camlibs/canon/canon.c: #if 0 some code to kill some warnings

2001-08-24  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* include/gphoto2-abilities-list.h: Make gp_abilities_list_new
	return an error code. Introduce gp_abilities_list_sort and
	gp_abilities_list_count.
	* libgphoto2/abilities-list.c: See above.
	* libgphoto2/core.c: Sorting code now is in abilibies-list.
	* libgphoto2/file.c: "image/x-png" -> "image/png"

2001-08-24  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/sierra/library.c: Remove some unnecessary casts, put in some
	CHECKs
	* camlibs/kodak/dc120/dc120.c:
	* camlibs/kodak/dc210/library.c:
	* camlibs/kodak/dc240/library.c: Use gp_file_* instead of directly
	accessing the struct.
	* libgphoto2/filesys.c: Remove lots of redundancy, always check if
	folder has a trailing slash (and ignore it if this is the case).

2001-08-24  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/agfa-cl18/agfa.c: Use gp_file_* instead of directly
	accessing the struct.
	* camlibs/barbie/barbie.c: And here.
	* camlibs/directory/directory.c: And here.
	* camlibs/konica/library.c: And here.
	* camlibs/sierra/sierra.c: And here.
	* camlibs/panasonic/l859/l859.c: And here.
	* camlibs/dimera/dimera3500.c: And here.
	* camlibs/stv0680/stv0680.c: And here.
	* frontends/command-line/main.c: And here.
	* libgphoto2/camera.c: And here.
	* libgphoto2/file.c:
	* include/gphoto2-file.h: Introduce some more gp_file_* functions.

2001-08-24  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* include/gphoto2-file.h: Make gp_file_new return an error code.
	* */*: Adjust everything for above change.

2001-08-23  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/list.c (gp_list_new): memset on *list instead of list.

2001-08-22  Hubert Figuiere  <hfiguiere@teaser.fr>

	* camlibs/dimera/dimera3500.c: removed * / * embedded inside comments
	that issued warnings and broke the build...
	* camlibs/kodak/dc240/library.c (dc240_wait_for_busy_completion): 
	cast a const to a char to avoid a serious warning on Solaris sparc 
	gcc. Fix bug #454183

2001-08-22  Stephane Castejon <scastejo@club-internet.fr>

	* frontends/command-line/main.c : fix option --debug so that it
	  really put the GP_DEBUG_HIGH mode.

2001-08-22  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* */*: Small parameter changes to make gphoto2 API more consistent.
	More to follow.

2001-08-22  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* README: Update USB Mass Storage list

2001-08-21  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/camera.c (gp_camera_file_get_info): Fix logic.

2001-08-21  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/camera.c:
	* libgphoto2/core.c:
	* libgphoto2/widget.c: Introduce CHECK_NULL and CHECK_RESULT for
	better error recovery and reporting

2001-08-22  Hubert Figuiere  <hfiguiere@teaser.fr>

	* MAINTAINERS: take over DC240 maintenance.
	* camlibs/kodak/dc240/library.h: removed unused functions.
	* camlibs/kodak/dc240/library.c: moved lot of functions to static.
	(dc240_wait_for_busy_completion): implemented. (NEW)
	(dc240_capture): finished implementation and prototype update. 
	* camlibs/kodak/dc240/dc240.c (camera_init): activate capture_image
	(camera_capture): reimplemented and updated prototype

2001-08-21  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/camera.c (gp_camera_file_get_info): Make sure the field
	name is always set.

2001-08-21  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* README: Updated list of USB Mass Storage cameras. Thanks Hubert!

2001-08-21  Stephane Castejon <scastejo@club-internet.fr>

	* Removing unused variables

2001-08-21  Stephane Castejon <scastejo@club-internet.fr>

	Correct following bugs in the sierra driver :
	* Could not retrieve movies from the cameras (got the image having
   	the same base name instead).  Same behaviour for movie thumbnails,
	* After correction of problem 1, got movie thumbnails that do 
	not fit the JPEG format.
 	* After correction of problem 1 & 2, part of some movie thumbnails had a 
   	very bad quality! The phenomenon was aleatory.

	In camlibs/sierra/library.c,h :
	* Rewrite the sierra_read_packet routine : now it downloads movie thumbnails
	correctly (third bug).
	* Correction in the sierra_capture routine to make it generic regarding name
	of the folder the captured image is stored in.
	* Move update_fs_for_folder and sierra_change_folder from sierra.c
	to here.
	* Plus various other minor changes to try to be consistent between the
	different routines (when do we need to retry, error codes).
	Still work to be done there.
	* Add gp_filesystem_delete_all at the beginning of update_fs_for_folder.
	* Start documenting routines.

	In camlibs/sierra/sierra.c :
	* Add call to sierra_change_folder in camera_file_get_generic,
	camera_file_get_info, camera_folder_delete_all, camera_file_delete.
	Remove sierra_folder_set from camera_start (then delete the routine
	since it is not used anymore).
	* Correct camera_file_get_generic to handle movie thumbnails
	correctly.
	* Correction in camera_file_get_generic regarding the properties
	(type and name) of the return file : it is always jpeg for thumbnails.
	* Move update_fs_for_folder and sierra_change_folder to library.c.
	* Remove formatting of the filesystem from camera_folder_delete_all : it
	is now performed by sierra_update_fs_for_folder.
	* Add a camera specific error code GP_ERROR_BAD_CONDITION which is raised 
	when a picture cannot be captured (for instance if the lens protection was 
	not removed, or the memory card is full).
	* Start documenting routines.

2001-08-20  Lutz Müller  <urc8@rz.uni-karlsruhe.de>

	* doc/OVERVIEW: Cruft, not up to date, incorrect. Removed.
	* doc/NOTES: Redundant. Removed.
	* libgphoto2/camera.c: Be nice to frontend-writers, call gp_init if
	it hasn't been called yet on gp_camera_new.
	* libgphoto2/core.c: Same here with gp_autodetect and gp_camera_count.
	* include/gphoto2-core.h: Kill compile warning

2001-08-20  Lutz MÜller  <urc8@rz.uni-karlsruhe.de>

	* libpghoto2/camera.c: Kill compile warning by declaring gp_camera_exit
	static

2001-08-20  Lutz MÜller  <urc8@rz.uni-karlsruhe.de>

	* MAINTAINERS: New

2001-08-20  Lutz Müller  <urc8@rz.uni-karlsruhe.de>

	* camlibs/sierra/sierra.c (camera_file_get_generic): Documentation
	update

2001-08-20  Lutz Müller  <urc8@rz.uni-karlsruhe.de>

	* camlibs/sierra/sierra.c (camera_file_get_generic): Fix detection
	of TIFF images

2001-08-19  Lutz Müller  <urc8@rz.uni-karlsruhe.de>

	* configure.in: -Wmissing-prototypes -Wmissing-declarations
	* camlibs/agfa-cl18/commands.c:
	* camlibs/agfa-cl18/usb.c:
	* frontends/command-line/foreach.c:
	* frontends/command-line/interface.c:
	* frontends/command-line/main.c:
	* frontends/command-line/options.c:
	* frontends/command-line/range.c:
	* frontends/command-line/shell.h:
	* include/gphoto2-file.h:
	* libgphoto2/file.c: First step towards a compilation with -Werror

2001-08-19  Lutz Müller  <urc8@rz.uni-karlsruhe.de>

	* camlibs/konica/library.c: Format the filesystem before updating it.

2001-08-19  Lutz Müller  <urc8@rz.uni-karlsruhe.de>

	* tests/test-filesys.c: Even more tests
	* libgphoto2/filesys.c: Fix remaining bugs. It should work now...

2001-08-19  Lutz Müller  <urc8@rz.uni-karlsruhe.de>

	* tests/test-filesys.c: New
	* tests/Makefile.am: Compile test-filesys.c
	* libgphoto2/filesys.c: Several bugfixes - there are still bugs in
	there.

2001-08-19  Lutz Müller  <urc8@rz.uni-karlsruhe.de>

	* configure.in: Don't generate camlibs/template/Makefile
	* libgphoto2/filesys.c:
	* include/gphoto2-filesys.h (gp_filesystem_delete_all): New

2001-08-19  Lutz Müller  <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/filesys.c (gp_filesystem_format): Fix bug found by 
	Stéphane Castejon.

2001-08-19  Lutz Müller  <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/globals.h: Unused. Removed.

2001-08-19  Lutz Müller  <urc8@rz.uni-karlsruhe.de>

	* include/gphoto2-filesys.h:
	* libgphoto2/filesys.c (gp_filesystem_get_folder): New
	* libgphoto2/widget.c (gp_widget_get_parent): Corrected typo

2001-08-18  Lutz Müller  <urc8@rz.uni-karlsruhe.de>

	* include/gphoto2-widget.h:
	* libgphoto2/widget.c (gp_widget_get_parent): New function

2001-08-18  Lutz Müller  <urc8@rz.uni-karlsruhe.de>

	* include/Makefile.am: Oops, add gphoto2-result.h.

2001-08-18  Lutz Müller  <urc8@rz.uni-karlsruhe.de>

	* po/POTFILES.in: Add core.c, camera.c and result.c

2001-08-18  Lutz Müller  <urc8@rz.uni-karlsruhe.de>

	* README: Add notice about USB Mass Storage cameras.
	* include/*:
	* libgphoto2/*: Major cleanup - add licence notice to begin of each
	file, remove unused files/functions, ...
	* camlibs/konica/Makefile.am: There's no ChangeLog here...
	* tests/test-gphoto2.c: Adjust headers

2001-08-17  Lutz Müller  <urc8@rz.uni-karlsruhe.de>

	* include/gphoto2-camera.h:
	* include/gphoto2-file.h:
	* include/gphoto2-widget.h: Sort some stuff, put in LGPL notice.
	* libgphoto2/widget.c: Hide CameraWidget internals here. No need to
	publish all that stuff.

2001-08-17  Lutz Müller  <urc8@rz.uni-karlsruhe.de>

	* include/gphoto2-datatypes.h: Move the declaration of the lists to ...
	* include/gphoto2-lists.h: ... here. This is a first step towards 
	cleaning up the include-mess. Realized that CameraListType isn't 
	needed at all - removed.
	* include/gphoto2-filesys.h: Hide the actual contents of 
	the CameraFilesystem ...
	* libgphoto2/filesys.c ... here. The normal user doesn't need to 
	know what's inside.
	* libgphoto2/core.c:
	* libgphoto2/lists.c:
	* camlibs/*: Reflect above changes

2001-08-17  Lutz Müller  <urc8@rz.uni-karlsruhe.de>

	* configure.in: Add libgphoto-2.0.pc
	* libgphoto2/Makefile.am: Remove the old GNOME configuration stuff. 
	GNOME uses pkgconfig now:
	* libgphoto2/libgphoto2Conf.sh.in: Removed
	* libgphoto2/libgphoto-2.0.pc.in: New
	
2001-08-17  Lutz Müller  <urc8@rz.uni-karlsruhe.de>

	* tests/*: New
	* configure.in:
	* Makefile.am: Add tests to SUBDIRS and generate the Makefile
	* frontents/command-line/test.[c,h]: Removed
	* frontends/command-line/main.c:
	* frontents/command-line/Makefile.am: Reflect changes

2001-08-17  Lutz Müller  <urc8@rz.uni-karlsruhe.de>

	* frontents/gtk/macros/*: Removed.

2001-08-17  Lutz Müller  <urc8@rz.uni-karlsruhe.de>

	* frontents/Makefile.am: Remove libpghoto2_frontend from SUBDIRS.
	* frontents/gtk/*: Removed those ancient files. For GUI frontends, 
	refer to gtkam or GnoCam. They are distributed separately.

2001-08-17  Lutz Müller  <urc8@rz.uni-karlsruhe.de>

	* frontends/command-line/Makefile.am: Remove reference to
	libgphoto2_frontend.la which wasn't needed anyways.

2001-08-17  Lutz Müller  <urc8@rz.uni-karlsruhe.de>

	* frontents/libgphoto2_frontend/*: Removed. Those files were mainly
	empty functions and nowhere needed.

2001-08-17  Hubert Figuiere  <hfiguiere@teaser.fr>

	* camlibs/kodak/dc210/dc210.c, camlibs/kodak/dc210/dc210.h,
	camlibs/kodak/dc210/library.c, camlibs/kodak/dc210/library.h,
	camlibs/kodak/dc210/Makefile.am, camlibs/kodak/dc210/README:
	Initial release of DC210 driver port.

2001-08-16  Christophe Barbe <christophe.barbe@online.fr>

	* configure.in, camlibs/agfa-cl18/Makefile.am,
	camlibs/barbie/Makefile.am, camlibs/canon/Makefile.am,
	camlibs/digita/Makefile.am, camlibs/dimera/Makefile.am,
	camlibs/directory/Makefile.am, camlibs/kodak/dc120/Makefile.am,
	camlibs/kodak/dc240/Makefile.am, camlibs/kodak/dc3200/Makefile.am,
	camlibs/konica/Makefile.am, camlibs/minolta/dimagev/Makefile.am,
	camlibs/panasonic/Makefile.am, camlibs/panasonic/l859/Makefile.am,
	camlibs/sierra/Makefile.am, camlibs/sonydscf1/Makefile.am,
	camlibs/stv0680/Makefile.am, camlibs/template/Makefile.am: It 
	adds code in configure.in to detect when '.libs' is not detected 
	and in this case defined a variable "dotlibs" which is then 
	substitued in all Makefile.in. This fix a build problem with 
	newer libtool (1.4)

2001-08-15  Hubert Figuiere  <hfiguiere@teaser.fr>

	* camlibs/kodak/dc240/dc240.c (camera_about): Changed a typo in
	supported camera models.

2001-08-14  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/sierra/sierra.c: Set timeout to TIMEOUT before updating 
	folder. Thanks to Stéphane Castejon who found this bug.

2001-08-13  Hubert Figuiere  <hfiguiere@teaser.fr>

	* libgphoto2_port/usb/libusb.c (gp_port_usb_open): fix bug #438062: 
	a NULL usb_device* was passed to usb_dev_handle.

2001-08-12  Hubert Figuiere  <hfiguiere@teaser.fr>

	* camlibs/kodak/dc240/library.c (dc240_file_action): fix bug #440162

2001-08-08  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/sierra/library.c: (sierra_delete_all): Move notice about 
	cameras ignoring delete_all to ...
	* camlibs/sierra/sierra.c: (camera_folder_delete_all): ... here. And 
	update the filesystem - without that, gphoto2 won't be able to 
	fix the behaviour of some cameras (ignoring delete_all).

2001-08-08  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/panasonic/Makefile.am: SUBDIRS = l859

2001-08-08  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/konica/library.c: (camera_init): Update the filesystem once
	at camera_init
	(camera_folder_list_folders): Use gp_filesystem_list_folders
	(camera_folder_list_files): Use gp_filesystem_list_files

2001-08-08  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/sierra/library.[c,h]: (do_capture): Return the right location
	of the picture (on my camera, it is in /DCIM/100OLYMP)
	(sierra_file_count): Move that function into ...
	* camlibs/sierra/sierra.c: (update_fs_for_folder): New. Check the 
	contents of the camera once at the beginning (init), then don't access
	the card anymore.
	(camera_init): Populate the filesystem
	(camera_folder_list_files): Use gp_filesystem_list_files
	(camera_folder_list_folders): Use gp_filesystem_list_folders
	(camera_file_get_info): The thumbnails aren't in quicktime format
	(camera_capture): Add the picture to the filesystem
	* include/gphoto2-filesys.h:
	* libgphoto2/filesys.c: (gp_filesystem_append): Allow filename == NULL
	for appending just folders
	(gp_filesystem_dump): New
	(gp_filesystem_list_files): New
	(gp_filesystem_list_folders): New

2001-08-04  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/sierra/sierra.c: The C-2100UZ is supported, too.
	Unfortunatelly, the product id is the same for the C-2100UZ, the
	C-3000Z, and the C-3030Z. This results in three entries for this camera
	("gphoto2 --auto-detect"). This has to be fixed somehow, sometime.

2001-08-03  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/sierra/sierra.c: Remove the Panasonic Coolshot KXI-600A
	from the list of supported cameras - Chris Pinkham 
	<cpinkham@infi.net> figured out that this camera uses a totally 
	different protocol.

2001-08-03  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* camlibs/sierra/library.c: Add a note that the Nikon CoolPix 880 
	simply ignores (!) the delete_all command. Thanks to Mick Grant 
	<mickgr@drahthaar.clara.net> for figuring this out.

2001-08-03  Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/camera.c: Even if the camera reports success on 
	delete_all, check if all pictures have been deleted.

2001-08-03	Lutz Müller <urc8@rz.uni-karlsruhe.de>

	* libgphoto2/camera.c: Not all cameras implement delete_all - fall back
	to deletion one by one then.

2001-07-25  Hubert Figuiere  <hfiguiere@teaser.fr>

	* camlibs/kodak/CAMERAS: initial revision.

2001-07-09  Hubert Figuiere  <hfiguiere@teaser.fr>

	* camlibs/kodak/dc240/dc240.c:
	* camlibs/kodak/dc240/library.[c,h]: stricter typing of prototypes
	using const.

2001-07-09  Hubert Figuiere  <hfiguiere@teaser.fr>

	* camlibs/kodak/dc240/dc240.c: added USB support for DC280, DC3400
	and DC5000.

2001-07-04  Hubert Figuiere  <hfiguiere@teaser.fr>

	* camlibs/kodak/dc240/library.c: close bugs #438161 and #438155.

2000-08-20 15:47  scottf

	* libgphoto2/library.c: minor formatting changes

2000-08-20 15:44  scottf

	* libgphoto2/: core.c, file.c, settings.c: added mallocs for NULL
	reallocs

2000-08-20 13:29  jgangemi

	* frontends/gtk/configure.in:	- now checks for gnome libs > 1.2.4
	(needed for libglade to work)

2000-08-20 08:13  philm

	* camlibs/canon/: Changelog, canon.c, psa50.c: make use of
	gp_config_set/get instead of own file to save settings

2000-08-20 06:44  philm

	* camlibs/canon/: Changelog, TODO, canon.c, serial.c: USB now works
	thanks to the help of James Tappin and Tuomas Jormola.

2000-08-19 11:53  jgangemi

	* frontends/gtk/src/main.c:   - gphoto-backend correctly initalized

2000-08-19 11:52  jgangemi

	* frontends/gtk/src/Makefile.am:   - now we look in the dialogs
	directory too!

2000-08-19 11:51  jgangemi

	* frontends/gtk/configure.in:	- added src/dialogs/Makefile

2000-08-19 11:22  philm

	* camlibs/canon/serial.c: fixed another type in serial.c

2000-08-19 11:13  jgangemi

	* frontends/gtk/configure.in:	- more verbose output if libglade
	fails

2000-08-19 10:33  philm

	* camlibs/canon/serial.c: fixed a typo in serial.c

2000-08-19 04:34  scottf

	* camlibs/fujitsu/fujitsu.c: updated the supported camera list

2000-08-18 20:47  jgangemi

	* frontends/gtk/src/main.c:   - adding gnome support (by by
	Lutz_Müller)

2000-08-18 20:45  jgangemi

	* frontends/gtk/src/Makefile.am:   - adding gnome support (by
	Lutz_Müller)
	  - now uses gpio-config

2000-08-18 20:44  jgangemi

	* frontends/gtk/: acconfig.h, configure.in:   - adding gnome
	support (by Lutz_Müller)

2000-08-18 17:24  scottf

	* configure.in, libgphoto2/core.c, libgphoto2/core.h,
	libgphoto2/settings.c: implemented id-based settings system

2000-08-18 12:35  scottf

	* frontends/gtk-old/src/util.c: removed debug statement. whoops. :P

2000-08-18 12:33  scottf

	* frontends/gtk-old/src/: callbacks.c, interface.c, util.c, util.h:
	added option to open image in viewer/editor after download

2000-08-18 11:34  scottf

	* camlibs/canon/serial.c: minor update in serial.c for latest
	libusb (usb_device members names changed)

2000-08-17 17:08  scottf

	* camlibs/directory/directory.def: whoops. overwrote the
	directory.def file. fixed

2000-08-17 17:06  scottf

	* camlibs/directory/directory.c, camlibs/directory/directory.def,
	frontends/command-line/main.c: fixing directory browse lib

2000-08-17 15:48  scottf

	* camlibs/directory/directory.c, frontends/gtk-old/src/main.c:
	directory browse now uses GPIO_DIR macros for portability.
	gphoto2_gtk updated for frontend_register functionality

2000-08-17 15:18  scottf

	* camlibs/fujitsu/fujitsu.c, camlibs/fujitsu/library.c,
	libgphoto2/file.c: minor edits

2000-08-17 10:54  scottf

	* camlibs/directory/Makefile.am, camlibs/directory/directory.c,
	frontends/command-line/interface.h, frontends/command-line/main.c,
	include/gphoto2-datatypes.h, libgphoto2/core.c: fixed
	frontend_register function (name-space conflict)

2000-08-17 10:35  scottf

	* camlibs/fujitsu/fujitsu.c, camlibs/fujitsu/library.c,
	camlibs/fujitsu/library.h, frontends/command-line/main.c,
	include/gphoto2-core.h, include/gphoto2-datatypes.h,
	include/gphoto2.h, libgphoto2/core.c, libgphoto2/library.c,
	libgphoto2/settings.c: fixing little things

2000-08-17 06:36  philm

	* frontends/gtk-old/src/Makefile.am: fixed Makefile.am to use
	gpio-config

2000-08-17 04:30  mariusz

	* configure.in: Solaris workaround for tr and grep fixed

2000-08-17 03:05  philm

	* camlibs/canon/: Changelog, canon.c, psa50.c, serial.c: fixed USB
	compilation, but does it work?

2000-08-16 15:12  scottf

	* include/gphoto2.h, libgphoto2/core.c, libgphoto2/exif.h,
	libgphoto2/library.c, libgphoto2/library.h: fixed minor issues

2000-08-16 07:46  mariusz

	* configure.in: fixed problems with Solaris tr (ranges) and grep
	(-E option)

2000-08-16 07:40  mariusz

	* frontends/command-line/main.c: reverse order for image deleting
	in cli

2000-08-15 19:33  jgangemi

	* frontends/gtk/src/: gp_util.c, gp_util.h:   - added gp_idle
	  - completed gp_interface_message_long
	    - create_message_win_long unimplemented
	  - completed gp_interface_message
	    - create_message_win unimplemented

2000-08-15 19:28  jgangemi

	* frontends/gtk/src/: interface.c, interface.h:   - added
	create_message_win_long stub
	  - added create_message_win stub

2000-08-15 13:49  scottf

	* libgphoto2/: library.c, library.h: quick define changes

2000-08-15 11:42  philm

	* camlibs/canon/: Changelog, TODO, canon.c, psa50.c, psa50.h,
	serial.c, serial.h, util.c, util.h: created a working
	camera_config_set functions (saves debug level and owner name). 
	modified heavily the driver to use the camlib_data struct to store
	all the variables which were previously global.  The driver should
	now be able to use more than one Canon camera at a time (not
	tested).

2000-08-14 20:35  jgangemi

	* frontends/gtk/src/camera_util.h:   - finished config_camera_cb
	    - still need to add gp_message calls and implement
	build/retrieve rec
	      routines

2000-08-14 20:31  jgangemi

	* frontends/gtk/src/callbacks.c:   - finished config_camera_cb
	    - still need to add gp_message calls and implement the
	build/retrieve
	      routines

2000-08-14 20:30  jgangemi

	* frontends/gtk/src/camera_util.c:   - moved gp_gtk_camera* to
	gp_util

2000-08-14 20:29  jgangemi

	* frontends/gtk/src/: gp_util.c, gp_util.h:   - new files :
	contains all gp_* routines
	  - added stubs for some routines so interface compiles
	  - gp_debug_print now functional

2000-08-14 20:27  jgangemi

	* frontends/gtk/src/Makefile.am:   - added a few more files to
	compile

2000-08-13 21:45  jgangemi

	* frontends/gtk/src/interface.c:   - added some interface menus,
	work on local file listings

2000-08-13 21:44  jgangemi

	* frontends/gtk/src/: callbacks.c, callbacks.h:   - added some new
	callbacks

2000-08-13 21:43  jgangemi

	* frontends/gtk/src/globals.h:	 - global vars here

2000-08-13 21:42  jgangemi

	* frontends/gtk/src/: tree_list_util.c, tree_list_util.h:   - all
	functions involving trees reside here - these mainly deal w/
	    the directory structures and manipulation of the local and
	camera
	    file system

2000-08-13 21:41  jgangemi

	* frontends/gtk/src/: camera_util.c, camera_util.h:   - all
	interface funcs to the camera will reside here - see the README
	file
	    one level up

2000-08-13 21:39  jgangemi

	* frontends/gtk/src/Makefile.am:   added files for compiling

2000-08-13 21:39  jgangemi

	* frontends/gtk/README:   read me - i've got some "standards"
	listed here

2000-08-12 13:06  scottf

	* camlibs/konica/: konica.c, konica.h, library.c, lowlevel.c,
	localization/data_english.c30, localization/data_french.c30: added
	patches from Lutz. now supports localization

2000-08-11 04:24  simpson2

	* camlibs/makefile.os2, camlibs/barbie/makefile.os2,
	camlibs/canon/makefile.os2, camlibs/canon/serial.c,
	camlibs/digita/makefile.os2, camlibs/directory/makefile.os2,
	camlibs/sonydscf1/Makefile.am, camlibs/sonydscf1/chotplay.c,
	camlibs/sonydscf1/makefile.os2, camlibs/sonydscf1/sonydscf1.c,
	frontends/command-line/makefile.os2,
	frontends/libgphoto2_frontend/makefile.os2, include/gphotoos2.h,
	libgphoto2/core.c, libgphoto2/file.c, libgphoto2/fs.c,
	libgphoto2/makefile.os2: bvl: Updated OS/2 makefile and made a
	start with modifying the sony lib

2000-08-10 17:16  scottf

	* camlibs/canon/serial.c: removed reference to gpio/gpio.h in favor
	of just gpio.h

2000-08-10 16:36  scottf

	* camlibs/fujitsu/: fujitsu.c, fujitsu.h: added generic USB support
	to fujitsu library. just put in vendor/product/endpoints for any
	camera and it will be supported

2000-08-10 16:19  scottf

	* camlibs/fujitsu/fujitsu.c, camlibs/fujitsu/fujitsu.h,
	camlibs/fujitsu/library.c, frontends/command-line/main.c,
	include/gphoto2-datatypes.h: optimized the fujitsu USB support.
	little change in folder-display in the cli

2000-08-10 16:04  scottf

	* camlibs/canon/canon.c: quick typecast change

2000-08-10 15:48  scottf

	* libgphoto2/fs.c: fixed filesystem deletion bug (yuck)

2000-08-10 14:48  philm

	* camlibs/canon/: Changelog, canon.c, psa50.c: changed
	camera_summary to report battery status.

2000-08-10 13:43  philm

	* camlibs/canon/: Changelog, TODO, canon.c, psa50.c, psa50.h: added
	psa50_set_time. added some widget to the config dialog box.

2000-08-09 18:22  philm

	* camlibs/canon/: Changelog, Protocol, canon.c, psa50.c: changed
	timeout for initialization from 1000 to 900 because with 1000 it
	was working on command line but not GUI.  started a configure
	dialog box.  changed gp_file_list to use gp_list_append.

2000-08-09 18:17  scottf

	* camlibs/fujitsu/fujitsu.c, camlibs/fujitsu/fujitsu.h,
	camlibs/fujitsu/library.c, camlibs/fujitsu/library.h,
	camlibs/panasonic/.cvsignore, libgphoto2/fs.c: added USB support to
	the fujitsu library

2000-08-09 14:44  philm

	* camlibs/canon/canon.c: changed a sprintf to strcpy in canon.c
	(avoids a coredumps (?))

2000-08-09 14:14  scottf

	* camlibs/fujitsu/: fujitsu.c, fujitsu.h, library.c: adding USB
	support to fujitsu. it's failing right now. blech.

2000-08-08 19:35  scottf

	* include/gphoto2-datatypes.h: modified cameralistentry

2000-08-08 15:43  scottf

	* camlibs/konica/: konica.c, konica.h, library.c, library.h,
	lowlevel.c, lowlevel.h: added Lutz's patches for filename-centric
	API

2000-08-08 15:33  philm

	* camlibs/canon/serial.c: Fixed typo in serial.c

2000-08-08 15:04  scottf

	* frontends/command-line/main.c: fixed get-all-pictures bug that
	crashed the CLI (for_each_image was being called with NULL folder)

2000-08-08 15:00  scottf

	* frontends/gtk-old/src/: callbacks.c, interface.c: updated gtk-old
	to new API

2000-08-08 14:59  philm

	* camlibs/canon/: TODO, canon.c, psa50.c, psa50.h, serial.c: Upload
	preliminary support for testing.

2000-08-08 12:56  philm

	* camlibs/canon/: Changelog, TODO: TODO and Changelog files
	created.

2000-08-08 12:38  philm

	* camlibs/canon/: canon.c, serial.c: Bug for setting attributes
	corrected. changed canon_serial_send to speed up for all cameras
	but A50 which does not like getting too much data in a row.

2000-08-08 12:10  mariusz

	* camlibs/panasonic/dc1580.c: bug related to abilities fixed

2000-08-06 06:01  mariusz

	* camlibs/panasonic/: README, dc1000.c, dc1580.c: abilities
	accomodated to the new API

2000-08-05 09:57  mariusz

	* camlibs/panasonic/: README, dc.h, dc1000.c, dc1580.c: filename
	based communication between library and core

2000-08-05 05:35  philm

	* camlibs/canon/canon.c: camera_file_delete updated to the filename
	API

2000-08-05 04:55  philm

	* camlibs/canon/: Makefile.am, README, canon.c, psa50.c, serial.c,
	serial.h: Updated library to the filename based API.  PowerShot A5
	support must be updated to the new API.  Deletion of pics does not
	yet work.  USB is not updated to the changes in libgpio.

2000-08-04 20:29  scottf

	* docs/: camlib_devel.sgml, camlib_devel.txt: updated linuxdoc and
	plaintext camlib developer docs

2000-08-04 18:09  scottf

	* camlibs/barbie/barbie.c, camlibs/digita/digita.c,
	camlibs/directory/directory.c, camlibs/fujitsu/fujitsu.c,
	docs/camlib_devel.lyx, include/gphoto2-core.h,
	include/gphoto2-datatypes.h, include/gphoto2-library.h,
	libgphoto2/core.c, libgphoto2/globals.h, libgphoto2/library.c:
	changed camera_id and camera_abilities prototypes. this should be
	the start of stability for the API

2000-08-04 17:09  jerdfelt

	* include/gphoto2-datatypes.h: Clean up type definitions and
	prototypes. Some minor formatting changes for consistency

2000-08-04 17:07  jerdfelt

	* camlibs/digita/: digita.c, usb.c: Get it to atleast compile again

2000-08-04 17:04  jerdfelt

	* camlibs/: canon/.cvsignore, konica/.cvsignore: Update .cvsignore

2000-08-04 17:04  jerdfelt

	* camlibs/canon/canon.c: Spaces to TABs

2000-08-04 17:02  jerdfelt

	* libgphoto2/.cvsignore: Wildcard .lo

2000-08-04 17:01  jerdfelt

	* configure.in: Fix alignment for camera help

2000-08-04 17:01  jerdfelt

	* camlibs/sonydscf1/: .cvsignore, Makefile.am: Standard files

2000-08-04 15:32  scottf

	* camlibs/barbie/barbie.c, camlibs/canon/canon.c,
	camlibs/digita/digita.c, camlibs/directory/directory.c,
	camlibs/fujitsu/fujitsu.c, camlibs/fujitsu/library.c,
	camlibs/konica/library.c, camlibs/panasonic/dc1000.c,
	camlibs/panasonic/dc1580.c, camlibs/sonydscf1/sonydscf1.c,
	camlibs/template/template.c, docs/camlib_devel-portmon.eps,
	docs/camlib_devel-repeater.eps, docs/camlib_devel-y.eps,
	docs/camlib_devel.lyx, docs/camlib_devel.txt,
	include/gphoto2-library.h, libgphoto2/library.c: changed prototype
	for camera_id to use CameraText (sorry everyone\!)

2000-08-04 14:59  jerdfelt

	* libgphoto2/core.c: Standardize formatting a little bit

2000-08-04 14:52  jerdfelt

	* include/gphoto2-datatypes.h: Tabs before everything? Call me
	anal, but I think this is more readable :)

2000-08-04 11:38  scottf

	* frontends/command-line/main.c: fixed thumbnail naming buggy

2000-08-03 17:47  scottf

	* camlibs/barbie/barbie.c, camlibs/barbie/barbie.h,
	camlibs/barbie/library.c, camlibs/directory/directory.c,
	camlibs/fujitsu/fujitsu.c, frontends/command-line/main.c,
	frontends/gtk-old/src/callbacks.c, include/gphoto2-core.h,
	include/gphoto2-datatypes.h, include/gphoto2-library.h,
	libgphoto2/core.c, libgphoto2/fs.c: changed to newer API version.
	completely filename based, more atomic to make way for camera
	locking

2000-08-03 16:13  scottf

	* configure.in, camlibs/NOTES, camlibs/barbie/barbie.c,
	camlibs/directory/directory.c, camlibs/fujitsu/fujitsu.c,
	camlibs/fujitsu/fujitsu.h, camlibs/sonydscf1/chotplay.c,
	camlibs/sonydscf1/sonydscf1.c, frontends/command-line/main.c: moved
	to filename-based system. tested (pretty well) and working with
	barbie, directory, and fujitsu libraries

2000-08-02 10:38  scottf

	* DAEMON, camlibs/barbie/Makefile.am, camlibs/barbie/barbie.c,
	camlibs/barbie/barbie.h, camlibs/barbie/library.c,
	camlibs/barbie/library.h, camlibs/barbie/makefile.os2,
	frontends/command-line/main.c, include/gphoto2-core.h,
	include/gphoto2-datatypes.h, include/gphoto2-library.h,
	libgphoto2/Makefile.am, libgphoto2/core.c, libgphoto2/fs.c,
	libgphoto2/fs.h, libgphoto2/library.c: changing to filename based
	system

2000-08-01 15:03  scottf

	* camlibs/directory/directory.c, include/gphoto2-core.h,
	include/gphoto2-datatypes.h, libgphoto2/widget.c: revised widget
	system (a little)

2000-08-01 15:00  scottf

	* frontends/gtk-old/src/callbacks.c: fixed configuration bug (radio
	buttons). updated to newer widget revision

2000-08-01 12:31  scottf

	* camlibs/fujitsu/fujitsu.c: added folder support patch from Veros
	Kaplan (thanks Veros\!)

2000-08-01 12:17  scottf

	* include/gphoto2-datatypes.h: fixed abilities bug

2000-07-31 19:10  scottf

	* camlibs/: canon/psa50.c, canon/serial.c, digita/digita.c,
	digita/usb.c: updated for new dynamic libgpio

2000-07-31 14:47  scottf

	* camlibs/panasonic/.cvsignore: updated .cvsignore

2000-07-31 14:46  scottf

	* camlibs/panasonic/: README, dc1000.c, dc1000.h: added missing
	panasonic files

2000-07-31 14:45  scottf

	* frontends/command-line/main.c, libgphoto2/Makefile.am,
	libgphoto2/core.c: fixed CAMLIBS directory bug

2000-07-31 11:16  scottf

	* camlibs/fujitsu/fujitsu.c: fixed camera_init conditional
	placemente (noted by Veros Kaplan)

2000-07-31 05:16  simpson2

	* camlibs/digita/: digita.c, digita.h, serial.c: bvl: init
	structure passed to digita seial init, for serial path and speed

2000-07-30 12:59  scottf

	* camlibs/konica/: konica.c, konica.h, library.c: added patch from
	lutz to konica

2000-07-30 06:34  simpson2

	* docs/build_OS2.txt: bvl: start of information on OS/2 Build

2000-07-30 05:10  simpson2

	* AUTHORS, camlibs/makefile.os2, camlibs/barbie/makefile.os2,
	camlibs/canon/makefile.os2, camlibs/digita/makefile.os2,
	camlibs/directory/makefile.os2, camlibs/fujitsu/makefile.os2,
	camlibs/konica/makefile.os2, camlibs/panasonic/makefile.os2,
	camlibs/sonydscf1/makefile.os2,
	frontends/command-line/makefile.os2: bvl: updated OS/2 makefiles,
	there was a stupid machine dependant declaration      in them

2000-07-29 13:28  scottf

	* AUTHORS: added mariusz to the AUTHORS file

2000-07-29 12:06  scottf

	* camlibs/: canon/canon.c, panasonic/Makefile.am, panasonic/dc.c,
	panasonic/dc.h, panasonic/dc1580.c, panasonic/dc1580.h: applied
	patches from Mariusz(panasonic) and Phillipe (canon)

2000-07-29 04:41  simpson2

	* camlibs/barbie/makefile.os2,
	frontends/libgphoto2_frontend/makefile.os2: bvl: updated OS/2
	support

2000-07-29 04:32  simpson2

	* camlibs/.cvsignore: bvl: updated

2000-07-29 04:31  simpson2

	* camlibs/konica/: .cvsignore, konica.df, makefile.os2: bvl: added
	files needed to build DLL on OS/2

2000-07-29 04:30  simpson2

	* camlibs/fujitsu/.cvsignore: [no log message]

2000-07-29 04:29  simpson2

	* camlibs/fujitsu/: fujitsu.df, makefile.os2: bvl: Files needed to
	build DLL on OS/2

2000-07-29 04:28  simpson2

	* camlibs/makefile.os2, camlibs/directory/makefile.os2,
	frontends/command-line/makefile.os2, include/gphotoos2.h,
	libgphoto2/makefile.os2: bvl: various changes and updates to OS/2
	specific files

2000-07-29 04:27  simpson2

	* camlibs/sonydscf1/: readme, todo: [no log message]

2000-07-29 04:25  simpson2

	* camlibs/sonydscf1/: chotplay.c, chotplay.h, command.c, command.h,
	common.h, config.h, dsc_f1.c, getuint.c, getuint.h, makefile.os2,
	pmp.h, sonydscf1.c, sonydscf1.df, sonydscf1.h: bvl: Support for the
	Sony DSC-F1, modified library from gphoto1	only tested and
	compiled on OS/2

2000-07-29 04:20  simpson2

	* camlibs/canon/: canon.c, psa50.c, serial.c: bvl: changed include
	<gpio/gpio.h> to <gpio.h> as discussed earlier

2000-07-29 04:17  simpson2

	* camlibs/: barbie/barbie.df, barbie/makefile.os2, canon/canon.df,
	canon/makefile.os2: bvl: added files to build DLL on OS/2

2000-07-29 04:16  simpson2

	* camlibs/panasonic/: dc.c, dc1580.c, makefile.os2, panasonic.df:
	bvl: dc.c, dc1580.c added db.h include, to make it compile on OS/2 
	    makefile.os2 panansonic.df files needed to build dll on OS/2

2000-07-29 04:14  simpson2

	* camlibs/digita/digita.df: bvl: digita.df, module defenition file
	to create DLL on OS/2

2000-07-29 04:13  simpson2

	* camlibs/digita/makefile.os2: bvl: makefile for OS/2

2000-07-29 04:13  simpson2

	* camlibs/digita/: commands.c, digita.c, digita.h, serial.c, usb.c:
	bvl: Changed include file from <gpio/gpio.h> to <gpio.h>

2000-07-28 23:09  scottf

	* include/gphoto2-datatypes.h: fixed abilities->port macros to
	reflect renumbering of CameraPortType

2000-07-28 16:54  scottf

	* camlibs/panasonic/dc1580.c: replace gp_message in panasonic lib
	with gp_camera_message

2000-07-28 13:20  scottf

	* camlibs/canon/canon.c, camlibs/canon/canon.h,
	camlibs/canon/psa50.c, camlibs/canon/psa50.h,
	camlibs/fujitsu/fujitsu.c, frontends/command-line/main.c,
	frontends/gtk-old/src/callbacks.c, include/gphoto2-datatypes.h,
	libgphoto2/core.c, libgphoto2/globals.h, libgphoto2/library.c:
	added patch from mariusz to fix deleting bug. added canon patch
	from phillipe to fix thumbnailing bug and add detection of IXUS

2000-07-27 13:00  scottf

	* camlibs/canon/canon.c, camlibs/canon/serial.c,
	camlibs/konica/library.c, libgphoto2/library.c: fixed 'not a
	library' bug for konica and canon libraries

2000-07-27 12:30  scottf

	* camlibs/konica/library.c: added patch from Lutz fixing exit, and
	removing unneeded struct

2000-07-27 03:31  scottf

	* ChangeLog: updated ChangeLog

2000-07-27 00:38  scottf

	* frontends/gtk/configure.in: changed name of gtk from project5 to
	gphoto2_gtk2 for now

2000-07-27 00:37  scottf

	* frontends/gtk/: install-sh, missing, mkinstalldirs,
	intl/ChangeLog, intl/VERSION, intl/bindtextdom.c,
	intl/cat-compat.c, intl/dcgettext.c, intl/dgettext.c,
	intl/explodename.c, intl/finddomain.c, intl/gettext.c,
	intl/gettext.h, intl/gettextP.h, intl/hash-string.h,
	intl/intl-compat.c, intl/l10nflist.c, intl/libgettext.h,
	intl/linux-msg.sed, intl/loadinfo.h, intl/loadmsgcat.c,
	intl/localealias.c, intl/po2tbl.sed.in, intl/textdomain.c,
	intl/xopen-msg.sed: remove intl directory

2000-07-27 00:35  scottf

	* frontends/gtk/: aclocal.m4, config.h.in, configure,
	po/Makefile.in.in, po/cat-id-tbl.c, po/project5.pot,
	po/stamp-cat-id, src/Makefile.am: removed unnecessary files

2000-07-27 00:25  scottf

	* frontends/gtk/src/: tree_list_util.c, tree_list_util.h: added
	missing files to the gtk frontend

2000-07-26 22:46  scottf

	* camlibs/digita/digita.c: fixed small bug in digita abilities code
	(incremented pointer location, not value for some reason :P)

2000-07-26 22:44  scottf

	* camlibs/template/template.c: corrected template directory's port
	ability

2000-07-26 22:42  scottf

	* camlibs/: canon/.cvsignore, konica/.cvsignore: mod'd cvsignore
	files

2000-07-26 22:41  scottf

	* camlibs/digita/digita.c, camlibs/digita/digita.h,
	camlibs/digita/serial.c, camlibs/digita/usb.c,
	frontends/command-line/Makefile.am, frontends/command-line/main.c,
	include/gphoto2-datatypes.h, include/gphoto2.h: added digita
	library and command-line patch from Johannes

2000-07-26 21:33  scottf

	* camlibs/: canon/Makefile, canon/Makefile.in, konica/Makefile.in:
	removed Makefile[.in] from canon and konica libs

2000-07-26 21:06  scottf

	* docs/: .cvsignore, camlib_devel.lyx, camlib_devel.sgml,
	camlib_devel.txt, frontend_devel.lyx, frontend_devel.sgml,
	frontend_devel.txt: starting to write the docs. outlined structure

2000-07-26 20:43  scottf

	* docs/: camlib_devel.lyx, camlib_devel.sgml, frontend_devel.lyx,
	frontend_devel.sgml: adding skeletons for the docs

2000-07-26 20:26  scottf

	* docs/: camlib_devel.txt, frontend_devel.txt: starting developer
	documentation

2000-07-26 20:22  scottf

	* frontends/gtk/src/Makefile.am: small Makefile.am change to gtk

2000-07-26 19:55  scottf

	* frontends/gtk-old/files.list: removed files.list

2000-07-26 14:36  scottf

	* frontends/gtk/autogen.sh: added autogen.sh

2000-07-26 14:34  scottf

	* frontends/gtk/: ABOUT-NLS, AUTHORS, COPYING, ChangeLog, INSTALL,
	Makefile.am, NEWS, README, acconfig.h, aclocal.m4, config.h.in,
	configure, configure.in, install-sh, missing, mkinstalldirs,
	stamp-h.in, intl/ChangeLog, intl/VERSION, intl/bindtextdom.c,
	intl/cat-compat.c, intl/dcgettext.c, intl/dgettext.c,
	intl/explodename.c, intl/finddomain.c, intl/gettext.c,
	intl/gettext.h, intl/gettextP.h, intl/hash-string.h,
	intl/intl-compat.c, intl/l10nflist.c, intl/libgettext.h,
	intl/linux-msg.sed, intl/loadinfo.h, intl/loadmsgcat.c,
	intl/localealias.c, intl/po2tbl.sed.in, intl/textdomain.c,
	intl/xopen-msg.sed, pixmaps/camera.xpm, pixmaps/close_image.xpm,
	pixmaps/configure.xpm, pixmaps/delete_images.xpm, pixmaps/exit.xpm,
	pixmaps/fliph.xpm, pixmaps/flipv.xpm, pixmaps/folder.xpm,
	pixmaps/get_index.xpm, pixmaps/get_index_empty.xpm,
	pixmaps/get_selected_images.xpm, pixmaps/no_thumbnail.xpm,
	pixmaps/open_image.xpm, pixmaps/print_image.xpm,
	pixmaps/refresh.xpm, pixmaps/resize.xpm, pixmaps/rotc.xpm,
	pixmaps/save_current_image.xpm, po/ChangeLog, po/Makefile.in.in,
	po/POTFILES.in, po/cat-id-tbl.c, po/project5.pot, po/stamp-cat-id,
	src/Makefile.am, src/callbacks.c, src/callbacks.h, src/interface.c,
	src/interface.h, src/main.c, src/support.c, src/support.h: added
	new gtk inteface beginning code

2000-07-26 14:25  scottf

	* frontends/gtk-old/: po/.cvsignore, src/.cvsignore: whoops. fixed
	cvsignore in gtk-old

2000-07-26 14:24  scottf

	* camlibs/: canon/.cvsignore, konica/.cvsignore,
	konica/localization/data_english.c30,
	konica/localization/data_french.c30, panasonic/.cvsignore: updated
	all .cvsignore files

2000-07-26 14:21  scottf

	* frontends/gtk-old/: .cvsignore, po/.cvsignore, src/.cvsignore:
	updated .cvsignore files

2000-07-26 14:14  scottf

	* configure.in, camlibs/barbie/barbie.c, camlibs/canon/Makefile,
	camlibs/canon/Makefile.am, camlibs/canon/Makefile.in,
	camlibs/directory/directory.c, camlibs/konica/konica.c,
	camlibs/konica/konica.h, camlibs/konica/library.c,
	camlibs/konica/lowlevel.c, camlibs/konica/lowlevel.h,
	frontends/command-line/main.c, frontends/gtk-old/src/callbacks.c,
	frontends/gtk-old/src/globals.h, frontends/gtk-old/src/interface.c,
	frontends/gtk-old/src/interface.h, frontends/gtk-old/src/main.c,
	include/gphoto2-core.h, include/gphoto2-datatypes.h,
	include/gphoto2.h, libgphoto2/core.c, libgphoto2/library.c: updated
	gtk-old interface to new object-oriented API

2000-07-25 16:58  ole

	* camlibs/canon/Makefile.am: Fix libgphoto2_canon_la_LDFLAGS

2000-07-25 14:26  scottf

	* include/gphoto2-core.h, include/gphoto2-datatypes.h,
	libgphoto2/core.c: added gp_camera_free(). added some error
	checking

2000-07-25 14:03  scottf

	* configure.in, camlibs/barbie/barbie.c, camlibs/barbie/barbie.h,
	camlibs/canon/Makefile, camlibs/canon/canon.c,
	camlibs/canon/psa50.c, camlibs/canon/psa50.h,
	camlibs/canon/serial.c, camlibs/digita/digita.c,
	camlibs/directory/directory.c, camlibs/directory/directory.h,
	camlibs/fujitsu/fujitsu.c, camlibs/fujitsu/fujitsu.h,
	camlibs/fujitsu/library.c, camlibs/fujitsu/library.h,
	camlibs/konica/library.c, camlibs/panasonic/dc1580.c,
	camlibs/template/template.c, frontends/command-line/interface.c,
	frontends/command-line/main.c, include/gphoto2-core.h,
	include/gphoto2-datatypes.h, include/gphoto2-interface.h,
	include/gphoto2-library.h, libgphoto2/core.c, libgphoto2/core.h,
	libgphoto2/file.c, libgphoto2/globals.h, libgphoto2/library.c,
	libgphoto2/library.h: moved to object-oriented Camera* design

2000-07-25 13:02  scottf

	* camlibs/canon/: Makefile, Makefile.am, Makefile.in, Protocol,
	README, canon.c, canon.h, crc.c, crc.h, mkpatch, psa50.c, psa50.h,
	serial.c, serial.h, util.c, util.h, ps350/COPYING, ps350/README,
	ps350/SerialIn, ps350/compu1, ps350/compu3, ps350/compu3c,
	ps350/compu3d, ps350/compu3e-4, ps350/compu3f, ps350/compu5,
	ps350/compu6, ps350/notes.txt, ps350/ps350chk.c, ps350/ps350init,
	ps350/ps350proto.txt, ps350/renamejpg.c: added canon lib\!\!

2000-07-24 13:43  scottf

	* configure.in: added comma :P

2000-07-24 03:47  simpson2

	* makefile.os2, camlibs/makefile.os2,
	camlibs/directory/directory.def, camlibs/directory/makefile.os2,
	frontends/command-line/main.c, frontends/command-line/makefile.os2,
	include/gphoto2.h, include/gphotoos2.h, libgphoto2/library.c,
	libgphoto2/makefile.os2: bvl: Made some linebreak statments, and
	ifdef correction on behalf of the      OS/2 port

2000-07-22 14:47  scottf

	* camlibs/: directory/directory.c, fujitsu/fujitsu.c: minor
	config_set/get bug fix

2000-07-22 14:34  scottf

	* camlibs/fujitsu/fujitsu.c, frontends/gtk-old/src/callbacks.c,
	include/gphoto2-core.h, include/gphoto2-datatypes.h,
	libgphoto2/core.c, libgphoto2/widget.c: added dynamic configuration
	support.

2000-07-21 21:59  scottf

	* frontends/gtk-old/src/callbacks.c, frontends/gtk-old/src/util.c,
	include/gphoto2-core.h, include/gphoto2-datatypes.h,
	libgphoto2/widget.c: fixed nasty recursive gp_widget_free bug.
	blech.

2000-07-21 20:06  scottf

	* camlibs/fujitsu/fujitsu.c, frontends/gtk-old/src/callbacks.c,
	include/gphoto2-datatypes.h, libgphoto2/widget.c: reworked widget
	system a little. added more functions

2000-07-21 16:14  scottf

	* frontends/gtk-old/src/callbacks.c, libgphoto2/widget.c: adding
	configuration support to GTK frontend

2000-07-21 14:55  scottf

	* camlibs/fujitsu/fujitsu.c, frontends/command-line/test.c,
	frontends/gtk-old/src/callbacks.c, include/gphoto2-core.h,
	include/gphoto2-datatypes.h, libgphoto2/core.c,
	libgphoto2/widget.c: widget system is now working\! adding support
	to GTK frontend

2000-07-21 14:15  scottf

	* acconfig.h, configure.in, camlibs/Makefile.am,
	camlibs/konica/Makefile.in, camlibs/panasonic/dc.c,
	camlibs/panasonic/dc.h, camlibs/panasonic/dc1580.c,
	camlibs/panasonic/dc1580.h, frontends/command-line/.cvsignore,
	libgphoto2/file.c, libgphoto2/library.c: added a bunch of patchs
	from Johannes and Mariusz

2000-07-21 14:15  scottf

	* camlibs/digita/: .cvsignore, Makefile.am, commands.c, digita.c,
	digita.h, serial.c, usb.c: adding .cvsignor for digita driver dir

2000-07-19 21:55  scottf

	* camlibs/directory/directory.c: added more image file types to
	directory browse lib

2000-07-19 21:43  scottf

	* camlibs/fujitsu/fujitsu.c, frontends/gtk-old/src/callbacks.c:
	added more cameras to the supported camera list

2000-07-19 21:37  scottf

	* camlibs/barbie/barbie.c: renamed the camera models

2000-07-19 21:20  scottf

	* camlibs/barbie/barbie.c, camlibs/directory/directory.c,
	camlibs/fujitsu/fujitsu.c, camlibs/konica/library.c,
	camlibs/panasonic/dc1580.c, camlibs/template/template.c,
	frontends/command-line/main.c, include/gphoto2-core.h,
	include/gphoto2-datatypes.h, include/gphoto2-library.h,
	libgphoto2/core.c, libgphoto2/core.h: changed _manual, _about, and
	_summary to use CameraText to guarantee 32k of text space

2000-07-19 20:59  scottf

	* camlibs/barbie/barbie.c, camlibs/directory/directory.c,
	camlibs/fujitsu/fujitsu.c, camlibs/konica/library.c,
	camlibs/panasonic/dc1580.c, frontends/command-line/main.c,
	include/gphoto2-datatypes.h, libgphoto2/util.c: changed
	abilities.(serial, parallel, usb, ...) to just ORing of
	abilities.port

2000-07-19 20:36  scottf

	* camlibs/barbie/barbie.c, camlibs/directory/directory.c,
	camlibs/fujitsu/fujitsu.c, camlibs/panasonic/dc1580.c,
	camlibs/template/template.c, include/gphoto2-core.h,
	include/gphoto2-datatypes.h, include/gphoto2-library.h,
	libgphoto2/core.c, libgphoto2/core.h: updated camera_capture
	prototype

2000-07-19 20:23  scottf

	* camlibs/barbie/barbie.c, camlibs/directory/directory.c,
	camlibs/fujitsu/fujitsu.c, camlibs/konica/library.c,
	camlibs/panasonic/dc1580.c, camlibs/template/template.c,
	frontends/libgphoto2_frontend/cache.c, include/gphoto2-datatypes.h,
	include/gphoto2-library.h, libgphoto2/core.c, libgphoto2/file.c:
	converted over to using mime types in CameraFile->type

2000-07-19 20:07  scottf

	* configure.in, camlibs/konica/COPYING, camlibs/konica/ChangeLog,
	camlibs/konica/EXPERTS, camlibs/konica/Makefile.am,
	camlibs/konica/Makefile.in, camlibs/konica/README,
	camlibs/konica/TODO, camlibs/konica/konica.c,
	camlibs/konica/konica.h, camlibs/konica/library.c,
	camlibs/konica/lowlevel.c, camlibs/konica/lowlevel.h: added konica
	library. thanx Lutz\!

2000-07-19 19:24  scottf

	* camlibs/fujitsu/fujitsu.c, camlibs/fujitsu/library.c,
	frontends/gtk-old/src/callbacks.c,
	frontends/gtk-old/src/interface.c, libgphoto2/core.c,
	libgphoto2/library.c, libgphoto2/util.c: fixed camera abilities
	bug. finishing gtk frontend. fixed minor bug in fujitsu lib

2000-07-19 18:58  scottf

	* camlibs/fujitsu/fujitsu.c: added camera_stop to the end of _init

2000-07-19 18:45  scottf

	* camlibs/fujitsu/README: updated README

2000-07-19 18:44  scottf

	* camlibs/fujitsu/library.c: hell. removed all usleeps and it's
	much quicker now. errors are recovered (if they ever pop up)

2000-07-19 18:41  scottf

	* camlibs/fujitsu/fujitsu.c: removed guts of camera_exit. not
	needed now.

2000-07-19 18:39  scottf

	* camlibs/fujitsu/fujitsu.c: wrapped folder_set and file_count in
	start/stop functions

2000-07-19 18:36  scottf

	* camlibs/fujitsu/fujitsu.c, frontends/gtk-old/src/callbacks.c:
	gtk-old is working. good to go\!

2000-07-19 18:30  scottf

	* camlibs/fujitsu/library.c: scaled percentage value

2000-07-19 18:28  scottf

	* camlibs/fujitsu/library.c: reduced timeout. faster now.

2000-07-19 18:27  scottf

	* camlibs/fujitsu/: fujitsu.c, library.c: error recovery is a good
	thing. now nak's incomplete packets and reads again

2000-07-19 18:00  scottf

	* camlibs/fujitsu/library.c: increased timeout to let camera catch
	up

2000-07-19 17:56  scottf

	* camlibs/fujitsu/fujitsu.c: hacked around idle camera bug. camera
	didn't like sitting idle between operations.

2000-07-19 16:53  scottf

	* camlibs/fujitsu/fujitsu.c, camlibs/fujitsu/library.c,
	frontends/command-line/main.c, frontends/gtk-old/AUTHORS,
	frontends/gtk-old/MANUAL, frontends/gtk-old/src/callbacks.c,
	frontends/gtk-old/src/callbacks.h,
	frontends/gtk-old/src/gtkiconlist.c,
	frontends/gtk-old/src/gtkitementry.c,
	frontends/gtk-old/src/interface.c,
	frontends/gtk-old/src/interface.h, frontends/gtk-old/src/util.c,
	frontends/gtk-old/src/util.h: almost done on new gtk-old interface.
	fixing fujitsu library bugs.

2000-07-19 15:07  scottf

	* camlibs/directory/directory.c: fixed preview naming bug

2000-07-19 13:08  scottf

	* libgphoto2/file.c: null terminater the file->data in gp_file_open

2000-07-19 11:35  scottf

	* frontends/gtk-old/src/: callbacks.c, callbacks.h, interface.c:
	finished the save dialog. just need to save now

2000-07-19 11:04  scottf

	* frontends/gtk-old/acinclude.m4: added DOCDIC macro to build
	(thanks Ole)

2000-07-19 11:03  scottf

	* frontends/gtk-old/pixmaps/refresh.xpm: added refresh button

2000-07-18 20:08  scottf

	* frontends/gtk-old/src/: callbacks.c, interface.c, interface.h,
	util.c, util.h: finishing up gtk-old. adding saving functionality.

2000-07-18 17:28  scottf

	* frontends/gtk-old/src/: callbacks.c, gtkiconlist.lo, interface.c:
	how'd that object file get in there? whoops. it was me. :P

2000-07-18 17:22  scottf

	* COPYING: Put in copy of LGPL

2000-07-18 17:21  scottf

	* camlibs/directory/directory.c: added manual and summary to
	directory lib

2000-07-18 17:08  scottf

	* frontends/gtk-old/: AUTHORS, acconfig.h, configure.in,
	src/callbacks.c, src/interface.c, src/interface.h: added help menu
	items

2000-07-18 16:22  scottf

	* include/gphoto2.h: removed gpio.h reference from gphoto2.h
	(didn't need it)

2000-07-18 16:17  scottf

	* frontends/gtk-old/: COPYING, INSTALL: whoops. needed to add
	COPYING file and INSTALL :P

2000-07-18 16:17  scottf

	* frontends/gtk-old/: Makefile.am, src/callbacks.c: updated COPYING
	file and INSTALL

2000-07-18 16:12  scottf

	* camlibs/fujitsu/library.c, camlibs/template/template.c,
	include/gphoto2.h: finished replacing <gpio/gpio.h> with <gpio.h>

2000-07-18 16:10  scottf

	* camlibs/barbie/barbie.c, camlibs/fujitsu/fujitsu.c,
	camlibs/panasonic/dc.h, frontends/gtk-old/MANUAL,
	frontends/gtk-old/Makefile.am, frontends/gtk-old/src/callbacks.c,
	frontends/gtk-old/src/interface.c, libgphoto2/Makefile.am,
	libgphoto2/core.c: replaced all #include <gpio/gpio.h> with
	#include <gpio.h> for portability (so other non-development
	oriented platforms can compile without installing)

2000-07-18 15:31  scottf

	* frontends/gtk-old/.cvsignore: added cvsignore to gtk-old

2000-07-18 14:38  scottf

	* AUTHORS: minor AUTHORS change.

2000-07-18 14:38  scottf

	* frontends/gtk-old/configure.in,
	frontends/gtk-old/src/callbacks.c,
	frontends/gtk-old/src/interface.c,
	frontends/gtk-old/src/interface.h, libgphoto2/file.c: added AUTHORS
	file to install.

2000-07-18 14:13  scottf

	* .cvsignore, AUTHORS, Makefile.am, acconfig.h, configure.in,
	camlibs/.cvsignore, camlibs/Makefile.am, camlibs/NOTES,
	camlibs/barbie/.cvsignore, camlibs/directory/.cvsignore,
	camlibs/fujitsu/.cvsignore, frontends/.cvsignore,
	frontends/command-line/.cvsignore, frontends/command-line/main.c,
	frontends/gtk-old/configure.in, frontends/gtk-old/src/callbacks.c,
	frontends/gtk-old/src/interface.c,
	frontends/libgphoto2_frontend/.cvsignore, include/.cvsignore,
	libgphoto2/Makefile.am: added patch for --get-picture (correctly
	reports error message now) from Mariusz. patched cvsignore patch
	from Johannes.

2000-07-18 13:25  scottf

	* camlibs/panasonic/dc.c, camlibs/panasonic/dc.h,
	camlibs/panasonic/dc1580.c, camlibs/panasonic/dc1580.h,
	frontends/command-line/main.c, libgphoto2/core.c: updated
	panansonic library. Thanx Mariusz

2000-07-17 19:28  scottf

	* frontends/gtk-old/src/: callbacks.c, callbacks.h, gtkiconlist.c,
	gtkiconlist.h: fixed nasty bug with gtkiconlist. not thread safe.

2000-07-17 16:44  scottf

	* frontends/gtk-old/src/: callbacks.c, callbacks.h, interface.c:
	rearranged toolbar. added refresh button. removed index buttons.

2000-07-17 12:46  ole

	* libgphoto2/core.c: Added #ifdef's for GPIO_USB, GPIO_IEEE1394 and
	GPIO_NETWORK

2000-07-17 12:43  ole

	* frontends/command-line/main.c: Replaced conflicting delacaration
	of 'daemon' in unistd.h with 'daemonmode'

2000-07-17 12:26  scottf

	* include/gphotoos2.h: edited gphotoos2.h.

2000-07-17 12:11  scottf

	* configure.in, makefile.os2, camlibs/makefile.os2,
	camlibs/directory/directory.c, camlibs/directory/directory.def,
	camlibs/directory/makedll.cmd, camlibs/directory/makefile.os2,
	camlibs/fujitsu/fujitsu.c, camlibs/panasonic/dc1580.c,
	frontends/command-line/main.c, frontends/command-line/makefile.os2,
	include/gphoto2.h, include/gphotoos2.h, libgphoto2/library.c,
	libgphoto2/makefile.os2: added os2 support. Thank Bart a lot, OS2
	users :)

2000-07-17 11:54  scottf

	* camlibs/panasonic/: dc.c, dc1580.c: small workaround for uint8_t
	and uint32_t (#defines)

2000-07-17 11:45  scottf

	* camlibs/: Makefile.am, panasonic/Makefile.am, panasonic/dc.c,
	panasonic/dc.h, panasonic/dc1580.c, panasonic/dc1580.h: Added
	panasonic library. Thanx Mariusz.

2000-07-14 21:27  scottf

	* frontends/gtk-old/src/: callbacks.c, callbacks.h, globals.h,
	interface.c, main.c: added file deletion to gtk-old. now icon list
	updates on resizing (neat). only a couple things left :)

2000-07-14 19:08  scottf

	* frontends/gtk-old/src/: callbacks.c, gtkiconlist.c,
	gtkitementry.c, interface.c: selecting thumbnails works (small hack
	in gtkiconlist.c)

2000-07-14 17:55  scottf

	* frontends/gtk-old/src/: callbacks.c, callbacks.h, globals.h,
	interface.c, interface.h, main.c: wow. folder listing is working
	nicely. added new progress window (percent and message included
	with cancel button).

2000-07-14 17:53  scottf

	* libgphoto2/core.c: core will now sort the folder list before
	passing it back to the front-end (how nice ;)

2000-07-14 15:32  scottf

	* camlibs/directory/directory.c: fixed getting multiple indexes
	error

2000-07-14 15:14  scottf

	* camlibs/barbie/barbie.c, camlibs/directory/directory.c,
	camlibs/fujitsu/fujitsu.c, camlibs/fujitsu/fujitsu.h,
	camlibs/fujitsu/library.c, camlibs/fujitsu/library.h,
	camlibs/template/template.c, frontends/command-line/main.c,
	frontends/command-line/test.c, frontends/gtk-old/src/main.c,
	include/gphoto2-core.h, include/gphoto2-datatypes.h,
	include/gphoto2-library.h, libgphoto2/core.c, libgphoto2/core.h,
	libgphoto2/library.c, libgphoto2/util.c, libgphoto2/util.h: remove
	camera_debug_set function, moved to CameraInit flag

2000-07-13 20:06  scottf

	* frontends/gtk-old/src/callbacks.c: whoops. file_get changed to
	file_get_preview in the indexing function :P MUCH faster now.
	sheesh.

2000-07-13 20:01  scottf

	* frontends/gtk-old/src/: callbacks.c, gtkiconlist.c,
	gtkiconlist.h, interface.c, util.c, util.h: indexing is working.
	camera folder browsing is working. directory browse works (will
	index any directory)

2000-07-13 16:33  scottf

	* libgphoto2/: core.c, library.c: fixed previous sorting error
	(forgot to sort the camera abilities with the camera list). blech
	blech blech

2000-07-13 16:09  scottf

	* libgphoto2/library.c: camera list is now sorted

2000-07-13 16:01  scottf

	* camlibs/directory/directory.c, include/gphoto2-datatypes.h: sped
	up directory browse functionality overall

2000-07-13 16:00  scottf

	* frontends/gtk-old/src/: callbacks.c, callbacks.h, interface.c,
	main.c: folder browsing and setting now working

2000-07-13 15:09  scottf

	* camlibs/directory/directory.c: fixed crashing from NULL pointer

2000-07-13 13:37  scottf

	* camlibs/barbie/barbie.c, camlibs/directory/directory.c,
	frontends/gtk-old/pixmaps/folder.xpm,
	frontends/gtk-old/src/callbacks.c,
	frontends/gtk-old/src/callbacks.h,
	frontends/gtk-old/src/interface.c, include/gphoto2-library.h:
	removed <gphotos> camerafolderlist entry requirement (was silly)

2000-07-13 13:29  scottf

	* frontends/gtk-old/pixmaps/: camera.xpm, folder.xpm,
	no_thumbnail.xpm: whoops. forgot pixmaps

2000-07-13 13:29  scottf

	* frontends/gtk-old/src/: callbacks.c, callbacks.h, interface.c,
	main.c: adding folder tree on left

2000-07-12 20:55  scottf

	* frontends/gtk-old/src/: callbacks.c, gtkiconlist.c,
	gtkiconlist.h, gtkiconlist.lo, gtkitementry.c, gtkitementry.h,
	interface.c: added icon list from gtkiconlist and some beginning
	index code (not much)

2000-07-12 17:45  scottf

	* camlibs/fujitsu/fujitsu.c, frontends/command-line/main.c,
	frontends/gtk-old/src/Makefile.am,
	frontends/gtk-old/src/callbacks.c,
	frontends/gtk-old/src/interface.c: starting thumbnail index.
	gdk-pixbuf rocks.

2000-07-12 17:44  scottf

	* libgphoto2/settings.c: fixed load_settings bug that let null
	values crash the core (blech)

2000-07-11 19:33  scottf

	* camlibs/barbie/barbie.c, camlibs/directory/directory.c,
	frontends/command-line/main.c, frontends/command-line/test.c,
	include/gphoto2-core.h, include/gphoto2-datatypes.h,
	libgphoto2/core.c, libgphoto2/core.h, libgphoto2/library.c: done
	for the day

2000-07-11 19:33  scottf

	* frontends/gtk-old/src/: callbacks.c, callbacks.h, main.c, util.c:
	camera changes go smoothly.

2000-07-11 19:32  scottf

	* camlibs/fujitsu/: fujitsu.c, library.c: fixed detection of
	folders

2000-07-11 18:19  scottf

	* camlibs/fujitsu/fujitsu.c: fixed timing issues (slowed down
	read/write)

2000-07-11 18:00  scottf

	* frontends/gtk-old/src/: Makefile.am, callbacks.c, globals.h,
	interface.c, interface.h, main.c, util.c: camera info/manual/about
	working. doesn't init() at start-up (waits for camera-related
	function

2000-07-11 17:26  scottf

	* camlibs/fujitsu/fujitsu.c: fixed get_int_register bug (no ack)

2000-07-11 16:06  scottf

	* camlibs/fujitsu/: fujitsu.c, library.c: added 460Z to list of
	supported cameras

2000-07-11 15:32  scottf

	* camlibs/fujitsu/: fujitsu.c, library.c: fixed camera_exit bug

2000-07-11 14:31  scottf

	* frontends/gtk-old/src/: callbacks.c, globals.h, interface.c,
	main.c: camera selection dialog working

2000-07-10 19:16  scottf

	* frontends/gtk-old/src/: callbacks.c, callbacks.h, globals.h,
	interface.c, main.c, util.c, util.h: diggin in to the old gtk
	interface. camera/selection working (well, sort of)

2000-07-10 17:52  scottf

	* DAEMON, frontends/command-line/main.c: added daemon description,
	and flag for command-line

2000-07-10 15:08  scottf

	* frontends/command-line/Makefile.am,
	frontends/command-line/interface.c, frontends/command-line/main.c,
	frontends/gtk-old/src/interface.c,
	frontends/gtk-old/src/interface.h,
	frontends/libgphoto2_frontend/cache.c,
	frontends/libgphoto2_frontend/gphoto2-frontend.h,
	frontends/libgphoto2_frontend/helpers.c,
	frontends/libgphoto2_frontend/image.c,
	frontends/libgphoto2_frontend/script.c,
	include/gphoto2-interface.h, libgphoto2/core.c: renamed interface_*
	to gp_interface_*. changed command-line numbering to begin at 1

2000-07-10 10:27  scottf

	* frontends/libgphoto2_frontend/: Makefile.am, cache.c, cache.h,
	gphoto2-frontend.h, helpers.h, image.c, image.h, script.c: adding
	gPhoto scripting

2000-07-08 13:20  ole

	* libgphoto2/: .cvsignore, Makefile.am: Shut up, cvs...

2000-07-08 12:41  ole

	* configure.in: Added check for gpio and LIBGPHOTO_* globals

2000-07-08 11:36  ole

	* libgphoto2/: Makefile.am, libgphoto2Conf.sh.in: Added
	configuration file for using libgphoto2 in GNOME applications

2000-07-07 18:58  scottf

	* frontends/gtk-old/src/: util.c, util.h: whoops. needed to remove
	old gPhoto ref's

2000-07-07 18:54  scottf

	* frontends/gtk-old/src/Makefile.am: final commit for the day

2000-07-07 18:52  scottf

	* frontends/gtk-old/src/: callbacks.c, callbacks.h, interface.c,
	main.c, util.c, util.h: added util.[ch]

2000-07-07 18:19  scottf

	* frontends/gtk-old/configure.in,
	frontends/gtk-old/src/Makefile.am,
	frontends/gtk-old/src/interface.c,
	frontends/gtk-old/src/interface.h, frontends/gtk-old/src/main.c,
	libgphoto2/Makefile.am: linked libgphoto2 to libgpio.

2000-07-07 17:57  scottf

	* Makefile.am, configure.in, gphoto2-config.in,
	frontends/gtk-old/src/Makefile.am, frontends/gtk-old/src/main.c:
	added gphoto2-config script to make adding frontends and libraries
	easier

2000-07-07 17:28  scottf

	* frontends/gtk-old/: AUTHORS, ChangeLog, Makefile.am, NEWS,
	README, acconfig.h, autogen.sh, configure.in, files.list,
	gphoto2-gtk.glade, gphoto2-gtk.glade.bak, stamp-h.in,
	pixmaps/close_image.xpm, pixmaps/configure.xpm,
	pixmaps/delete_images.xpm, pixmaps/exit.xpm, pixmaps/fliph.xpm,
	pixmaps/flipv.xpm, pixmaps/get_index.xpm,
	pixmaps/get_index_empty.xpm, pixmaps/get_selected_images.xpm,
	pixmaps/open_image.xpm, pixmaps/print_image.xpm,
	pixmaps/resize.xpm, pixmaps/rotc.xpm,
	pixmaps/save_current_image.xpm, po/ChangeLog, po/POTFILES.in,
	src/Makefile.am, src/callbacks.c, src/callbacks.h, src/interface.c,
	src/interface.h, src/main.c, src/support.c, src/support.h: Adding
	older gtk interface to frontends

2000-07-06 17:33  scottf

	* camlibs/fujitsu/fujitsu.c, camlibs/fujitsu/fujitsu.h,
	camlibs/fujitsu/library.c, include/gphoto2-library.h: added DC1
	error checking to fujitsu library

2000-07-06 16:59  scottf

	* camlibs/fujitsu/fujitsu.c, camlibs/fujitsu/library.c,
	frontends/command-line/main.c, include/gphoto2-library.h: fujitsu
	camera summary working.

2000-07-06 15:27  scottf

	* camlibs/fujitsu/fujitsu.c, camlibs/fujitsu/fujitsu.h,
	camlibs/fujitsu/library.c, frontends/command-line/interface.c,
	frontends/command-line/main.c: fujitsu library working nicely. 99%
	functional.

2000-07-05 20:11  scottf

	* camlibs/fujitsu/fujitsu.c, camlibs/fujitsu/fujitsu.h,
	camlibs/fujitsu/library.c, frontends/command-line/main.c: fujitsu
	lib 90% working.

2000-07-05 12:55  scottf

	* configure.in: minor changes. version change.

2000-07-03 19:16  scottf

	* camlibs/fujitsu/: fujitsu.c, fujitsu.h, library.c:
	reading/writing int32 registers supported (fujitsu)

2000-07-03 14:58  scottf

	* camlibs/fujitsu/fujitsu.c, camlibs/fujitsu/fujitsu.h,
	camlibs/fujitsu/library.c, frontends/command-line/main.c: working
	on fujitsu. fixed debug output in command-line

2000-06-30 20:23  scottf

	* camlibs/fujitsu/: README, fujitsu.c, library.c: done for the
	week. fujitsu still being worked on

2000-06-30 13:43  scottf

	* camlibs/fujitsu/: fujitsu.c, fujitsu.h, library.c, library.h:
	continuing adding fujitsu lib.

2000-06-30 13:24  scottf

	* camlibs/fujitsu/: Makefile.am, fujitsu.c, fujitsu.h, library.c,
	library.h: renamed gphoto.[ch] to library.[ch]

2000-06-29 20:01  scottf

	* camlibs/fujitsu/: fujitsu.c, fujitsu.h: fujitsu's camera_init is
	working

2000-06-29 16:07  scottf

	* camlibs/fujitsu/Makefile.am, camlibs/fujitsu/fujitsu.c,
	include/gphoto2-core.h, include/gphoto2-datatypes.h,
	libgphoto2/util.c, libgphoto2/widget.c: starting fujitsu library.
	fixed widget errors.

2000-06-29 15:36  scottf

	* libgphoto2/widget.c: added gp_widget_* code

2000-06-29 14:01  scottf

	* libgphoto2/: Makefile.am, interface.c, interface.h, widget.c,
	widget.h: rename interface.[ch] to widget.[ch]

2000-06-29 13:56  scottf

	* camlibs/CONFIG_DIALOG, camlibs/NOTES, camlibs/barbie/barbie.c,
	camlibs/directory/directory.c, camlibs/fujitsu/fujitsu.c,
	camlibs/template/template.c, frontends/command-line/main.c,
	include/gphoto2-core.h, include/gphoto2-datatypes.h,
	include/gphoto2-library.h, libgphoto2/core.c, libgphoto2/core.h,
	libgphoto2/library.c: transferred another image. adding
	configuration dialog widgets. command-line is usable (yay)

2000-06-29 13:47  scottf

	* camlibs/barbie/barbie.c: fixed init bug.

2000-06-29 13:19  scottf

	* libgphoto2/: Makefile.am, interface.c, interface.h: adding
	beginning of toolkit-independent interface code

2000-06-28 14:17  scottf

	* camlibs/CONFIG_DIALOG, libgphoto2/file.c, libgphoto2/file.h:
	whoops. added file.[ch] in libgphoto2/. added another spec to the
	CONFIG_DIALOG file

2000-06-27 19:48  scottf

	* camlibs/NOTES, camlibs/barbie/barbie.c,
	camlibs/directory/directory.c, camlibs/fujitsu/fujitsu.c,
	camlibs/template/template.c, include/gphoto2-core.h,
	include/gphoto2-library.h, libgphoto2/core.h, libgphoto2/library.c:
	added camera_config_query function. touched up API.

2000-06-27 19:44  scottf

	* camlibs/CONFIG_DIALOG: Added configuration dialog spec

2000-06-27 18:09  scottf

	* camlibs/barbie/barbie.c, camlibs/directory/directory.c,
	camlibs/fujitsu/fujitsu.c, camlibs/template/template.c,
	frontends/command-line/main.c, include/gphoto2-datatypes.h,
	include/gphoto2-interface.h, include/gphoto2-library.h,
	libgphoto2/core.c, libgphoto2/core.h, libgphoto2/library.c: renamed
	camera_config to camera_config_set and added camera_config_get to
	facilitate multiple configuration dialogs. added error checking to
	the front-end.

2000-06-27 17:48  scottf

	* camlibs/barbie/barbie.c, camlibs/directory/directory.c,
	frontends/command-line/interface.c, frontends/command-line/main.c,
	frontends/command-line/test.c, include/gphoto2-core.h,
	include/gphoto2-interface.h, libgphoto2/core.c: rename gp_update_*
	to just gp_*. added image upload functionality to command-line
	front-end. note to self: my slow camera sucks ass

2000-06-27 15:02  scottf

	* frontends/command-line/main.c: added -n/--num-pictures
	functionality to command-line

2000-06-27 14:54  scottf

	* frontends/libgphoto2_frontend/: Makefile, Makefile.in, cache.lo,
	cache.o, helpers.lo, helpers.o, image.lo, image.o,
	libgphoto2_util.la: crap. removed object files. i suck.

2000-06-27 14:52  scottf

	* frontends/command-line/main.c,
	frontends/libgphoto2_frontend/cache.lo,
	frontends/libgphoto2_frontend/cache.o,
	frontends/libgphoto2_frontend/helpers.lo,
	frontends/libgphoto2_frontend/helpers.o,
	frontends/libgphoto2_frontend/image.lo,
	frontends/libgphoto2_frontend/image.o, include/gphoto2-datatypes.h,
	libgphoto2/core.c: added delete_picture function to command-line.
	worked on command-line options system. fixed directory browse bug.

2000-06-26 20:28  scottf

	* camlibs/barbie/barbie.c, camlibs/directory/directory.c,
	frontends/command-line/main.c, include/gphoto2-core.h: added
	--get-picture functionality to command-line. first successful
	download...

2000-06-26 18:29  scottf

	* camlibs/barbie/barbie.c, camlibs/directory/directory.c,
	camlibs/fujitsu/fujitsu.c, camlibs/template/template.c,
	frontends/command-line/main.c,
	frontends/libgphoto2_frontend/Makefile,
	frontends/libgphoto2_frontend/Makefile.am,
	frontends/libgphoto2_frontend/Makefile.in,
	frontends/libgphoto2_frontend/cache.lo,
	frontends/libgphoto2_frontend/cache.o,
	frontends/libgphoto2_frontend/helpers.lo,
	frontends/libgphoto2_frontend/helpers.o,
	frontends/libgphoto2_frontend/image.lo,
	frontends/libgphoto2_frontend/image.o,
	frontends/libgphoto2_frontend/libgphoto2_util.la,
	include/gphoto2-core.h, include/gphoto2-datatypes.h,
	include/gphoto2-library.h, libgphoto2/core.c, libgphoto2/core.h,
	frontends/command-line/main.c: added list/set folders to
	command-line options

2000-06-26 13:37  scottf

	* frontends/command-line/Makefile.am: (hopefully) last change for
	renaming of libgphoto2_util

2000-06-26 13:36  scottf

	* configure.in: whoops. changed configure.in to reflect
	libgphoto2_util renaming

2000-06-26 13:35  scottf

	* frontends/: Makefile.am, command-line/Makefile.am: changed
	libgphoto2_util references to libgphoto2_frontend

2000-06-26 13:34  scottf

	* frontends/: libgphoto2_frontend/Makefile,
	libgphoto2_frontend/Makefile.am, libgphoto2_frontend/Makefile.in,
	libgphoto2_frontend/cache.c, libgphoto2_frontend/cache.h,
	libgphoto2_frontend/cache.lo, libgphoto2_frontend/cache.o,
	libgphoto2_frontend/helpers.c, libgphoto2_frontend/helpers.h,
	libgphoto2_frontend/helpers.lo, libgphoto2_frontend/helpers.o,
	libgphoto2_frontend/image.c, libgphoto2_frontend/image.h,
	libgphoto2_frontend/image.lo, libgphoto2_frontend/image.o,
	libgphoto2_frontend/libgphoto2_util.la,
	libgphoto2_util/Makefile.am, libgphoto2_util/cache.c,
	libgphoto2_util/cache.h, libgphoto2_util/helpers.c,
	libgphoto2_util/helpers.h, libgphoto2_util/image.c,
	libgphoto2_util/image.h: renamed libgphoto2_util to
	libgphoto2_frontend

2000-06-23 20:48  scottf

	* configure.in, camlibs/barbie/barbie.c,
	camlibs/directory/directory.c, camlibs/fujitsu/fujitsu.c,
	camlibs/template/template.c, frontends/command-line/main.c,
	include/gphoto2-datatypes.h, libgphoto2/util.c: readded
	serial/usb/parallel/ieee1394 flags in CameraAbilities struct. works
	much nicer

2000-06-23 19:39  scottf

	* camlibs/barbie/barbie.c, camlibs/fujitsu/fujitsu.c,
	camlibs/template/template.c, frontends/command-line/Makefile.am,
	frontends/command-line/main.c, include/gphoto2-core.h,
	include/gphoto2-datatypes.h, include/gphoto2.h, libgphoto2/core.c:
	*added listing of cameras/port to front-end. *added gpio wrapper
	for device_count/info

2000-06-22 19:05  scottf

	* camlibs/barbie/barbie.c, camlibs/directory/directory.c,
	camlibs/fujitsu/fujitsu.c, camlibs/template/template.c,
	frontends/command-line/main.c, frontends/command-line/main.h,
	frontends/command-line/test.c, include/gphoto2-core.h,
	include/gphoto2-datatypes.h, libgphoto2/core.c, libgphoto2/util.c:
	reworked abilities (again). more abstract.

2000-06-22 15:57  scottf

	* camlibs/barbie/barbie.c, camlibs/directory/directory.c,
	camlibs/fujitsu/fujitsu.c, camlibs/template/template.c,
	include/gphoto2-datatypes.h, include/gphoto2-library.h,
	libgphoto2/util.c: removed cancel and lock abilities for now.
	updated library API to reflect the changes. Need to figure out a
	way to consolidate specialized features.

2000-06-22 15:46  scottf

	* camlibs/barbie/barbie.c, camlibs/directory/directory.c,
	camlibs/fujitsu/fujitsu.c, camlibs/template/template.c,
	include/gphoto2-core.h, include/gphoto2-datatypes.h,
	include/gphoto2-library.h, libgphoto2/core.c, libgphoto2/core.h,
	libgphoto2/util.c: changed camera_config call. Removed
	CameraConfigSetting in place of an array of CameraSetting's.

2000-06-22 13:06  scottf

	* AUTHORS, INSTALL, README, camlibs/NOTES,
	camlibs/barbie/Makefile.am, camlibs/barbie/barbie.c,
	camlibs/directory/Makefile.am, camlibs/directory/directory.c,
	camlibs/fujitsu/Makefile.am, camlibs/fujitsu/fujitsu.c,
	camlibs/template/Makefile.am, camlibs/template/template.c,
	frontends/command-line/main.c, frontends/command-line/test.c,
	frontends/libgphoto2_util/Makefile.am, include/gphoto2-core.h,
	include/gphoto2-datatypes.h, include/gphoto2-library.h,
	libgphoto2/Makefile.am, libgphoto2/core.c, libgphoto2/core.h,
	libgphoto2/library.c, libgphoto2/library.h, libgphoto2/util.c,
	libgphoto2/util.h: *revamped CameraAbilities (no more reset/sleep)
	*making command-line functional *adding error-checking *removed
	camera_open/close *added camera_debug_set to get more verbose
	output *other misc.

2000-06-21 18:20  scottf

	* include/gphoto2-library.h, libgphoto2/core.c: adding
	documentation to API

2000-06-21 17:09  scottf

	* NOTES, camlibs/directory/directory.c,
	frontends/command-line/main.c, frontends/command-line/main.h,
	include/gphoto2-core.h, libgphoto2/core.c, libgphoto2/library.c:
	improving command-line parser. debug checking and more verbose
	output

2000-06-21 12:55  scottf

	* libgphoto2/: Makefile.am, core.c, exif.c, globals.h, library.c,
	settings.c: clean-up in the exif lib. -Wall is damn grumpy.

2000-06-21 11:34  scottf

	* camlibs/barbie/barbie.c, libgphoto2/Makefile.am,
	libgphoto2/exif.c, libgphoto2/exif.h: added exif lib

2000-06-20 18:01  scottf

	* frontends/command-line/main.c: aesthetic changes to command-line
	parser

2000-06-20 17:43  scottf

	* frontends/command-line/: Makefile.am, main.c, main.h, test.c,
	test.h: added command-line option parser. weird but neat.

2000-06-20 15:48  scottf

	* frontends/command-line/: main.c, main.h: whoops. re-added
	main.c/h

2000-06-20 15:47  scottf

	* frontends/command-line/Makefile.am: command-line parsing routines
	added. rearranging of code

2000-06-20 14:36  scottf

	* frontends/command-line/: Makefile.am, main.c, main.h, test.c,
	test.h: starting command-line interface. moving files.

2000-06-20 13:28  scottf

	* include/gphoto2-core.h, include/gphoto2-datatypes.h,
	include/gphoto2-library.h, libgphoto2/core.c, libgphoto2/core.h,
	libgphoto2/library.c: added camera_file_put() to camera API

2000-06-20 13:28  scottf

	* camlibs/: barbie/barbie.c, directory/directory.c,
	fujitsu/fujitsu.c, template/Makefile.am, template/README,
	template/template.c, template/template.h: added template directory
	for new camera libraries

2000-06-19 15:41  scottf

	* camlibs/barbie/barbie.c, camlibs/directory/directory.c,
	camlibs/fujitsu/fujitsu.c, frontends/command-line/main.c,
	include/gphoto2-core.h, include/gphoto2-datatypes.h,
	include/gphoto2-library.h, libgphoto2/core.c, libgphoto2/core.h,
	libgphoto2/library.c: folder listing has changed. now more
	optimized for serial connections

2000-06-19 14:24  scottf

	* camlibs/NOTES, camlibs/barbie/barbie.c,
	camlibs/directory/directory.c, camlibs/fujitsu/fujitsu.c,
	include/Makefile.am, include/gphoto2-datatypes.h,
	include/gphoto2-library.h, include/gphoto2.h,
	libgphoto2/Makefile.am, libgphoto2/core.c, libgphoto2/core.h,
	libgphoto2/library.c, libgphoto2/library.h: added camera library
	id's. enumerated camera differently (abilities per-camera now).

2000-06-19 12:32  scottf

	* frontends/command-line/gphoto2, include/gphoto2-core.h,
	include/gphoto2-datatypes.h, include/gphoto2-interface.h,
	include/gphoto2-library.h: finished renaming include files

2000-06-19 12:31  scottf

	* configure.in, camlibs/barbie/barbie.c, frontends/Makefile.am,
	frontends/command-line/Makefile.am, frontends/command-line/gphoto2,
	frontends/command-line/main.c, include/gphoto-core.h,
	include/gphoto-datatypes.h, include/gphoto-interface.h,
	include/gphoto-library.h, libgphoto2/core.c: renamed include files.
	fixed compile problems with libgphoto2_util.

2000-06-19 12:20  scottf

	* frontends/: Makefile.am, libgphoto2_util/Makefile.am,
	libgphoto2_util/cache.c, libgphoto2_util/cache.h,
	libgphoto2_util/helpers.c, libgphoto2_util/helpers.h,
	libgphoto2_util/image.c, libgphoto2_util/image.h: finish renaming
	libgphoto2_util

2000-06-19 12:19  scottf

	* frontends/libgphoto2-util/: Makefile.am, cache.c, cache.h,
	image.c, image.h: renaming libgphoto2-util to libgphoto2_util
	(Automake don't like dashes)

2000-06-19 12:06  scottf

	* libgphoto2/: Makefile.am, cache.c, cache.h, core.c, helpers.c,
	helpers.h: moving around files

2000-06-19 12:01  scottf

	* frontends/: Makefile.am, command-line/Makefile.am,
	libgphoto2-util/Makefile.am, libgphoto2-util/cache.c,
	libgphoto2-util/cache.h, libgphoto2-util/image.c,
	libgphoto2-util/image.h: added beginining of gphoto2 utility
	library for frontends

2000-06-16 14:48  scottf

	* AUTHORS, COPYING, ChangeLog, INSTALL, Makefile.am, NEWS, NOTES,
	OVERVIEW, README, TODO, autogen.sh, configure.in,
	include/gphoto-core.h, include/gphoto-datatypes.h,
	include/gphoto-interface.h, camlibs/Makefile.am,
	camlibs/barbie/Makefile.am, camlibs/barbie/README,
	camlibs/directory/Makefile.am, camlibs/directory/directory.c,
	camlibs/directory/directory.h, include/Makefile.am,
	include/gphoto-library.h, include/gphoto2.h,
	camlibs/barbie/barbie.c, camlibs/barbie/barbie.h,
	camlibs/barbie/compile, camlibs/barbie/main.c,
	camlibs/fujitsu/Makefile.am, camlibs/fujitsu/README,
	camlibs/fujitsu/fujitsu.c, camlibs/fujitsu/fujitsu.h,
	libgphoto2/cache.c, libgphoto2/cache.h, libgphoto2/core.c,
	frontends/Makefile.am, frontends/command-line/Makefile.am,
	frontends/command-line/interface.c,
	frontends/command-line/interface.h, frontends/command-line/main.c,
	frontends/command-line/main.h, libgphoto2/Makefile.am,
	libgphoto2/TODO, libgphoto2/core.h, libgphoto2/helpers.c,
	libgphoto2/helpers.h, libgphoto2/library.c, libgphoto2/library.h,
	libgphoto2/settings.c, libgphoto2/settings.h, libgphoto2/util.c,
	libgphoto2/util.h, frontends/command-line/gphoto2: Initial revision

2000-06-16 14:48  scottf

	* AUTHORS, COPYING, ChangeLog, INSTALL, Makefile.am, NEWS, NOTES,
	OVERVIEW, README, TODO, autogen.sh, configure.in,
	include/gphoto-core.h, include/gphoto-datatypes.h,
	include/gphoto-interface.h, camlibs/Makefile.am,
	camlibs/barbie/Makefile.am, camlibs/barbie/README,
	camlibs/directory/Makefile.am, camlibs/directory/directory.c,
	camlibs/directory/directory.h, include/Makefile.am,
	include/gphoto-library.h, include/gphoto2.h,
	camlibs/barbie/barbie.c, camlibs/barbie/barbie.h,
	camlibs/barbie/compile, camlibs/barbie/main.c,
	camlibs/fujitsu/Makefile.am, camlibs/fujitsu/README,
	camlibs/fujitsu/fujitsu.c, camlibs/fujitsu/fujitsu.h,
	libgphoto2/cache.c, libgphoto2/cache.h, libgphoto2/core.c,
	frontends/Makefile.am, frontends/command-line/Makefile.am,
	frontends/command-line/interface.c,
	frontends/command-line/interface.h, frontends/command-line/main.c,
	frontends/command-line/main.h, libgphoto2/Makefile.am,
	libgphoto2/TODO, libgphoto2/core.h, libgphoto2/helpers.c,
	libgphoto2/helpers.h, libgphoto2/library.c, libgphoto2/library.h,
	libgphoto2/settings.c, libgphoto2/settings.h, libgphoto2/util.c,
	libgphoto2/util.h, frontends/command-line/gphoto2: gPhoto2: digital
	camera access libraries and application