summaryrefslogtreecommitdiff
path: root/NEWS
blob: 296abb94ddc52edca5e1e4dbef474ed75d91b0ed (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
libgphoto2 2.5.30.1 development snapshot

pentax:
* added Pentax KP id

ptp2:
* do better event queueing during capture (makes capture faster, avoids losing events)
* Canon EOS: OLC logic rewritten to be table driven, more debugging of the content,
  config "testolc" to generate debugoutput. Supports more cameras better.
* Sony Alpha: Added config options: focusarea, liveviewsettingeffect
* Battery Level: also support ENUM style battery reporting for Canon
* Nikon 1: S1 also does not support everything
* New ids:
  - Nikon Z30
  - Canon EOS 850D, R7, R10, R5 C
  - Fuji X-H2
  - Pentax KP (PTP mode)
  - Sigma fp L
  - GOPRO HERO 11 BLACK
  - new ids also imported from libmtp

general:
* disable log formatting when we are not logging (speeds up large downloads, as
  we are not hex dumping the whole data and immediately discard the result)
* libltdl usage now thread-safe. (some other library pieces are not threadsafe yet)

translations:
* updated swedish
------------------------------------------------------------------------------
libgphoto2 2.5.30 release

ptp2:
* Canon: fixed display locking/unlocking after exit
* generic: avoid potential crash on image addition
* Sony: Add image information when wait_for_event, some config values added
* Added IDs:
  * Nikon Zfc, Z9
  * Sony DSC-WX220, Alpha-A7 IV
  * Nikon P950
  * Canon EOS Rebel T8i
  * Fuji Fujifilm X-E4
  * GoPro HERO10 Black

general:
* fix parallel builds by requiring gettext 0.19.1 for builds from git (PR #797)
* add gp_init_localedir() function to allow for non-standard installations (PR #796)

translations:
* updated traditional chinese, swedish
------------------------------------------------------------------------------
libgphoto2 2.5.29 release

general:
* fixes build failures of libgphoto2 frontends and builds using the
  wrong libgphoto2 headers (issue #717)

ptp2:
* fixed a regression in Fuji preview capture which would lead to crashes
* made the wait-event property extractor more robust (it sometimes gets NULL ptrs), hopefully fixing Sony crashes
* sony: fixed a crash in sony f-number
* panasonic: added more configs adjustgm, adjustab, colortemp, afmode, mfadjust, expmode, recording
* fixed some bugs caused by refactoring / memory leak fixes
* added:
  - Kodak m531
  - HP Photosmart E331
  - Nikon DSC 6

translations:
* updated polish, ukrainian, russian, serbian
* added romanian
------------------------------------------------------------------------------
libgphoto2 2.5.28 release

general:
* OS/2 support removed (broken and unused since at least 2006)
* remove built-in rpm packaging (use distro packaging instead)
* remove linux-hotplug rule creation (removed from distros around 2006)
* remaining text which was iso-8859 is UTF-8 now (except one po file)
* To override docdir and htmldir, use configure arguments --docdir=
  and --htmldir= instead of --with-doc-dir= and --with-html-dir=
* some code cleanups, especially handling of include files and i18n handling

ptp2:
* wait event
  * property changes now reported with "'name' to 'value'" added
  * object info changes now reported as FILE_CHANGED events (e.g. if you change protection flags)
* Nikon J1: capture fixed
* Olympus: fixed that wait time was twice as long as required if no events arrived
* Sigma Fp: added basic beta support for capture, live view and config.
* Sony:
  * mark all widgets as read-write again, read-only logic was not 100% correct
  * speed-ups and fixes to the stepping based config setting
* Canon EOS
  * handle newer EOS R series reporting of configs (ISO, Aperture, Shutterspeed)
  * track UI lock state to avoid device busy reports
  * fixed "zoom" range settings (for lenses with powered zoom, also for today Powershot)
* Fuji:
  * ptpip improvements
  * bug fixes
  * some Fuji cameras have now liveview only for webcam (need new firmware)
* various small fixes and code cleanups
* New ids:
  * Sony Alpha-RX1R II, ILCE-7C, ZV-E10, A6600, DSC HX-80, ILCE-7RM3A, ILCE-7RM4A, DSC-A7S III
  * Nikon Coolpix B500, Zfc
  * Canon EOS M50m2, Digital IXUS 132
  * Fuji X-Pro3, GFX 100S, X100V

canon:
* fixed wait event crashes
* correctly mark read only config widgets as read-only

pentax:
* fix PEF raw files for non-K100D

translations:
* updated german, french, polish, ukrainian

------------------------------------------------------------------------------
libgphoto2 2.5.27 release

ptp2:
* report filesizes larger than 4GB correctly
* download files larger than 4GB
* empty ptp strings are reported as "", not as NULL
* report more MTP object properties
* Nikon
  * download of files larger than 4GB using getpartial object method
  * handle new application mode
  * handle new eventex fetcher on Z series
  * fixed movie on recent Z series
  * report liveview and movie prohibit conditions, as errors and also in configuration tree
  * some Nikon 1 V1 enhancements (the first camera of the 1 series is a bit special)
* report filesize > 4GB correctly, if possible
* Canon EOS:
  * EOS M6 Mark 2 is actually more like a EOS DSLR and fully capable, added some work
  * Handle OLCINFO for M6 Mark 2 and EOS R5 and new cameras
  * added current list of autoexposuremode to expose also Fv and friends
  * Canon Liveview size is encoded in "output" (PC / MOBILE / MOBILE2 variants are the different livesizes), try to expose seperately as "liveviewsize"
  * decode more options, nickname, eosmoviemode (color/bw), strobofiring, eventmode, flashcharged, oneshotrawon
  * bugfixes
* Sony Alpha:
  * report f-numbers enum with fixed list
  * fixed liveview taking on a new model
* Panasonic
  * implement liveviewsize
  * implement movie recording ( using --set-config movie=1/0 )
  * more doc and minor fixes
* ptp/ip: allow building on Windows
* New IDS:
  * Sony DSC-A7S III
  * Nikon Coolpix P1000, Z6_2, Z7_2 
  * Olympus E-M1 MII
  * Canon PowerShot G12, EOS M200
  * Fuji Fujifilm X-S10
  * Ricoh Theta V, Z1

canon:
* more shutterspeed reported

translations:
* updated french

------------------------------------------------------------------------------
libgphoto2 2.5.26 release

ptp2:
* Olympus OMD: fixed the 65 second wait after capture.
* Canon EOS:
  * bugfixes
* Nikon 
  * D3000, D3100, and D3200 "static opcode list" reduced after reports what works and what not
  * Nikon 1 series cameras had some commands listed too much.
  * Nikon 1 J5 improvements
  * "liveviewsize" can change liveviewsize
* Sony:
  * Modern Sony cameras seem to require a 3 second wait on startup. Seems needed on ZV-1, A7 R4, RX100 M7 so far... Unsure why.
  * correct shutterspeed, iso and exposurebias decoding for Sony A7r4 and other new models
  * some bugfixes in property settings, trying to speed it up
  * ZV-1 support, some additional startup wait hack to make it work.
  * partial Sony QX support added, can do preview... close to having capture (but not there yet) (also added "liveviewsize")
  * report read/write and read/only of properties correctly
* Fuji X:
  * stabilized normal capture code
  * added bulb capture, added autofocusdrive
  * lots of properties listed now, some also decoded
  * added "liveviewsize", "shuttercounter", "colortemperature",
    "lensname", "devicename", "imagecomment", "filmsimulation", "colorspace"
  * Added very experimental Wifi support.
* synced new libmtp device ids
* Cameras added to id list: 
  * Sony QX30U, ZV-1, DSC-RX100M7
  * Nikon D780, Z5, Coolpix B700
  * Panasonic GMC-GX8
  * Canon EOS 1D X Mark III, R5, R6
  * Canon PowerShot SX70HS
  * Fuji FinePix X-E1
  * Sigma fp

pentax:
* small changes synced from pktriggercord, added Pentax 645Z

docupen:
* new experimental driver, supports the docupen scanner pen.

all:
* more fuzzing related stability fixes, largely to "outdated" driver set.
* lots of compiler warnings fixes across the codebase

translations:

* update pl, sv, uk, zh_CN, fr

------------------------------------------------------------------------------
libgphoto2 2.5.25 release

ptp2:
* Liveview support for Leica SL
* PTP 1.1 Streaming parameters added. 
* Olympus OMD capture fixes
* Nikon DSLR/Z:
  * various improvements to liveview error reporting.
  * much more properties added, some values added
  * allow downloading of "large thumbnails" instead of "regular thumbnails",
    can be selected by "thumbsize" gphoto2 local setting.
  * fixes for D3000, D3100 methods
  * maximum capture wait extended to 1000 seconds (as the D870 has 900 seconds max now)
* Canon EOS
  * initialization fixes (if it breaks your EOS M or PowerShot, please report)
  * liveview enablement fixed
  * maximum capture wait extended to 90seconds
  * EOS R shutterspeed , aperture reporting fixed
* various bugfixes
* Cameras added to id list:
  * Sony NEX 5
  * Canon EOS 90D
  * Fuji XT-4
  * Sanyo VPC-FH1
  * Leica SL Typ 601

lumix:
* fixed initialization, might help capture

all:
* ongoing stability fixes from AFL fuzzing

translation updates:
* sv

------------------------------------------------------------------------------
libgphoto2 2.5.24 release

ptp2:
* GoPro: fixed all images not visible bug
* Canon EOS: lock/unlock ui before more operations
* Canon Powershot SX / EOS M: some setup adjustments to make powershot sx work better
* Nikon Keymission 170: try override opcodes to allow capture
* Nikon DSLR: fixed a regression where 5 seconds was longer image capture shutterspeed
* Sony: adjusted manualfocusing not to autofocus
* Fuji: access ISO config
* Sony: fixed manual focusing
* Sony: specify capturetarget on camera, available on current 2019/2020 Sony
* bugfixes
* New ids added:
  * Sony Alpha RX100V, A7s, RX0 II,
  * Nikon Z50, Coolpix L810, KeyMission 170
  * Canon PowerShot SX530HS, SX 620HS, 
  * Canon EOS 2000D, 1500D, R2, M6 Mark 2, 250D,
  * Fuji X-A5, X-E3, GFX100
  * GoPro Hero 7 White, 7 Silver, 7 Black, 8 Black

lumix:

* New WIFI Lumix camera driver was added, using curl and libxml2.

  Lots of abilities supported already, also capture preview.
  However capture itself is not yet working.
  This driver needs libxml2 and libcurl to be built.

all:

* Selecting camera libraries has changed a bit.


  --camlibs=everything will select all and outdated drivers
  --camlibs=standard  will select "current day" drivers
  --camlibs=standard,outdated  will select "current day" and "outdated" drivers

  You can now also use modifiers like +canon or -canon to enable/disable selected camera libraries.

  The default is "standard", same as before.

* fixed some issues found by AFL fuzzing, mostly in "outdated" drivers.

* SECURITY.md: Small document added describing security properties of the library.

------------------------------------------------------------------------------
libgphoto2 2.5.23 release

ptp2:
* Sony capture stability and speed improvements
* Canon EOS capture stability improvements, reduce partial read blobs from 5MB to 1MB
* Canon EOS M image format unpacking adjustments
* Olympus OMD: bulb capture added, trigger capture capable
* Panasonic GH5: added manualfocusdrive, capturetarget
* Canon PowerShot X work ... trying to support / improve stability of capture
* PTP string packing adjusted to standard (empty and null strings)
* New ids added:
  * Sony Alpha A68, RX100M6, DSC-WX350
  * Nikon Coolpix L100
  * Canon PowerShot G7X, G9X Mark II
  * Canon Rebel T6, EOS 2000D
  * Fuji X-A2, GFX 50R, XT-30
  * Ricoh WG-M2
* libmtp ids synced.

pentax:
* synced smaller parts with pktriggercord

translations:
* updated danish

fuzzing:
* vusb and sample-afl now able to fuzz all USB cameras (even if slow)

all:
* Various crashes fixed that were found during AFL fuzzing the USB drivers

* The camlibs for cameras (and driver) older than 15 years have been
  default disabled for installation, to speed up libgphoto2 startup
  and also reduce attack surface against malicious USB devices.

  See OUTDATED.txt in git for notes.

  You can reenable them using:

	./configure --with-camlibs=all,outdated

  or by the camlib driver name (sample: jd11):

	./configure --with-camlibs=all,jd11

  To get the lists of all camera libraries use:

	./configure --help

  If you still have an old camera using one of these camlibs in active
  use, please report this to the devteam so we can reenable it per
  default.

------------------------------------------------------------------------------
libgphoto2 2.5.22 release

ptp2:
* Canon EOS M / PowerShot capture problem solved
* Sony shutterspeed - provide a static list as the camera does not provide one, you can set also different values
* Canon SDRAM capture, try to support more than 500MB of images at once
* New USB Ids added:
  * Canon EOS R, 800D
  * Canon PowerShot SX600HS, SX740HS
  * Sony DSC RX0, RX100-M5A
  * Nikon DSC D3500

generic:
* handle new "bind" udev event in udev rule generator.

translations:
* updated polish, ukrainian

------------------------------------------------------------------------------
libgphoto2 2.5.21 release

ptp2:
* Nikon Z series support added
* New Canon Powershot SX / GX also support capture, ALPHA support added
* Canon EOS bugfixes
* imported IDs from libmtp
* Added:
  * Nikon Z6, Z7
  * Canon Powershot SX720HS, G5X
  * Canon IXUS 185

------------------------------------------------------------------------------
libgphoto2 2.5.20 release

ptp2:
* Canon EOS: fixed regression for some EOS series in OLC decoding
* Apple iPhone: disabled PTP Manifest reading again, as IOS seems not to follow the standard
* bugfixes
* new IDs added:
  * Sony Alpha-RX10M4
  * Canon EOS M50, 4000D
  * Fuji XT-3
  * synced new MTP ids from libmtp

pentax:
* refreshed from pktriggercord

translations:
* updated polish, ukrainian, swedish, danish
------------------------------------------------------------------------------
libgphoto2 2.5.19 release

ptp2:
* Canon EOS: handle OLC versions of newer models, which gave incorrect aperture/shutterspeed values
* Fuji X series capture improvements.
* Fuji X series live view support added.
* Panasonic GH5 liveview and capture support. (Needs camera firmware 2.3 or newer)
* Olympus E-M5 Mark II and E-M1 Mark II liveview and capture support added.
* USB IDs added:
  * Sony Alpha A99 M2, A7 III, A9
  * Nikon Coolpix A900
  * Panasonic GH5
  * Olympus E-M1 Mark 2
  * Fuji X-H1, X-M1, X70, X30

all:
* various fixes for warnings from compilers and the coverity scanner

------------------------------------------------------------------------------
libgphoto2 2.5.18 release

ptp2:
* Canon EOS: Fixed file download on several EOS brands, broken by 2.5.17 release.

pentax:
* Added K01 and K70 models.

------------------------------------------------------------------------------
libgphoto2 2.5.17 release

ptp2:
* Apple iOSX: handle root directory objects that have ParentObject==StorageID instead of 0
* implement PTP 1.1 Manifest reading and hook into filesystem. currently only supported
  by Apple iOS.
* Canon PowerShot CHDK live view support.
* Canon EOS: prepare capture needs to wait a bit on a crucial place to get all events.
  might fix some PTP Device Busy reports.
* Canon EOS: split bulk downloads into pieces of partial downloads. This might cure the Error 70.
* Canon EOS: Improved EOS M capture
* Canon CHDK: live preview capture support added
* Added USB IDs:
  * Sony A7r III
  * Nikon CoolPix L430
  * Nikon D850
  * Canon EOS M2, M6, M100
  * Canon EOS 6D Mark II
  * Fuji Film X-Pro 2

pentax:
* Code updates imported from pkremote

libgphoto2:
* Report file changes via GP_EVENT_FILE_CHANGED (hooked up for Canon EOS currently)

translations:
* updates spanish, chinese

------------------------------------------------------------------------------
libgphoto2 2.5.16 release

ptp2:
* A hardening fix broke the string unpacking for 0 length strings which broke Canon EOS

------------------------------------------------------------------------------
libgphoto2 2.5.15 release

ptp2:
* fuji: Fix cameras without new capture properties.
* Canon EOS: config aspectratio, highisonr
* Canon EOS: emit CAPTURECOMPLETE event
* Canon EOS: whitebalanaceadjustment is 32bit signed, not 16bit signed
* usb: better error feedback
* fixed some bugs found by AFL fuzzing
* Added USB ids:
  * Sony: A6500, HX400V
  * Nikon: D500, D7500
  * Olympus: VR360
  * Canon PowerShot: ELPH 350 HS
  * Canon EOS: 200D, Rebel T7i
  * Fuji: GFX 50 S
  * Ricoh Theta S, Theta SC

libgphoto2_port/vusb:
* now default disabled as it confused people, enable with --enable-vusb

------------------------------------------------------------------------------
libgphoto2 2.5.14 release

ptp2:
* Canon EOS M remote control / capture support (M3, M5, M10 ... but not the original EOS M currently)
* fix for Canon EOS camera crash bug introduced in 2.5.13.
* Fuji XT-2 capture support (firmware update needed, might work for other Fuji XT too)
* Canon EOS 77D added.
* various bugfixes
* added USB IDs:
  * Sony DSC-RX10M3, DSC-HX90V
  * Sony UMC-R10C
  * Nikon D5600,
  * Canon EOS 77D
  * Fuji XT-20
* synced MTP device ids from libmtp
* more issues fixed that were found by the AFL fuzzer

pentax:
* Added Pentax K5-II, Pentax K3-II

libgphoto2_port:
* fixed gp_log_remove_func

libgphoto2_port/vusb:
* support f-number, shutterspeed, and exposurebias in the virtual PTP camera

all:
* several issues found by gcc 7 fixed

translations:
* updated ukrainian, polish, vietnamese, french, swedish
------------------------------------------------------------------------------
libgphoto2 2.5.13 release

pentax:
* Now using the pktriggercord codebase
* lots of improvements
* Please report missing Pentax K USB ids that are supported by pktriggercord!

ptp2:
* iPhone iOS 10.2 and later storage handling fixed, added dynamic storage handling
* Sony Alpha Live View support.
* Canon EOS M series capture enabled. (not fully working yet)
* Various crashes and endless loops fixed that were found by the AFL fuzzer.
* Various bugfixes in Nikon, Canon capture
* New USB Ids:
  * Sony: SLT A37, DSC-RX100M5
  * Nikon KeyMission 360
  * Canon PowerShot G16
  * Canon EOS M5, EOS M10
  * Fuji Fujifilm XT-2
  * GoPro Hero 5 Black

------------------------------------------------------------------------------
libgphoto2 2.5.12 release

ptp2:
* Canon EOS: more fixes for Canon EOS 5D Mark IV and Canon EOS 80D.
* Parrot Sequoia support and property decoding
* Nikon 1: Fixed Nikon 1 capture
* Sony Alpha: various bugfixes.
* New USB IDs:
  * Nikon Coolpix AW130
  * Nikon DSC D3400
  * Parrot Sequoia
  * GoPro Hero, Hero4 Silver, Hero + 
* bugfixes and cleanups

canon:
* fixed zoom on some older Canon Powershots

translations:
* updated polish, ukrainian, vietnamese, danish, french, svensk
------------------------------------------------------------------------------
libgphoto2 2.5.11 release

canon:
* not experimental anymore, for some years
* some bugfixes in configuration handling

ptp2:
* canon: EOS capture improvements, also supporting new EOS
* sony: tethering and trigger capture implemented, capture stability improvements
* sony: exposure compensation setting fixed
* sony: capture and autofocus configurations, similar to eosremoterelease
* generic: fixed serialnumber retrieval
* nikon: "autofocus" config variable for global autofocus enable/disable (default on, default liveview off)
* various bugs fixed, stability improved
* ptpip: allow different event ports. --port ptpip:IP:dataport:eventport
* New ids reported:
  - Sony Alpha 7, DSC-RX100M4, NEX-7, DSC-HX20V, Alpha 6300, A7S II, A7, 
  - Nikon DSC Df, D7200, D5, D810A, 1 V3
  - Canon EOS 1Dx Mark 3, 80D, 5D Mark IV
  - Canon Digital IXUS 180
  - various music players / android phones imported from libmtp 

libgphoto2:
* Speed up initial startup.
* Win32: store settings in the "User Profile\.gphoto\settings" and not in C:\\Windows anymore.
* gp_widget_changed() no longer clears the "changed" state to make this API more consistent.
  Use gp_widget_set_changed(widget,FALSE) to do so.

examples:
* sample-photobooth: a sample program handling tethering, SIGUSR1 driven capture and SIGUSR2
  based configuration reading.
* sample-afl: code to inject afl fuzzing data

translations:
* updated swedish, ukrainian, polish, finnish, russian, danish, polish, brazilian, serbian, dutch, chinese
------------------------------------------------------------------------------
libgphoto2 2.5.10 release

libgphoto2:
* added gp_camera_list_config, gp_camera_get_single_config, gp_camera_set_single_config
  additional configuration APIs for faster access to single configuration values.

ptp2:
* allow generic opcode commands with parameters, config variable "opcode"
* fixed pretending that Nikon Coolpix S series is a Nikon 1 S.
* Nikon: fixed problem with SDRAM capture
* Canon EOS: handle "no focus" during capture
* Canon EOS: handle --new correctly
* Canon Powershot: handle lack of object protection setting
* Ricoh Theta: support shutterspeed configuration
* added size checking to PTP unpacking primitives
* various bugfixes
* New ids:
  * Imported Media Players and Android phones from libmtp
  * Sony Alpha A7S II, ILCE 7M2
  * Kodak Z990
  * Nikon Coolpix L840, S3600
  * Leica SL
  * Olympus TG-620, E-M5 Mark 2
  * Canon EOS 1D C, 750D
  * Canon IXUS 160
  * Fuji Film X-T1, X-T10, A-610


pentax:
* fixed some crashes on non-existing config variables
* use portable directory api (helps Visual Studio)

libgphoto2_port/vusb:
* Implemented a virtual PTP camera for test purposes.

libgphoto2_port/disk:
* Support exfat fuse filesystems.

all:
* fixed various issues found by Coverity static analyzer
* removed unistd.h headers where not needed to help Visual Studio

translations:
* updated swedish, brazilian portuguese, danish, polish, ukrainian, vietnamese

------------------------------------------------------------------------------
libgphoto2 2.5.9 release

Now maintained (source and issue tracker) in GIT at https://github.com/gphoto/libgphoto2 

ptp2:
* PTP/IP: fixes to support Ricoh Theta and Sony Alpha over WLAN better
* unification of timeout with backoff handling
* Canon EOS: fixed a timeout bug on wait_event
* Canon EOS: report protection status correctly
* Canon EOS: unlock the ui on close
* Sony: bulb mode support (in manual mode, shutterspeed and bulb option)
* Hook up PTP OpenCapture opcode
* Nikon J5 support. Nikon now hides prop and opcodes even differently.
* Added USB IDs:
  - Sony SLT A77V, A7R2, HDR-PJ260VE
  - Nikon DSLR D5500
  - Canon EOS 760D, 5Ds, 5Ds R
  - Nikon Coolpix AW110, S6300, S6800, S3700, S2900
  - Nikon 1 S2, J5
  - Ricoh Theta m15 (USB and WLAN)
  - GoProp Hero 4

canon:
* readd old Canon IXUS 30.

translations:
* updated ukrainian, vietnamese, polish, italian

------------------------------------------------------------------------------
libgphoto2 2.5.8 release

all:
* Missing COPYRIGHT headers added.
* Bug fixes for issues detected by Coverity.

ptp2:
* Canon Powershot/IXUS CHDK support
  Install the CHDK firmware and then use "gphoto2 --set-config chdk=On" to enable.
* Canon EOS: Implemented new capture method for new Canon EOS to avoid hangs.
* Canon EOS: New configuration variable: continuousaf
* Canon EOS: event output for focusinfo / focusmask
* Nikon DSLR: New configuration variables: movieiso, movieshutterspeed, moviehighisonr
* Nikon Coolpix A: also manually add override opcodes for capture (please report if it works)
* New USB ids:
  Sony: DSC-HX60V, Alpha-A7S, Alpha-A77 M2, Alpha A5100
  Panasonic: DMC-LS2
  Canon EOS 7D Mark II, Canon EOS M3
  Canon Powershot SX520 HS
  Fuji Fujifilm X-E2
  Samsung NX1
* Media Player IDs synced with the libmtp ID database.
* Lots of bugfixes.

libgphoto2_port/libusb1:
* Prefer libusb1 over libusb0 if both are present.
* Asynchronous interrupt handling, to avoid losing usb interrupts during other
  operations.

------------------------------------------------------------------------------
libgphoto2 2.5.7 release

ptp2:
* Canon EOS focusinfo crash fixed (affected all config operations)
* wait_for_event sleep backoff increased (50 - 100 - 150 - 200ms)
* Nikon: fixes to make Nikon Coolpix S9700 over PTPIP work better
* Nikon: WLAN GUID setting
* Sony: tighten event loop to avoid loss of objectadded events
* New USB ids: Nikon Coolpix 9400, Nikon S9700, Pentax K3 (in PTP).

pentax:
* added Pentax K100Ds
* added raw capture support

packaging:
* fixed missing libexif in pkgconfig 

translations:
* updated ukrainian, vietnamese, french, polish
------------------------------------------------------------------------------
libgphoto2 2.5.6 release

ptp2:
* Nikon D3000/D3100/D3200: It hides the "good" capture opcodes from the
  DeviceInfo. Override and add them. If you see capture bugs, please report
  with debuglogfile.
* "exposurecompensation" now in correct size (-3.0 <-> 3.0 usually)
* Canon EOS: decode and report "focusinfo" variable that outputs the focus information of the camera.
* Canon EOS: autofocusdrive=0 and cancelautofocus=1 added to cancel autofocusing,
  to avoid blocking the camera.
* Canon EOS: "eosviewfinder" renamed to "viewfinder"
* Sony SLT: Make property setting work for "iso", "exposurecompensation",
  "f-number", "shutterspeed"
* Canon EOS: crash on 700D fixed
* Nikon DSLR: race condition on object addition handled better
* Nikon DSLR: make sure we make a pause a bit during polling after capture.
* IDs added:
  Nikon: Coolpix P7800, S1, J4
  Nikon: D3300, D610, D4s, D810, D750
  Canon: IXUS 125HS, PowerShot Elph340HS
  Leica M9
* various bugfixes

libgphoto2_port/usb1:
* fixed a memory leak
* api changed for gp_log_data to make smaller debuglogs possible

------------------------------------------------------------------------------
libgphoto2 2.5.5.1 release

This is a regression fix release.

ptp2:
* fixed all Nikon S* coolpix that are not Nikon 1
* Nikon: exit from potential endless loop on trigger capture

canon:
* On EOS/Rebel DSLR do not query or set "zoom" as its manual always

translations:
* updated polish, ukrainian, vietnamese

------------------------------------------------------------------------------
libgphoto2 2.5.5 release

ptp2:
* Nikon 1 support. Final fix to get it running by Raj Kumar of archive.org.
* Nikon: liveview capture without autofocus enhanced, now also for card
* Nikon: restart liveview after capture
* Canon EOS: New property reporting method (OLC Info) implemented.
* Print read-only values in configuration table lookup (for Canon EOS mostly)
* Sony: Fixed Sony SLT-A900v capture
* Fixed the various "datetime" hooks for PTP generic, Canon Powershot and Canon EOS
  to hopefully work better. --set-config datetime=now sets the camera to the current time.
* CHDK: some changes
* New ids:
  Nikon DSC D3x, D5300
  Nikon Coolpix P330
  Canon PowerShot S95, S120, SX260HS, SX280HS, SX160IS, A2500, A2600, Elph135, IXUS 300HS, IXUS 255HS
  Canon EOS 1200D
  Sony DSC-A900, Alpha 6000, DSC-HX5V
  Casio EX-ZR700, 
  Fuji FinePix AV-150, T200
* Massive logging and error handling cleanup by Axel Waggershauser
* cleanup of the USB data handling
* Bugfixes

st2205:
* add support for a new type of 240x320 picture frames

all:
* Massive logging and error handling cleanup by Axel Waggershauser.
* Various cleanups from David Berrange for mingw32 builds.
* fixed libgd detection and linking.

print-camera-list
* add a mode to print udev rules for the non-standard USB support (usbscsi/usbdisk),
  needed additional to HWDB databases.

translations:
* updated ukrainian, vietnamese, polish, french, finish, chinese, danish, dutch,
------------------------------------------------------------------------------
libgphoto2 2.5.4 release

ptp2:
* Sony SLT DSLR support: SDRAM capture, Tethering, Triggering movie capture, property reading
* Nikon DSLR: bulb mode implemented in newer DSLRs (D600/D7100/D5200 and later)
* Nikon capture adjustments (always set controlmode before capture).
* Nikon capture in "live view mode" no longer does autofocus, use "autofocusdrive".
* Nikon "applicationmode" setting added.
* Nikon Coolpix capture failure on empty cards fixed.
* Some Canon EOS 5D Mark III config adjustments/additions.
* Canon EOS: enable trigger capture 
* Olympus E-series capture: some improvements.
* ptp2: implemented device property description caching
* New IDs
  - Sony DSC-W510, SLT-A58 (control)
  - Nikon P80 v1.1
  - Canon A3500IS, A1400, SX170IS, SX510HS, A2200
  - Fuji FinePix S4850, JX370, S4850
  - Apple iPhone 5

ax203:
* support for picture frame with id 1.

sierra:
* Reimplemented a libusb based mass storage tunneling driver to support
  non-Linux systems (e.g. Mac OS X).

libusb1:
* fixed timeout detection for USB interrupts

all:
* Lots of small fixes to build with mingw32.

Translations updates:
* Danish, Spanish, French, Dutch, Polish, Russian, Serbian, Ukrainian,
  Vietnamese

------------------------------------------------------------------------------
libgphoto2 2.5.3.1 release

packaging:
* "print-camera-list hwdb" output mode added for udev versions >= 201.

  Put this to /usr/lib/udev/hwdb/20-gphoto.hwdb (your udev hwdb directory might be different)

  Added a missing "i" in the PTP matcher.

------------------------------------------------------------------------------
libgphoto2 2.5.3 release

packaging:
* "print-camera-list hwdb" output mode added for udev versions >= 201.

  Put this to /usr/lib/udev/hwdb/20-gphoto.hwdb (your udev hwdb directory might be different)

* "print-camera-list html" output mode added for http://gphoto.org/proj/libgphoto2/support.php

all:
* Lots of Coverity fixes merged

ptp2:
* Nikon: added a new PTP capture opcode function, allows capture to card during liveview
* Nikon: rewrote some of the wait logic in the capture routines
* Nikon: enable --trigger-capture support
* Nikon: hook up some more configuration variables (funcbutton, previewbutton, menusandplayback, changeafarea)
* canon: hook up configuration variables (colortemperature)
* ptpip: several contributed bugfixes, and event handling
* panasonic: allow deleting files by setting MTP Responder code.
* new ids:
  * Kodak Z8612 IS
  * Sony DSC-S780, SLT-A57, SLT-A58, SLT-A99v, DSC-RX100M2, Alpha A3000, NEX 6
  * Nikon Coolpix S3200, DSLR D3200, J3, V2, S02, 2200v1.1, S4300, S2700, L27, S02, V2, J3
  * Panasonic TZ-8
  * Olympus E-M5
  * Canon Rebel G15, EOS 70D, A1000IS, SX150IS, A810
  * Canon Rebel T3, EOS 1Dx, EOS 70D
  * Fuji FinePix SL1000, S2980
* merged ids from libmtp
* lots of bugfixes

canon:
* label PowerShot S110 from 2001 differently than the 2012 PowerShot S110.
* fixed "new / downloaded" logic
* disable unconditional "clear halt" calls as they confuse newer controllers

ax203:
* support Nantronics N25S80 chipset

directory:
* support NRW files

sierra:
* capture fixed for Olympus C-3030

pentax:
* Various fixes from Jiri Pinka

jd11:
* enhanced de-bayering a bit

translations:
* new czech translation by Pavel Borecki.
* updated czech, danish, dutch, polish, russian, seribian, ukrainian,
  french, vietnamese, taiwanese

libgphoto2:
* use generic macros to check for libGD and libxml2 to allow better handling.

libgphoto2_port/disk:
* check the right fstab field for ignoring filesystems (avoids autofs scans)


------------------------------------------------------------------------------
libgphoto2 2.5.2 release

ptp2:
* Fixed Raspberry Pi and USB 3.0 "connect only once" problem.
* Experimental Olympus E-series (not Pen) remote control support. Try in "Control" mode.
* Nikon DSLR: real movie capture! (use --set-config movie=1/0 and --wait-event)
* New ids:
  Sony: DSC-A900, SLT-A350, DSC-RX1, HX300, NEX-3N
  Nikon Coolpix: P80, L820, S9500, S620, P520, S2500, S2600
  Nikon Coolpix A
  Nikon DSLR: D2Xs, D4, D7100
  Nikon J2
  Canon Powershot: S100, A1300IS, A2300IS, 
  Canon EOS: 700D, 100D
  Fuji FinePix: H20EXR, X20
  Samsung: NX1000, EK-GC100
  Also various MTP device ids merged from libmtp.
* ptpip: major/minor number was switched in init packet.
* Nikon DSLR: out of focus during capture fixed, various bugfixes
* Nikon "controlmode" config for unlocking the camera.
* Canon DSLR: "keepdeviceon" pinging in get_config, liveview
* Canon thumbnail retrieval fixed.
* Lots of work on getting Olympus E-series DSLRs in Control mode
  to run.

canon:
* wait-for-event: handle when camera goes offline during waiting.
* fixed mtime 0 (Jan 1 1970) issue when downloading files and using --filename

sierra:
* Fixed the Nikon Coolpix 4300 and 2500 USB over SCSI capture mode.
* Ignore register 4 read errors after capture as Nikon does not supply them.
* added commented code on how to switch the Coolpix 2500 to RAW DIAG mode.

libgphoto2_port:
* gp_port_reset functionality to do a port reset.

libgphoto2_port/usbscsi:
* Use timeout supplied by driver, not hardcoded 1.5 seconds (fixes Nikon sierra capture).

translations:
* updated ukrainian, finish, dutch, polish, russian, french, vietnamese, german

build:
* specify lots of _BSD_SOURCE et.al. to make the strict MacOS ports
  build happier. Might break non Linux platforms, please report this.

* libxml2 needed for Olympus E series capture support.

* cleaned up AM_CPPFLAGS/CPPFLAGS usage, do not use both of them together.

------------------------------------------------------------------------------
libgphoto2 2.5.1.1 release

ptp2:
* fixed 32bit architectures
------------------------------------------------------------------------------
libgphoto2 2.5.1 release

translations updates
* lots of translations synced to 2.5.0 release

ptp2:
* Lots of new USB ids added
  - Sony RX100, SLT-A65V, HX200V
  - Nikon Coolpix S01, S3300, P7700, S8200, P510, J1
  - Nikon DSLR D600, D800E, D800, D5200
  - Panasonic DMC LX7
  - Olympus SP-720UZ, E-PL5
  - Canon PowerShot D10, IXUS 310IS, SX220HS, G1 X, SX40HS, 
    A4000IS, SX240HS, A2400IS, S110, SX500IS
  - Canon EOS M, EOS 650D, EOS 6D
  - Fuji FinePix S2950, S4300, X-S1, HS30EXR, XF1
* wait-for-event also for Canon PowerShot (capture capable ones)
  now waits for "shutter press" signal and triggers a capture.
* Canon Powershot Preview mode fixes
* various Nikon configurations added: angle, flickerreduction,
  rawcompression, remotemode.
* Nikon DSLR to-ram capture fixes
* merged music player ids from libmtp. Includes big Samsung devices rename.
* EOS preview capture bugfixes: some waiting reduced to allow higher
  preview / regular capture speed on Canon EOS, understand newer EOS.
* some more bug fixes

ax203:
* SST25VF080 and SST25VF016 support added.
* ax206 support enhanced.

canon:
* decode "zoom" settings better
* "shootingmode" fix

libgphoto2_port/libusb1:
* bugfixes

examples:
* focus.c, sample-justfocus.c: focusing example added

------------------------------------------------------------------------------
libgphoto2 2.5.0 release

libgphoto2 API:
   * gp_context* functions no longer get varargs, but preprocessed
     strings. This makes hooking them into other language bindings
     easier.

   * gp_file_new_from_handler(): Allow passing data in and out via
     handler functions (to allow streaming). See also CameraFileHandler
     function pointers.

   * CameraFileInfoFile: removed "name" structmember and GP_FILE_INFO_NAME
     flags.
     Use direct passing in of the filename to the API functions.

   * New: gp_camera_autodetect(CameraList *list, GPContext*);

     Simple autodetection function returning all current detected cameras.

   * (TODO: not yet New: gp_camera_open (Camera *camera, const char *name, const char *port, GPContext *context);

     Simple open function without needing to involve libgphoto2_port.
     )

   * gp_file_set_name() and _get_name() passing in is no longer needed
     and the API will go away.

   * New gp_file_get_name_by_type() will convert a regular filename ("normal")
     into one depending on type (e.g. "raw_" prefix) and adjusted suffix
     (like ".ppm" turning into ".pgm" for grayscale previews).

   * gp_file_set_type() and gp_file_get_type() are gone, these functions
     are now implicit passed via arguments to the the put_file and
     set_file_noop() functions.

   * gp_filesystem_set_info_noop(), gp_filesystem_set_file_noop(),
     gp_filesystem_put_file(), gp_camera_folder_put_file():

     Added "filename" argument to pass in the filename. The one
     from CameraFileInfoFile and CameraFile are no longer used.

     Added "type" argument to pass in the filetype (GP_FILE_TYPE_*).

   * Adjusted to new GPPortInfo handling.

   * Rewrote gphoto2-filesys.c to be directory based (in a tree structure).
     Change should not be visibile outside of gphoto2-filesys.c.

libgphoto2_port API:
   * GPPortInfo is now abstracted and internal.
     
     If you need to retrieve name, path or type, use
	     gp_port_info_get_xx (info, &x);
     to get the value.
     Name and path strings continue to be owned by libgphoto2_port,
     do not modify and do not free.

     You are not supposed to create / append new ones to GPPortInfoList.

   * Disk Settings have been removed from the Settings union. Should
     not affect frontends at all.

   * Started using symbol versions.

PTP2 driver:
   * Lots of improvements.
   * PTP Object management rewritten, able to do "on demand" loading.

Directory driver:
   * Use GPPortInfo instead of settings to pass basepath in.
   * Abstracted common functionality.

Build:
   * Removed dummy README file from SVN.
   * Ship README.packaging in dist tarball for the first time.
   * Allow building "all plus non-default" camlibs.
   * Fix libltdl test compile for cases with LDFLAGS defined.

Documentation:
   * Optionally (--enable-internal-docs) build internal doxygen docs
     with call graphs and all the dirty details.
   * Improved docs on how to selectively build camlibs.

Test cases:
   * Test camlib loading of both uninstalled and installed camlibs.
------------------------------------------------------------------------
libgphoto2 2.4.14

packaging:
* new udev 175 mode for print-camera-list (from Ubuntu)

libgphoto2:
* fixed stupid bug in directory listing (fixes "canon" driver)

libgphoto2_port/usb:
* Fixed stv680 usb config alternate setting (unbreaks stv680 driver)

canon:
* enhanced wait_for_event a bit.

ptp2:
* Nikon viewfinder enable/disable via config
* added Nikon S6000, Canon PowerShot A3000, PowerShot SX230HS, Canon EOS 5D Mark III, Sony SLT A35, Nikon Coolpix AW100
* lowlevel Canon EOS CustomFuncEx support added
* Canon EOS 5D Mark III imagesize packing/unpacking support
* Samsung Galaxy file handling support restored
* match configuration table values more exact and correct.
* mtp player list synced with libmtp

translations:
* updated russian, ukrainian, danish, czech, german

examples:
* sample-tether added

libgphoto2 2.4.13

libgphoto2_port/libusb1:
* fixed accessing freed memory which lead to non-working communication
* use the correct context everywhere avoid crashes on startup on newer libusb1
* fixed and rewrote the whole device caching mechanisms for major initial speedup.

ptp2:
* Implemented fast Canon EOS directory loading

storage:
* add ogg, mp3, mp4 extensions to "good"

translations:
* updated polish
  
libgphoto2:
* capture to card added a lonely file to a camera folder
  instead of getting the content from the card

------------------------------------------------------------------------
libgphoto2 2.4.12

libgphoto2_port:
* Added libusb 1.0 port driver.
* removed baudboy.h support from serial driver.
* Updated translations: czech, german

canon:
* Secondary RAW 2 format for some cameras.

directory:
* Handle more suffixes to mimetypes (unknowns will not show up in the
  file list): moov, qt, qtvr, mp2, mpeg, mpe, srw, 3gp, 3g2, dif.
* set the correct filetime

ptp2:
* New cameras:
  Kodak C1530
  Sony DSC-HX100V, DSC-A1000, SLT-A55
  Nikon CoolPix P7000, P7100, P500, L120, L23, S5100, S3100, 
  Nikon D2Hs, D5100
  Canon EOS 10D, 1D Mark IV, 1100D, 600D
  Canon PowerShot A2000IS, A3100IS, 
  Fuji FinePix F80EXR, X10
  Apple iPad, iPhone 4
  Panasonic DMC-TZ18, TZ20

* Canon Powershot event handling changed to no longer use PTP Events.
  Should now be more reliable on MacOS.

* Nikon configurations added: videomode, scenemode, exposure program mode,
  effect mode, liveviewaf, liveviewaffocus, cleansensor, microphone, moviequality,
  autodistortioncontrol, autoisopadv renamed to minimumshutterspeed.
* Allow per-camera configuration tables.
* Canon EOS configurations added: "Immediate" for shutter button pressing,

* Handle missing runtime iconv module support (as found in embedded devices)
* Bump retries on EOS liveview getting
* Fixed stupid EOS event handling bug that caused a 1.5 second delay
* Fixed more session startup issues
* Tried a fix for getting bad thumbnail lengths

sierra:
* Bugfix: handle ACK as valid response code

tp6801:
* New driver for Tenx tp6801 picture frames from Hans de Goede.

digigr8:
* added Digital Blue Barbie Camera DC150, Cobra Digital Camera DC150,
  Aries Digital Keychain Camera, ITEM 128986, Lego Bionicle

jl2005c:
* added Sakar Nickelodeon iCarly no. 88061, Sakar Dora the Explorer no. 88067,
  Jazwares Star Wars no. 15256

libgphoto2:
* make jpeg and gd support configurable (Gentoo)
* Updated translations: pl

------------------------------------------------------------------------
libgphoto2 2.4.11

ax203:
* Various new ids:
  GigaDevice GD25Q40, GD25Q80, GD25Q16
  ST M25P08, M25P16, M25P32, M25P64
  Winbond W25Q80, W25Q16, W25Q32
* Various bugfixes

canon:
* implemented a basic wait_for_event() so --capture-tethered works
  (not working correctly for CR2+JPG, but JPG or CR2 stand alone will work) 
* Some bugfixes

digigr8:
* Added Lego Bionicle camera.

directory:
* More mimetypes that are images added

jl2005c:
* Reduced stack usage (do not have 5MB arrays on the stack),
  making it work in programs with stacklimits

mars3:
* Added Shift3 camera.

sierra:
* rewrote the USB wrapped command handling to use "usbscsi"
  port. Now its no longer necessary to detach the mass storage
  driver.

ptp2:
* Allow by-camera specific configuration (used for Nikon DSLR currently)
* Added some Nikon D90, D3s specific tables.
* Canon EOS: support remoterelease (remote trigger manipulation) via eosremoterelease
  config option
* Merge some CHDK code (not tested working with my SX100IS -Marcus)
* Make setting properties via the "other" config tree work.
* merged new media player ids from libmtp
* Timeouts configurable
* New cameras:
  Kodak Z710, C183
  Nikon CoolPix S7c, P90, P100, S8000, S3000, S9100
  Nikon DSLR D3s, D3100, D7000
  Casio EX-Z65
  Canon Powershot SD1300 IS, SX210 IS, SX130 IS, 
  Canon EOS 60D
  Fuji FinePix A220, Z700EXR, 
* Some capture bugfixes
* Lots of bugfixes

st2205:
* Minor additions

libgphoto2_port/usb:
* Avoid MTP probing. Done by libmtp these days, also confuses some devices.
* Do list less usb:XXX,YYY ports for things that are not cameras.

libgphoto2_port/usbscsi:
* Fixed symlink handling in device detection for newer kernels.
* Decode SCSI sense data received.

libgphoto2
* Updated translations: danish, german, spanish, basque, french,
  hungarian, italian, japanese, dutch, polish, russian, swedish, ukrainian,
  vietnamese, simplified chinese

libgphoto2_port
* Updated translations: czech, danish, german, spanish, basque, french,
  italian, japanese, dutch, polish, brazilian portuguese, russian, slovakian,
  swedish, ukrainian, vietnamese, simplified chinese, traditional chinese

------------------------------------------------------------------------
libgphoto2 2.4.10.1

This is a regression + translation fix update only

translations:
* libgphoto2_port updated: russian, slovakian
* libgphoto2 updated: italian, polish, russian

sts2205:
* Fix build without GD development headers due to stray ;

ptp2: 
* linear backoff waiting for Nikon events to reduce load
* ptpip senddata fix (was broken before)
* be more careful with USB interrupt checks on MacOS X, as they do
  not timeout currently.

------------------------------------------------------------------------
libgphoto2 2.4.10

This is a 2.4 release branch update.

libgphoto2:
    * Translation updates (polish, vietnamese).
    * The "usb:" generic matcher entry is not reported anymore.
      Auto detection will now always return "usb:XXX,YYY" and "usb:AAA,BBB" values.

      You can still pass "usb:" in.

    * The generated UDEV rules for version 136 and later have been changed:
      - PTP class is shortcut to avoid 1000 entries to be evaluated for the common camera case.
      - USB Mass Storage is now skipped and not tagged as gphoto supported.
        This should avoid confuse users with MTP players in dual mode.

       (Done just for the cameras and MTP players, not for the picture frame drivers).

st2205:
    * Link iconv (MacOS build fix)
    * "delete all files" implemented.

ax203:
    * Various improvements and bug fixes
    * new compression method supported for ax206

ptp2:
    * New PTP event handling added.
      This might have caused some instabilities in capture code.

    * Fixed EOS capture to card waiting 1 minute bug
    * Fixed EOS capture "no focus" waiting 1 minute bug
    * EOS "eosviewfinder" enable/disable option.
    * Pass up more EOS events via wait_for_event (property changes, and all unknown events).
    * EOS Viewfinder Zoom Level and Position added
    * Fixed setting multiple configuration values at once.
    * Handle MTP -> Vendor id mapping for PTP/IP cameras.
    * Lots of bug fixes.
    * Added new IDS:
      Kodak Z950
      Sony DSC-S370
      Nikon CoolPix 7600, L110
      Panasonic FZ38, DMC-GF1 (only download support), 
      Canon PowerShot D10, SX120 IS
      Fuji FinePix F60fd, F70 EXR, S1800, S5800
      Pentax Optio W90

sierra:
    * Added Olympus E-520

canon:
    * ability to read and set "shooting mode".

digigr8:
    * merged from TRUNK: new camera "Stop & Shop 87096", some cleanups and bug fixes

jl2005c: 
    * Decompression decoded and driver now working. Enabled by default now.

libgphoto2_port/usbscsi:
    * Check for scsi/sg.h and use it only if present (MacOS build fix)

libgphoto2_port/usb:
    * Do not filter out "usb:XXX,YYY" ... but have both usb: and
      usb:XXX,YYY for now.

------------------------------------------------------------------------
libgphoto2 2.4.9

This is a 2.4 release branch update.

ptp2:
   * Fixed EOS viewfinder capture speed (2 images/s -> 20 i/s)
   * EOS event handling cleaned up, so that we can also have
     dual image capture (RAW+JPEG).
   * New Canon EOS properties: autoexposuremode, cameraoutput, evfmode, uilock.
   * New Nikon property: exposuredelaymode
   * Fixed a Canon PowerShot configuration bug that caused hangs.
   * Fixed a Nikon CoolPix configuration bug that caused hangs.
   * Fixed shutterspeed setting to be more generic.
   * New IDs added:
	Nikon Coolpix 8800, P6000, L20, L19
	Panasonic FS62
	Olympus FE4000/X920/X925, 
	Canon EOS 550D
	Canon Powershot A2100IS, SD970IS, SX20IS, IXUS 120IS
	Fuji FinePix S1500, Z35, S2500HD
	Apple iPhone 3GS
   * Some bugs fixed, some memory leaks closed.
   * music-players.h merged from libmtp, bringing new MTP devices.

ST2205 Driver:
   * New Pictureframe driver from Hans de Goede. st2205 based frames present
     themselves as a regular usb mass storage device, but cannot be used
     as a normal disk! Communication with the device happens by a special
     protocol which consist of reading / writing sectors of the disk at
     certain magic offsets. Also included is a "usbdiskdirect" port driver,
     which allows the direct sector access the camlib for these devices needs.

AX203 Driver: 
   * New Pictureframe driver from Hans de Goede. ax203 based frames present 
     themselves as a usb mass storage cdrom, which contains the windows
     software. Communication with the device happens by issuing special
     (custom) scsi commands. Also included is a "usbscsi" port driver,      
     which allows sending the custom scsi commands.

     Note that if your ax203 frame has a usb-id of 1908:1315, you need to
     tell Linux not to touch the HID device this version also presents
     in its USB descriptor. To do this add the following on the linux kernel
     cmdline: "usbhid.quirks=0x1908:0x1315:0x4"

digita:
   Made to work again hopefully after breakage due to filesystem changes.

------------------------------------------------------------------------
libgphoto2 2.4.8

This is a 2.4 release branch update.

libgphoto2:
   * Updated translations.
   * Added read-only flag for Widgets. gp_widget_set_readonly / gp_widget_get_readonly.
   * GP_EVENT_CAPTURE_COMPLETE event added from trunk.
   * Some bugfixes.

ptp2:
   * New USB IDs for cameras:
	Kodak Z915
	Nikon CoolPix S220, S225,
	Nikon DSLR D5000, D3000, D300s
	Canon PowerShot SD770 IS, A580, SD1200, IXUS 95 IS, G11, IXY 220IS, SD940IS
	Canon EOS 7D
	Fuji S5 Pro
	Sea & Sea 2G
   	Also merged new libmtp deviceids.
   * Fuji S5 Pro capture support.
   * Bugfixes in Canon EOS preview code.
   * Fixed NIKON DSLR shutterspeed not able to set bug.
   * Nikon error decoding.
   * Several Canon EOS configuration and capture additions and fixes, focus pulling.
   * PTP protocol stability improvements.
   * Lots of bugfixes.

sierra:
   * restrict list of choices for Nikon Coolpix 4300

directory:
   * Merged from TRUNK to gain the good stuff.

libgphoto2_port/usb:
   * Updated translations.
   * Check for MTP devices by string descriptor first and by OSD later.

------------------------------------------------------------------------
libgphoto2 2.4.7

This is a 2.4 release branch update.

libgphoto2:
   * Translation updates from translationproject.org.
   * Widget and choice lists now dynamic, to be able to create longer ones.
   * 3rd generation UDEV rules emission, now able to emit "post HAL"
     UDEV rules.

     print-camera-list udev-rules version 136 > /lib/udev/rules.d/40-libgphoto2.rules
  
   * Disabled LRU of images. Not really useful in times of USB 2.0,
     also disabled by at least Debian und Ubuntu already.

libgphoto2_port / USB:
   * If we detached a USB driver, reattach it on close.
     This allows using e.g. cheap camera as both webcam with in-kernel
     driver and still camera with libgphoto2.

PTP2 driver:
   * Renamed various configuration options and changed values to
     match a unified model. Some common names have changed:
          owner->ownername
          exptime->shutterspeed
          eos-* -> non-eos prefixed variants
          etc.
     You will need to review configuration setting code if you have any.

   * Create config submenus /actions for action triggers and /status for
     read-only values, moved stuff there.

   * New IDs:
   	Kodak M863
	Canon Digital IXUS 110IS, IXUS 100IS, Powershot SX200IS, SD780 IS, A1100IS
	Canon EOS 500D
	Fuji Finepix F200 EXR
	Apple iPod Touch first generation


   * Lots of Canon EOS capture improvements, for card capture, for LiveView,
     and for property setting. More properties are now possible.
   * Canon EOS Bulb mode support (available in newer canons).
     --set-config bulb=(0|1)

   * Fixed Nikon DSC shutterspeed setting (also for times < 1/1000)
   * Enable Viewfinder on demand for Canon Powershot, not for all capture things.
   * Generic PTP Property Get/Set in the configuration handling.
   * Decode more Nikon DSC properties (for D90 now nearly complete).
   * Turned several PTP generic commands to macros to reduce number of functions.
   * MTP player list synced with libmtp 1.0.
   * Lots of bugfixes.

Canon driver:
   * Renamed various configuration options and changed values to
     match a unified model.

------------------------------------------------------------------------
libgphoto2 2.4.6

This is a 2.4 release branch update.

PTP2 driver:
   * Fixed Nikon DSLR capture in LiveView mode (like gtkam uses).
   * More Canon EOS stuff decoded, added experimental "capturetarget" support
     for EOS.
   * Canon EOS LiveView support (experimental, reported working for EOS 1000D).
   * Added new USB ids:
	- Kodak V803, M1063
	- Canon PowerShot A650IS, SD990 (aka IXUS 980IS), SD880IS, A480
	- Canon EOS 50D
	- Fuji FinePix S1000fd
   * Retrieve filedates again from PTP objects.
   * speedup: Do not list files on / (there aren't any).
   * Bugfixes.

Canon driver:
   * Support Exposure Bias setting.
   * More shutterspeeds.

libgphoto2:
   * Fixed a problem during file retrieval which causes Canon Normal 
     --capture-image-and-download errors, handle CR2 and CRW mimetypes.
   * Fixed ordering of filelists again that broke the digigr8 driver.
   * Translation updates.

digigr8: 
   * Added a new version of the disney pix micro.

------------------------------------------------------------------------
libgphoto2 2.4.5

This is a 2.4 release branch update.

PTP2 driver:
   * Increased timeout for Canon Viewfinder enable.
   * Fixed initial Canon timeout (0.5 -> 1.5 seconds), was too small
     for some Canons.
   * Canon EOS capture mode and tethered mode bugfixes.
   * Nikon DSLR LiveView support, with Autofocus and ManualFocus Drive possibility.
   * Nikon tethered capture fixes.
   * New cameras listed:
                Nikon CoolPix P50, S60
                Canon Digital IXUS 85
                Canon PowerShot A740, G10,
                Canon EOS 5D Mark II
   * Merged new IDs of Music Players from libmtp.
   * Lots of bugfixes.

KODAK DC240:
   * Made driver work again.
   * Cleanups

libgphoto2:
   * rewrote gphoto2-filesys.c to be dynamic and fix LRU problems.
     (backport from TRUNK)
   * Translation updates.

libgphoto2_port:
   * added --enable/--disable configure options for: disk, serial, ptpip
   * added --with/--without configure options for: bonjour, hal
   * backported Gentoo "if just canon driver selected, auto-select ptp2 driver"
     usability fix.
   * Translation updates.
------------------------------------------------------------------------
libgphoto2 2.4.4

libgphoto2:
   * Updated translations from translationproject.org

PTP2 driver:
   * Developed in parallel with TRUNK.
   * Only retrieve and initialize the ptp filesystem if needed
     (this will give speed ups for config operations, basic
      init and summary.)
   * Export the hidden vendor specific properties of the current Nikon DSLRs.
     (over a hundred with all camera configuration details...)
     (D80, D90, D300, D700, D40x got, D200 guessed)
   * Lots of new Nikon DSLR and Canon Powershot properties implemented,
     both printed in summary and available for config functions querying
     and/or setting.
   * Query and Set image protection flags (actually used by digikam).
   * Lots of bugfixes and changes in Canon and Nikon specific capture routines.
   * Some defines for PTP 1.1 added. Will have to wait for implementation until
     a device gets available.
   * New cameras added:
	Kodak C913
	Nikon D90
	Canon Digital IXUS 960IS, EOS 1000D, SD1100 IS, SX10 IS, SX110 IS
	Fuji FinePix A920, F100fd, S200HD
	Apple iPod Touch (just saved screenshots and uploaded images)
   * PTP v1.1 defines added (implementation will start once devices are available)
   * Synced MTP device list from libmtp (0.3.5 level).
   * Lots of bugfixes.

jl2005c: 
   * Experimental driver for jl2005c based cameras added.
     Can only retrieve raw images currently, no viewable images yet.
     Not builtin by default. ./configure --with-drivers=all,jl2005c

libgphoto2_port:
   * Updated translations from translationproject.org

   * Serial driver: do not lock device during probe to reduce startup
     time.

------------------------------------------------------------------------
libgphoto2 2.4.3

This is a 2.4 release branch update.

libgphoto2:
   * Adaptive Homogeneity-Directed Bayer array conversion added, used
     in several camera lib drivers.
   * Translation updates for various languages.
   * libtool 2.x build fixes
   * Various MacOS X compile fixes again.
   * gp-byteorder.m4 fixes for newer glibcs.

Example programs:
   * Addes some basic library usage example programs and helpers.

PTP2 driver:
   * Merged camlib from TRUNK.
   * Tethered Capture support for Canon EOS 40D, 400D, 450D.
   * Always handle "no directory linking to /" problem.
   * Disable more Panasonic cameras (product id 0x2372 is always mass storage)
   * Some MTP fixes, lots of new MTP devices.
   * Fixed canon viewfinder issues on Canon PowerShot SX100IS.
   * Fixed a ptp property packing issue exposed
     by newer Nikons.
   * Added new devices:
  	 Kodak M893 IS, C813
	 Nikon CoolPix L16, CoolPix 8700, DSC 700
	 Canon EOS 1D Mark III, IXUS 90IS, EOS 50D
	 Apple iPhone 3G

Canon driver:
   * Fixed some unlock keys problem for EOS cameras.
   * Moved over several PTP2 supported cameras to the PTP2 driver only.

Sierra driver:
   * Implemented basic Storage Information function.
   * Fixes for big endian or 64bit architectures by fixing struct packing.

smal driver:
   * Added support for Creative CardCam.

sq905 driver:
   * Updated postprocessing, by using "AHD" bayering and new gamma methods.
   * Bugfixes.

stv0680:
   * Storage information function.

digigr8, mars, sonix drivers:
   * Updated postprocessing, by using "AHD" bayering and new gamma methods.
 
jl2005a driver:
   * Imported from TRUNK, for new small factor cameras.
           American Idol Keychain Camera
	   NogaNet TDC-15
------------------------------------------------------------------------
libgphoto2 2.4.2

This is a 2.4 release branch update.


libgphoto2:
   * Camera abilities list sorting now uses qsort(),
     bringing startup speedups by seconds. (0.4 seconds on 2GHz machine).

   * On large files, do not try to retrieve thumbnails.

   * Updated lots of translations.

PTP2 driver:
   * Full merge of TRUNK ptp2 camlib.

   * Lots of new IDs added. Also changed MTP id handling to share devices
     with current libmtp.
   * Canon now can capture to both CF/SD Card and internal memory
     with extract/retracting the lens. "capturetarget" config option
     determines which ones used.

   * EOS capture support made working with newer Canon EOS models,
     now reported working for EOS 400D, 450D, 40D.

   * Handle MTP -> Canon/Nikon vendor id transitions better.
   * Download cancellation support.
   * Handle canon cameras with shorter timeouts on startup (hopefully
     does not break) to avoid very long second startup delays.

   * Lots of bugfixes.

Canon driver:
   * Configuration of Flash, Beep and Zoom added.
   * Enable/disable remote mode only once per session (on demand)
   * Fixed a CR2 thumbnail download problem.
   * Fixed a THM download problem (for movies).
   * Moved some more cameras over to PTP2 driver.

Topfield driver:
   * New driver for Topfield PVR5000 device(s).

* Sony DSC F1 (old serial) driver:
   * Merged from TRUNK, working now.

libgphoto2 2.4.1

This is a 2.4 release branch update.

Package / System integration:
   * HAL FDI files now use "info.subsystem" instead of "info.bus", required
     by hal after March 2008.

   * Suppress another Olympus camera in FDI file that is better of done
     using Mass Storage only.

libgphoto2_port:
   * Suppress more known network filesystems in "disk" autodetection
   * disabled usb_reset for Canon cameras in "usb", broke EOS cameras.

PTP2 driver:
   * Merged all new Camera IDs from TRUNK.
   * Configuration bugfix for multiple options with the same name.
   * Capture bugfix for Nikon Coolpix
   * Various small bugfixes.

Canon driver:
   * Increased the event timeout, so operations work again.
   * Fixed a bug in interval capture
   * some additional configuration values for newer cameras

Mars driver:
   * Synced with SVN TRUNK (1:1 copy).
	   * Better whitebalance postprocessing
	   * Camera ids added
	   * Decompression fixes

Digigr8 driver:
   * Synced with SVN TRUNK (1:1 copy).
	   * bugfixes

Sonix driver:
   * Synced with SVN TRUNK (1:1 copy).
	   * bugfixes
------------------------------------------------------------------------
libgphoto2 2.4.0 release

Build:
   * Non-recursive camlib build: Makes "make -j2" useful.
     "./configure --with-drivers=..." still works. Selective camlib
     rebuild is "make -C camlibs agfa_cl20.la" now. Selective camlib
     install is "make DRIVERS='canon.la ptp2.la' install-drivers".
   * Fix sierra and canon drivers picking up old gphoto2 headers.
   * libiconv linking fix for PTP2 driver.
   * Require external libltdl.
   * Ditched autogen.sh, use standard autoreconf from stock autoconf.
   * Put auto* files into auto-aux/ and auto-m4/.
   * Accept utilsdir and udevscriptdir set by user (#1646520).
   * Introduce libgphoto2-uninstalled.pc pkgconfig file (#1643245).
   * Remove make dependency on $(LIBLTDL) aka "-lltdl" (#1548195).

libgphoto2 API:
   * New gp_file_new_from_fd() ... Which allows mapping CameraFile to
     UNIX filedescriptors for both reading and writing.
   * New gp_file_slurp() function (for camlib use) to sequentially
     read out CameraFiles.
   * New gp_camera_get_storageinfo() API added to get programmatically
     the storage information(s), like capability, free space and labels.

     On cameras not supporting it returns GP_ERROR_NOT_SUPPORTED.

   * Enhanced Bayer algorithm added globally.

Package / System integration:
   * New syntax for print-camera-list's udev output. See help output.
     
     Note that we generate udev >= 0.98 output by default.

     Use "version pre-0.98" on the commandline to generate the old version.

   * Add new permission setup binary doing Microsoft OS Descriptor
     retrieval for MTP devices not explicitly listed.
     This binary (check-mtp-device) is used by the generated UDEV rules.
     (Not working currently since udev does not create the device before
     calling it.)

disk port:
   * handle automounter properly.

directory driver:
   * ignore anything not starting by '.' because it is not DCF compliant
     and it is use for things like Trash of metadata...

PTP2 driver:
   * For Canon capture capable cameras, enable shutter and aperture control
     using "shootingmode" property (PTP d00c), and focuslock mode.

   * New dataflow engine, making it possible to upload/download images
     or songs without taking up any system memory. (think multi GB movies
     on small devices).

   * Enhanced MTP protocol handling.

   * Cleanups and bugfixes.

   * New USB IDs for cameras:

 	Canon PowerShot SD1000, SD900, A450, A550, A560, A570, A420, SD40, SD750
 	Canon PowerShot S5 IS, SD1000
	Canon Digitial IXUS 70, 75, 900Ti, iZ
	Canon MV750i
	Nikon CoolPix S4, S6, P4, L10
	Nikon DSC D40, 
	Kodak EasyShare C433, C613, C653, C743, C875, V570, V610, V705, P880, V603, Z712 IS
	HP Photosmart R967
	Minolta DiMAGE x21
	Fuji FinePix F20, F40, S9500
	Casio EX-Z700
	Sony DSC N2, W35, W200
	Apple iPhone

   * Several new USB IDs for MTP players, including
     all from libmtp:
	iRiver T20, N12, iFP-800, T20 2, Clix2
	Archos 504, Toshiba Gigabeat P20
	Philips PSA235, SA9200
	Samsung YH-925GS
        SanDisk Sansa c250

Canon driver:
   * Enable formerly experimental 20D support code by default.

   * Moved handling of some cameras to PTP2 driver, since they cause
     as yet unidentified errors.
------------------------------------------------------------------------

libgphoto2 2.3.1

PTP:
   * Fixed a memory leak in continuous Nikon / Canon capture mode.

Bindings:
   * Moved all bindings into separate packages.

Package / System integration:
   * Add README.packaging file for packagers.
   * Removed obsolete print-usb-usermap. Use
     "print-camera-list usb-usermap usbcam" instead.
   * Fix libgphoto2 symbol list: Removed gpi_gphoto_port_type_map
   * Add new permission setup script doing class based matching for
     PTP class cameras not listed explicitly by USB IDs.
     This script (check-ptp-camera) is used by the generated UDEV rules.

     Example usage:
	 print-camera-list udev-rules mode 660 group plugdev \
              > /etc/udev/rules.d/90-libgphoto2.rules

     or similar and set udevscriptdir='/lib/udev' at configure time or adjust
     the path to check-ptp-camera in the generated /etc/udev/rules.d/90-libgpoto2.rules
     file.

----------------------------------------------------------------------------

libgphoto2 2.3.0

PTP:
   * Improved Nikon remote control
   * Improved Canon file download
	- faster directory retrieval (especially on cameras with lots of files)
	- "new" images are marked (gphoto2 --new, digikam)
   * MTP Playlist support (upload and download)
   * MTP Metadata support (upload and download, Artist, Title, Playtime ... )
   * Lots of other MTP related fixes.
   * MTP autodetection on Microsoft OS Descriptor.
   * New devices:
          Canon PowerShot A540, A530, S3 IS, SD430, SD700, IXUS 800,
		IXUS 60, A630, SD630, G7, Digital IXUS 65, 710IS, EOS 400D,
		Digital Rebel XTi, IXUS 850 IS, PowerShot A640,
		IXUS Wireless (USB support only currently)
          iRiver T20 FM, iClix
	  Creative Zen Vision W, Vision M, Vplus, V
          Dell Pocket DJ
          Nikon Coolpix L4, L3, L1, D80, P3
          Kodak Easyshare Z740, P850, Z612, C633, C643, C530, Z612, CD33
          Sony DSC-U10
          Leica D-LUX 2
	  Olympus IR-300
          JVC Alneo XA-HD500
	  All currently known HP Photosmarts (sync with Windows Driver .INF files)
	  various Samsung devices

Canon:
   * 5D - 20D experimental capture support (default disabled)

Kodak DC120:
   * Bugfixes to make it work.

Mars:
   * RAW files saved with size information.
   * Some new ids, lots of bug fixes.

Ricoh G3:
   * Added Ricoh Caplio R4 id.

Disk port:
   * Addes Solaris filesystem table handling.
   * Fixed a crasher.
   * Skip "fuse" filesystem.

SiPix Blink:
   * Disabled build, since it cannot the downloaded data to usable images.

Sonix:
   * Bugfixes and support for Sakar Digital Keychain 11999.

Bindings:
   * Removed the Mono/.NET bindings due to unclear license.
   * Partial Java bindings

libgphoto2 API:
   * Compiles with -pedantic in gcc's c99 and c++98 modes.
   * Marked a few definitions as being internal to the gphoto project.
   * Added gp_list_find_by_name() function.
   * Made _CameraList details private.

libgphoto2:
   * Fixed some directory handling problems for MTP players.
   * Improved error checking and propagation.
   * New error code for "fixed limit exceeded" (exceptions would be nice)
   * Added a few internal functions.

----------------------------------------------------------------------------

libgphoto2 2.2.1

   * Fix build for FreeBSD users (and other non-Linux)

----------------------------------------------------------------------------

libgphoto2 2.2.0


Build system (packagers beware!):

   * You should generate HAL FDI, linux-hotplug usb.usermap, and udev rules
     now via our program:

 	  ${libdir}/print-camera-list (hal-fdi|usb-usermap|udev-rules)

     During a chrooted build you can use:
	CAMLIBS=$BUILDROOT/usr/lib/libgphoto2/2.2/ print-camera-list hal-fdi

     This obsoletes print-usb-usermap and print-udev-rules.

     The hal FDI file should be put into:
	/usr/share/hal/fdi/information/20thirdparty/10-camera-libgphoto2.fdi

     If you need to generate different stuff based on the cameras, please add
     it to the "print-camera-list" helper.

   * Added C# (csharp) bindings

     Thanks to Patrick van Staveren <trick@vanstaveren.us>'s initiative,
     we now compile, ship and install the C# bindings. However, a few
     things will still change about it, so don't just completely rely on
     it, its file names and locations, etc. just yet.


Client programmers (KDE, GNOME, MONO, C....) with specific character
set requirements:

   * We added new function gp_message_codeset(const char*) to API.
      - If you do not call this function, libgphoto2 will give you its
        messages in the codeset defined by the system locale.
	(The system locale is defined by the LANG, LANGUAGE, and LC_*
	environment variables.)
      - Call this function with your desired codeset if you require
        libgphoto2 messages in a fixed codeset independent from the
        system locale. For example, GTK+ applications always expect UTF-8.
      - gp_message_codeset() propagates the requested charset to
        libgphoto2_port and then calls gettext's bind_textdomain_codeset()
        function.
    * Added gp_camera_wait_for_event() API, to wait for
      specific camera events and return them to the caller.


libgphoto2 changes:

   * libgphoto DSO version is now 2.1.0

   * Lots of bugs were fixed.

   * New translations were added.

Driver changes:

   * PTP

     - PTP/IP support has been added.

     - On selected Nikon and Canon cameras it is now possible to capture
       images into the Camera SDRAM and in turn downloading it to libgphoto2
       internal storage, bypassing the memory card.

       To enable it, use the "capturetarget" setting, also saved in
       .gphoto/settings.

       This is useful for:
	   gphoto2 --capture-image -f /store_00010001 -p capt0000.jpg

       Or use the timelapse capture of gphoto2:
	   gphoto2 --capture-image -F <total frames> -I <seconds interval>

       Or write your own client using libgphoto2...


     - Support of MTP devices has been greatly enhanced.

       + Creative Zen devices now work.
       + iRiver devices work, but have some protocol subtleties / flaws.

       + Object Property (Meta Data) support now works in a basic way.

	   GP_FILE_TYPE_METADATA type get and put can be used to retrieve
	   and set meta data for files.

	   get: Returns all available properties and their contents.

	   put: Set the properties found in the file to the specified content.
		The non-listed are untouched.

	   The metadata looks like:
		   <Artist>Elvis Presley</Artist>

	   gphoto2 -f /store_00010001/Folder... --get-metadata file.mp3 --stdout > meta_file.mp3
	   ... edit meta_file.mp3 ...
	   gphoto2 -f /store_00010001/Folder... --upload-metadata meta_file.mp3

	   gphoto2 --get-all-metadata	... retrieves metadata of all files, with meta_ prefix.

       - Better --summary output, listing also Storage Devices and Device abilities.

       - Lots of new device ids.
         * Canon 5D, 30D, A340, A700, S40, S80
	 * Nikon D200
         * Casio EX-Z120
         * Kodak C360, Z700
         * HP M317
	 * Panasonic DMC-LC1
         * Fuji E900
         

----------------------------------------------------------------------------
libgphoto2 2.1.99 (pre-release of 2.2)

Build system (packagers beware!):

   * now requires libltdl (from system or shipped with tarball)
   * works with contemporary build tools
   * new ./configure parameter set
   * no more accidentally building without libusb (use --without-libusb
     if you insist on that)
   * camlibs and iolibs are now installed into new directories
   * libhal 0.5 is currently an option for the disk: port.
     Distribution that ships it might want to build it with it.

libgphoto2:

   * If set, use environment variable CAMLIBS to find the camera drivers.
     Ditto for libgphoto2_port, IOLIBS and IO drivers.
   * disk: "port" for USB Mass Storage support
   * various USB fixes
   * Generate .fdi files for HAL
   * Memory usage greatly reduced by only keeping last 2 pictures
     in memory cache

Drivers (camlibs)

   * basic MTP support for iRiver mp3 players using ptp driver T10,
     T20, T30, M415

   * canon
     * IXY Digital 600 fixes
     * Added A610
     * Experimental SD500
     * Experimental A620 (not really working)

   * casio
     * various fixes in QV-10 driver

   * digigr8 (NEW)
     * support Digigr8, Che-Ez Snap SNAP-U, Soundstar TDC-35

   * kodak/dc210
     * Added DC215

   * ricoh/g3
     * Ricoh Caplio GX, GX 8
     * Ricoh R2, R3
     * Rollei dr5 

   * hp215 (NEW)
     * support HP 215

   * lg_gsm (NEW)
     * support LG T5100

   * mars
     * various fixes
     * Added Argus DC-1620, DC-1610 (experimental)
     * Added Philips P44417B

   * pdc640
     * Added Clever CAM 360

   * ptp
     * For Nikon, handle ISO speed, aperture, exposure program,
       capture, focus metering mode, flash mode, AF beep toggle
     * Nikon curve
     * Added Kodak Z730, Z7590, C340, LS753, V530, V550, C310, C330
     * Added Nikon D50, D70s, 4600, 4800, 5600, 5900, Coolpix P2
     * Added Canon A410, A520, A610, A620, IXUS 55, SD450, IXUS 750
     * Added HP R817, Photosmart M23
     * Added Olympus D-540z, C-310z, X-100
     * Added Panasonic Lumix FZ5, DMC-LZ2
     * Added Ricoh R3
     * Added Sony DSC-H1, DSC-R1
     * Added MTP devices (mp3 players)
     * Some iRiver MTP devices (mp3/ogg players) are supported too,
       but are experimental.

       While the "Creative Zen Micro" is also an MTP device, we were
       not able yet to decipher the PTP protocol deviation.

       In general, MTP devices can be supported here, but you need
       to add the ID in camlibs/ptp2/library.c directly, since they
       do not have a USB class id.

     * Now supports a "fast filesystem" mode on newer Nikon PTP cameras.

       This speeds up initialization notably on cameras with lots (>50)
       of images.

       However, this mode does not find the special files on the camera
       (AUTPRNT.MRK). It also cannot represent the correct directory
       structure.

       For normal users (who just download and process the images) the
       "fast" mode is recommended.

       It can be toggled in the "Camera Settings" menu and ~/.gphoto/settings.
       
   * sierra
     * various fixes
     * Added C-770UZ

   * sq905
     * various fixes
     * fix some crashers

Bindings

   * added Java (patch# 1108091)
   * added Python (patch# 1152835)
   * added C#

Translation updates:

   * da
   * it
   * ru
   * vi
   * zh_TW



----------------------------------------------------------------------------
libgphoto2 2.1.6

General libgphoto2 features:


Drivers (camlibs):

   * sierra driver:
     - We now support the hidden Sierra Mode on Nikon and Pentax
       cameras (which are otherwise just USB Storage cameras).

       The USB Storage driver is automatically detached on open.
       
       This allows remote image capture with those cameras for
       instance.


------------------------------------------------------------------------
libgphoto2-2.1.5
------------------------------------------------------------------------

On 2004-12-16, we are proud to release libgphoto2 2.1.5 to the world.

libgphoto2 2.1.5 features support for more than 400 digital cameras.

The changes since the 2.1.4 release are mostly bug fixes and support
for new cameras, and support for multiple cameras of the same type
at the same time.

See the CHANGES file for more details.

Have fun with libgphoto2 and your pictures!

The gphoto2 team.

----------------------------------------------------------------------------
libgphoto2 2.1.5
 
   * Support multiple USB devices by introducing additional USB ports,
     usb:<bus>,<device>. 
   
drivers (camlibs):

   * PTP driver:
     - Lots of new ids were collected (across all vendors).
     - Raw download support for newer cameras fixed.

   * sq905, mars, aox drivers:
     - New drivers written by Theodore Kilgore for:
	- Aiptek Pencam VGA+, Emprex PCD3600 (mars) 
	- Concord EyeQ mini (aox)
	- Lots of SQ 905 based cameras (sq905)

   * sierra driver:
	- Toshiba PDR support added.

   * sonydscf55 driver:
	- bugfixes, downloading of MPEGs.
	
   * casio-qv driver:
	- working serial support added.

   * canon driver:
	- Several new ids added.


------------------------------------------------------------------------
libgphoto2-2.1.4
------------------------------------------------------------------------

On 2004-01-18, we are proud to release libgphoto2 2.1.4 to the world.

libgphoto2 2.1.4 features support for more than 400 digital cameras.

The changes since the 2.1.3 release are mostly bug fixes and support
for new cameras, nothing major.

See the CHANGES file for more details.

Have fun with libgphoto2 and your pictures!

The gphoto2 team.

----------------------------------------------------------------------------
libgphoto2 2.1.4 

general:

   * fixed recursion problems during capturing

   * Support for multiple USB cameras NOT included yet.
     Reason: It breaks several applications.

drivers (camlibs):

   * Canon driver:
     - added support for G5, Optura 20, ZR-70MC
     - re-added support for A300 and S50
     - fix erroneous file size limits

   * PTP driver:
     - enhanced Canon Capture support
     - added id for Canon Digital IXUS i
     - added Olympus C-350Z, D-560Z, X-250
     - added Sony DSC-U20, DSC-P52, DSC-P72, DSC-P92
     - updates from libptp2

   * ricoh driver:
     - working G3, G4 support

   * sx330z driver:
     - added Maginon SX-410z

   * spca50x driver:
     - do not delete everything and fail to download on Aiptek 1.3

   * polaroid drivers:
     - fixed support for D-Link 350F, Skanhex SX-35
     - added support for Trust 350FT PowerC@m FLASH

packaging:

   * linux hotplug scripts:
     - use correct directories in usbcam.x11-app

libgphoto2_port:

   * serial bug fix with speed 0


------------------------------------------------------------------------
libgphoto2-2.1.3
------------------------------------------------------------------------

On 2003-10-19, after a long time, we have finally released a new
version of libgphoto2.

Version 2.1.3 now features support for almost 400 digital cameras.

The most important changes since the the 2.1.1 release are:

	- PTP driver rewritten completely
	- support for lots of new cameras
	- fixed a nasty segfault bug

See the CHANGES file for a more complete list.

Have fun with your photos!

The gphoto2 team.


----------------------------------------------------------------------------
libgphoto2 2.1.3

   * builtin cache:
     - use all available RAM on systems without memory size detection

drivers (camlibs):

   * Canon driver:
     - added support for EOS 300D
     - fixed ProductID for PowerShot S45
     - fixed support for serial cameras
     - fixed thumbnail stuff

   * New driver for Ricoh Caplio G3.

   * Smal driver:
     - misc improvements

   * PTP2 driver:
     - added misc cameras
     - thumbnail hacks (?)


----------------------------------------------------------------------------
libgphoto2 2.1.2

   * fixed nasty stack overflow/segfault bug
   * improved/fixed support for Sun

drivers (camlibs):

   * All drivers:
     - report vendor/model in a new (formatted) fashion

   * Canon driver: 
     - added support for capturing on consumer class cameras, tested on
       Canon PowerShot S45, Canon PowerShot G2
     - G2 works again running from AC adapter
     - multiple new models added (A60, A70, ...)

   * PTP2 driver:
     - Next generation PTP driver added, using this as default now.

   * New Agfa CL20 driver from http://cl20.poeml.de/.

   * New camera library spca50x for all chips supporting the spca50x bridges
     (merging the gsmart, benq and spca504_flash driver into one).


------------------------------------------------------------------------
libgphoto2-2.1.1
------------------------------------------------------------------------

On 2002-12-01, after almost five months, we have finally released a new
version of libgphoto2.

Version 2.1.1 now features support for almost 300 digital cameras.

The most important changes since the the 2.1.0 release are (see
CHANGES for a complete list):

	- new support for quite a lot of new cameras
	- improved/fixed support for a lot "old" cameras
	- libgphoto2 and the gphoto2 command line utility are now
          separated
	- also moved documentation to a separate module

Have fun with your photos!

The gphoto2 team.


----------------------------------------------------------------------------
libgphoto2 2.1.1

   * separated libgphoto2 sources from gphoto2 command line interface

   * gphoto2 manual moved to separate package gphoto2-manual

drivers (camlibs):

   * Ricoh

   * Canon driver: 
     - added support for Canon PowerShot A100, Canon PowerShot A200,
       Canon PowerShot S45, Canon PowerShot S230, Canon Digital IXUS v3,
       Canon PowerShot G3
     - fixed Canon EOS D60 unlocking

   * PTP driver:
     - fixed some bugs
     - added support for Nikon D100
     - added support for Canon PowerShot S45, Canon PowerShot S230, 
       Canon Digital IXUS v3, Canon PowerShot G3 in PTP mode

   * added support for Mustek gSmart mini, Mustek gSmart mini 2, Mustek gSmart
       mini 3 and So. Show 301

   * Polaroid driver:
     - added support for USB Jenoptik JD350v

   * SoundVision driver:
     - Added support for RCA CDS1005, FujiFilm @xia ix-100,
       Oregon Scientific DShot II, Media-Tech mt-406,
       and Scott APX 30

   * added support for Aiptek Pencam and Medion MD 5319


--------------------------------------------------------------------------------
gphoto2 2.1.0

   * repaired "make rpm" target
   * started "real" gphoto2 manual

gphoto2 command-line interface:

   * optional readline support

libgphoto2:

   * support for periodic keep-alive-messages

drivers (camlibs):

   * improved support for PTP cameras:
     - multiple storage media
     - image capturing
     - driver stability and robustness improved (less problems with
       different cameras)

   * added support for Kodak DX-4900, Sony DSC-P5, Sony DSC-F707V,
        Sony DSC-P30, Sony DSC-P50, Sony DSC-S75, Sony DSC-S85,
        Sony MVC-CD300

   * added support for Canon EOS D60, Canon PowerShot A40, 
        Canon PowerShot A30, Canon PowerShot S200 aka 
        Canon Digital IXUS v2, Canon Digital IXUS 330

   * fixed support for Canon PowerShot S10

   * Added SiPix Web2 support.

--------------------------------------------------------------------------------
gphoto2 2.0

gphoto2 command-line interface:
   * Added gphoto2 manpage.

--------------------------------------------------------------------------------
gphoto2 2.0beta5

libgphoto2:
   * Added Sony DCR-PC100 support.
   * Fixed serial cameras bug introduced in beta4. 
   * Removed SiPix StyleCam from the STV0680 cameras list.

gphoto2 command-line interface:
   * EXIF support (extra tags that contain information about the image
      produced by most digital cameras).
   * Fixed broken --delete-all-images. Also, recursion is now the
      default for downloading but _not_ for deleting.
   * Localization for Simplified Chinese.
   * Progress bar à la e2fsck


--------------------------------------------------------------------------------
gphoto2-2.0beta4
--------------------------------------------------------------------------------

Hello lovers of digital cameras, gphoto2-beta4 is out! 

As you probably know, the word beta doesn't keep us from adding lots 
of new features:
   * Added/Improved cameras support (Canon PowerShot S30, ...),
   * Most functions report progress and are cancellable,
   * Support for Samsung 800k, PTP cameras,
   * STV0680 improvements,
   * Kodak DC3200 fixes,
   * Camera summary for Kodak DC240 driver,
   * and more ...

Get it from http://www.gphoto.net/dist/gphoto2-2.0beta4.tar.gz and try
it out!

We are aiming at a final release in about 2 weeks from now, therefore 
if you want to see gphoto2  (or any frontend) translated, your camera 
working, or if you have any recommendation, speak up NOW!

Happy downloading!

Your gphoto2 team.

--------------------------------------------------------------------------------
gphoto2-2.0beta4

libgphoto2:
   * Most functions report progress and are cancellable.
   * Camera libraries are now installed in a versioned subdirectories.
   * Stv0680 improvements.
   * Canon: added PowerShot S30 support, CameraFS support, big-endian
      systems support, RAW-File support.
   * Added ptp cameras support (Kodak DX series and much more).
   * Camera Summary for Kodak DC240 driver.
   * Samsung 800k support.
   * Fixed digita thumbnails bug.
   * French localization.
   * Japanese localization.

gphoto2 command-line interface:
   * Now reports progress information (when user can see it).
   * Folder recursion is now the default behaviour.
   * French localization.
   * Japanese localization.