summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* allow trigger capture for panasonicHEADmasterMarcus Meissner2023-04-241-0/+5
|
* synthesize a capturecomplete event for panasonic cameras, as they dont send ↵Marcus Meissner2023-04-241-0/+5
| | | | on on their own
* make it default fuzz ptp ... so --enable-vusb will give us a cameraMarcus Meissner2023-04-221-1/+1
|
* added Ricoh GR IIIxMarcus Meissner2023-04-031-0/+5
| | | | https://github.com/libmtp/libmtp/issues/148
* use uint32_t instead of unsigned intMarcus Meissner2023-03-131-1/+1
| | | | | | imported from chromium https://source.chromium.org/chromiumos/chromiumos/codesearch/+/main:src/third_party/chromiumos-overlay/media-libs/libmtp/files/libmtp-1.1.20-01_build_fixes.patch
* added sony ilce-1 , https://github.com/gphoto/libgphoto2/issues/892Marcus Meissner2023-03-132-0/+242
|
* mark when the put function already set the value in the camera,Marcus Meissner2023-03-061-23/+40
| | | | | | to avoid doublesetting https://github.com/gphoto/libgphoto2/issues/896
* remove incorrect superflous exit code. is handled belowMarcus Meissner2023-03-061-3/+0
|
* break out of the setter loop if we reached the correct stateMarcus Meissner2023-03-061-10/+13
| | | | fixes https://github.com/gphoto/libgphoto2/issues/896
* added some apparent missijng include unistd.h to make it build for ↵Marcus Meissner2023-02-1410-0/+10
| | | | mingw/llvm . fixes https://github.com/gphoto/libgphoto2/issues/890
* fixed one superflous argument to debug (Coverity)Marcus Meissner2023-02-141-1/+1
|
* aded z30 dsateMarcus Meissner2023-02-071-0/+4591
|
* added x-t5Marcus Meissner2023-02-021-0/+2
|
* handle time_t as long (Coverity)Marcus Meissner2023-02-011-2/+2
|
* switch debug print of a time_t based variable to long int (Coverity)Marcus Meissner2023-02-011-2/+2
|
* avoid uninitialized variable when setting non standard values (Coverity)Marcus Meissner2023-02-011-2/+4
|
* use unsigned long for time_t usage (Coverity)Marcus Meissner2023-02-011-1/+1
|
* make it clear we only use 32bit of time_t (Coverity)Marcus Meissner2023-02-011-1/+1
|
* fixed ptp_debug parameters (Coverity)Marcus Meissner2023-02-011-1/+1
|
* added a missing return code check for ptp_fuji_getdeviceinfo (Coverity)Marcus Meissner2023-02-011-0/+2
|
* fix WSACleanup conditionMarcus Meissner2023-01-181-1/+1
| | | | fixes https://github.com/gphoto/libgphoto2/issues/885
* canon eos: if half press succeeds, and full press fails, roll back ↵Marcus Meissner2023-01-171-2/+12
| | | | | | | half-press again might help https://github.com/gphoto/gphoto2/issues/538
* Create canon-eos-discovery.md (#884)Laurent Clévy2023-01-081-0/+74
| | | allows to document discovered Canon PTP commands using Python syntax or not. Suggested format is Markdown instead of plain text.
* Add properties to control Sony focus assist magnification, useful for ↵Mark Watson2022-12-232-0/+38
| | | | | | | | | | | | | | | | | remotely dialing in focus using live view / preview. (#883) The following toggle actions control the focus assist magnification: - focusmagnify : enter focus magnification mode, toggles through magnification levels - focusmagnifyexit : exit focus magnification mode, back to normal live view / preview image - focusmagnifyup : move magnification zone up - focusmagnifydown : move magnification zone down - focusmagnifyleft : move magnification zone left - focusmagnifyright : move magnification zone right These are toggle actions and may need to be set twice to be noticed by the camera: gphoto2 --set-config=focusmagnify=1 --set-config=focusmagnify=0 gphoto2 --set-config=focusmagnifyexit=1 --set-config=focusmagnifyexit=0
* name it R6m2Marcus Meissner2022-12-211-1/+1
|
* added canon eos r6 2Marcus Meissner2022-12-212-0/+1015
|
* updated NEWS to current stateMarcus Meissner2022-12-201-2/+22
|
* fixed 2.5.30.1 dev entryMarcus Meissner2022-12-201-0/+9
|
* Only format log messages when a log function is registered for given log ↵Mark Watson2022-12-201-7/+27
| | | | | level. (#871) This speeds up large file downloads considerably, as the data log string generation is skipped.
* added sigma fp lMarcus Meissner2022-12-202-0/+117
| | | | https://github.com/gphoto/libgphoto2/issues/882
* if we fail to spot a direction, use single stepping instead.Marcus Meissner2022-12-191-5/+18
| | | | https://github.com/gphoto/libgphoto2/issues/694
* added some more z6-2 debugMarcus Meissner2022-12-191-0/+156
|
* serial: Add check after malloc allocation (#878)Li kunyu2022-12-151-0/+6
|
* nikon z6 2 workaround, it reports a devicepropchanged 0x501c event, but the ↵Marcus Meissner2022-12-061-2/+13
| | | | property is not avauilable
* Fix SHUTTER_SPEED_1_6_SEC (#877)Daniel2022-12-051-1/+1
| | | Tested on my 1300D
* added gopro hero11 blackMarcus Meissner2022-11-301-0/+2
|
* sony manual focus is actually INT16, not UINT16. ↵Marcus Meissner2022-11-281-17/+17
| | | | https://github.com/gphoto/libgphoto2/issues/793
* convert a malloc(w*h) to calloc(w,h) to avoid overflow issues, found by codeqlMarcus Meissner2022-11-211-1/+1
|
* convert malloc (overflowing mult) to calloc(x,y) that handles this internallyMarcus Meissner2022-11-211-2/+2
|
* fixed missing arguments in 2 debug functions, spotted by codeqlMarcus Meissner2022-11-211-2/+2
|
* try to fix codeql integer expansion warningMarcus Meissner2022-11-211-2/+2
|
* fix some CodeQL warningsMarcus Meissner2022-11-211-6/+6
|
* Add 2 new settings metadata for Sony A7R3 (#872)Mark Watson2022-11-193-3/+30
| | | | | | | | | * Add support for Sony 'Live Display: Setting Effect ON/OFF'. This setting toggles exposure preview on the live view / preview image. * Add support for Sony A7R3/A7R3A 'Focus Area' settings. Co-authored-by: Mark Watson <watsonmw@gmai.com>
* try to fix 4 codeql warningsMarcus Meissner2022-11-161-1/+1
|
* SECURITY.md: Link to Github private vulnerability reportingHans Ulrich Niedermann2022-11-161-0/+2
|
* ci: Add Cirrus CI build for FreeBSDHans Ulrich Niedermann2022-11-141-0/+29
| | | | | | Add a CI build for FreeBSD using Cirrus CI. We can use Github Workflow for Linux, macOS, and Windows.
* ci: Add CI build for macOSHans Ulrich Niedermann2022-11-141-9/+42
| | | | | | | | | Note that this skips the 'make distcheck' stage due to two reasons: * GitHub considers macOS cpu cycles to be very expensive, and distcheck basically doubles the build cycles * For reasons yet unknown, 'make distcheck' on macOS fails with the compiler being unable to create an executable.
* ci: Add comment pointing to actionlintHans Ulrich Niedermann2022-11-131-0/+4
| | | | | | If Github does not accept a workflow YAML file as intended, actionlint is a very useful tool to help find out what is wrong in the YAML file.
* ci: Rename CI buildHans Ulrich Niedermann2022-11-131-2/+8
|
* ci: Prepare for OS specific build flagsHans Ulrich Niedermann2022-11-131-5/+8
|