# HG changeset patch # User Colin Clark # Date 1540320276 -3600 # Node ID 8521d2405863a55ca09f424f54c8386be7c51ec0 # Parent 009f0a8114720016b337534056d98fe207b2246d Plugin for tethered photography Basic tethered photography using gphoto2 diff -r 009f0a811472 -r 8521d2405863 configure.in --- a/configure.in Sun Oct 21 11:32:53 2018 +0100 +++ b/configure.in Tue Oct 23 19:44:36 2018 +0100 @@ -620,6 +620,7 @@ plugins/import/Makefile plugins/geocode-parameters/Makefile plugins/export-jpeg/Makefile + plugins/tethered-photography/Makefile geeqie.spec ]) diff -r 009f0a811472 -r 8521d2405863 plugins/Makefile.am --- a/plugins/Makefile.am Sun Oct 21 11:32:53 2018 +0100 +++ b/plugins/Makefile.am Tue Oct 23 19:44:36 2018 +0100 @@ -1,6 +1,6 @@ #FIXME enable or disable individual plugins from configure -SUBDIRS = rotate symlink ufraw import geocode-parameters export-jpeg +SUBDIRS = rotate symlink ufraw import geocode-parameters export-jpeg tethered-photography qq_desktoptemplatedir = $(appdir) qq_desktoptemplate_DATA = template.desktop diff -r 009f0a811472 -r 8521d2405863 plugins/tethered-photography/Makefile.am --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/plugins/tethered-photography/Makefile.am Tue Oct 23 19:44:36 2018 +0100 @@ -0,0 +1,9 @@ +dist_gq_bin_SCRIPTS = geeqie-tethered-photography geeqie-tethered-photography-hook-script + +gq_desktopdir = $(appdir)/applications +gq_desktop_in_files = tethered-photography.desktop.in +gq_desktop_DATA = $(gq_desktop_in_files:.desktop.in=.desktop) +@INTLTOOL_DESKTOP_RULE@ + +EXTRA_DIST = $(gq_desktop_in_files) +CLEANFILES = $(gq_desktop_DATA) diff -r 009f0a811472 -r 8521d2405863 plugins/tethered-photography/geeqie-tethered-photography --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/plugins/tethered-photography/geeqie-tethered-photography Tue Oct 23 19:44:36 2018 +0100 @@ -0,0 +1,48 @@ +#!/bin/bash + +# Tethered photography +# Requires gphoto2 +# +# If a file already exists with the same name, it is not overwritten, but the +# download will not take place. +# Auto-rename can be achieved with the --filename option of gphoto2. +# In file $HOME/.config/gphoto2/settings, set the option: +# gphoto2=filename= + +n=$(ps -e | grep "geeqie-tethered" | wc -l) +if [ "$n" -ge 3 ] +then + exit 0 +fi + +if ! [ -x "$(command -v gphoto2)" ] +then + zenity --title="Geeqie tethered photography" --info --width=200 --text="gphoto2 is not installed" 2>/dev/null + exit 0 +fi + +if [ $(gphoto2 --auto-detect | wc -l) -le 2 ] +then + zenity --error --title="Geeqie tethered photography" --text="No camera detected" --window-icon=/usr/local/share/pixmaps/geeqie.png --width=250 2>/dev/null + exit 0 +fi + +notify-send --expire-time=2000 "$(gphoto2 --auto-detect | sed -n '3p')" --icon=geeqie + +script_dir=$(dirname "$0") + +tmpfile=$(mktemp --tmpdir geeqie_tethered_photography_XXXXXX) + +yes n | gphoto2 --hook-script "$script_dir/"geeqie-tethered-photography-hook-script --capture-tethered >$tmpfile & + +gphoto2_pid=$! + +zenity --question --title="Geeqie tethered photography" --ok-label="Stop" --cancel-label="Show log data" --text="Tethered photography is running.\n\n\nDownloading to folder:\n""$PWD\n\n\nExisting files will not be overwritten,\nbut the download will not take place.\n\n(Use gphoto2 --filename default option\nfor auto-rename on download)" --width=300 --window-icon=/usr/local/share/pixmaps/geeqie.png 2>/dev/null + +if [ $? == 1 ] +then + zenity --text-info --title="Geeqie tethered photography" --window-icon=/usr/local/share/pixmaps/geeqie.png --ok-label="Stop" --cancel-label="Abort" <$tmpfile 2>/dev/null +fi + +kill $gphoto2_pid +rm $tmpfile diff -r 009f0a811472 -r 8521d2405863 plugins/tethered-photography/geeqie-tethered-photography-hook-script --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/plugins/tethered-photography/geeqie-tethered-photography-hook-script Tue Oct 23 19:44:36 2018 +0100 @@ -0,0 +1,11 @@ +#!/bin/bash + +# Tethered photography + +if [ "$ACTION" == "download" ] +then + notify-send --expire-time=4000 "$ARGUMENT" --icon=geeqie + geeqie --remote File:"$PWD/$ARGUMENT" +fi + +exit 0 diff -r 009f0a811472 -r 8521d2405863 plugins/tethered-photography/tethered-photography.desktop.in --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/plugins/tethered-photography/tethered-photography.desktop.in Tue Oct 23 19:44:36 2018 +0100 @@ -0,0 +1,15 @@ +[Desktop Entry] +Version=1.0 +Type=Application +_Name=Tethered photography + +Exec=geeqie-tethered-photography + +# Desktop files that are usable only in Geeqie should be marked like this: +Categories=X-Geeqie; +OnlyShowIn=X-Geeqie; + +# It can be made verbose +#X-Geeqie-Verbose=true + +Icon=geeqie diff -r 009f0a811472 -r 8521d2405863 po/POTFILES.in --- a/po/POTFILES.in Sun Oct 21 11:32:53 2018 +0100 +++ b/po/POTFILES.in Tue Oct 23 19:44:36 2018 +0100 @@ -2,6 +2,7 @@ plugins/import/geeqie-import-geeqie.desktop.in plugins/import/geeqie-import-gqview.desktop.in plugins/export-jpeg/export-jpeg.desktop.in +plugins/tethered-photography/tethered-photography.desktop.in plugins/rotate/rotate.desktop.in plugins/symlink/symlink.desktop.in plugins/ufraw/geeqie-ufraw.desktop.in diff -r 009f0a811472 -r 8521d2405863 web/geeqie-install-debian.sh --- a/web/geeqie-install-debian.sh Sun Oct 21 11:32:53 2018 +0100 +++ b/web/geeqie-install-debian.sh Tue Oct 23 19:44:36 2018 +0100 @@ -1,5 +1,5 @@ #!/bin/bash -version="2018-10-14" +version="2018-10-23" description=$' Geeqie is an image viewer. This script will download, compile, and install Geeqie on Debian-based systems. @@ -57,6 +57,8 @@ "liblcms2-utils" "markdown (for generating README help file)" "markdown" +"gphoto2 (for tethered photography)" +"gphoto2" ) # Optional for GTK3 only