forked from gphoto/libgphoto2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NEWS
2537 lines (1957 loc) · 81.3 KB
/
NEWS
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
libgphoto2 2.5.30.1 development snapshot
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
------------------------------------------------------------------------------
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.