forked from gphoto/libgphoto2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NEWS
1988 lines (1503 loc) · 63.1 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.10.1 development
canon:
* not experimental anymore, for some years
ptp2:
* sony: exposure compensation setting fixed
* sony: capture and autofocus configurations, similar to eosremoterelease
* fixed serialnumber retrieval
* Nikon: "autofocus" for global autofocus enable/disable (default on, default liveview off)
* new ids reported:
- Sony Alpha 7, DSC-RX100M4
- Nikon DSC Df
- Canon EOS 1Dx Mark 3, 80D
translations:
* updated svensk, ukrainian, polish, finnish, russian, danish, polish, brazilian, serbian, brazilian, serbian
------------------------------------------------------------------------------
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 intial 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