X-Git-Url: https://git.sommitrealweird.co.uk/bpgallery.git/blobdiff_plain/bd2b083210e038f02bd8ee677c0e7772d372c3a0..06ddf26160a4e9375336d91b3fce0a6effd4c666:/bpgallery.sh diff --git a/bpgallery.sh b/bpgallery.sh index ade52a5..338b780 100755 --- a/bpgallery.sh +++ b/bpgallery.sh @@ -19,7 +19,7 @@ set -f -VERSION="1.1.1+arch" +VERSION="1.1.3" function bpgallery_default_head() { cat <&1 | while read throwout; do $ECHOCOMMAND done: $currentimage/$imagestoupdate images; currentimage=$((currentimage+1)); done + $FINDCOMMAND . $FINDIMAGESOPTIONS | \ + $XARGSCOMMAND -0 -I {} $ECHOCOMMAND {} | \ + while read filename; do + tempfilename=${filename//\"/\\\"/}; + imagesizeright=$(check_dimensions "$width" "$height" "$2" "$filename") + if [ ! -r "$2/$tempfilename" ] \ + || [ "$tempfilename" -nt "$2/$tempfilename" ] \ + || [ $imagesizeright -ne 1 ]; then + $ECHOCOMMAND -n $filename + $ECHOCOMMAND -n -e "\000" + fi + done | \ + $XARGSCOMMAND -0 --verbose --max-procs=4 -I {} $CONVERTTOOL -resize $1 '{}' $2/'{}' 2>&1 | \ + while read throwout; do + $ECHOCOMMAND done: $currentimage/$imagestoupdate images + currentimage=$((currentimage+1)) + done $ECHOCOMMAND done: $imagestoupdate/$imagestoupdate images $ECHOCOMMAND "Completed generating $2 for $totalimages images" } function generate_thumbs() { - if [[ ! -z $HEIGHT ]]; then + if [ ! -z $HEIGHT ]; then generate_resized_images "${WIDTH}x${HEIGHT}" $ICONSDIRECTORY else generate_resized_images $WIDTH $ICONSDIRECTORY @@ -575,8 +645,8 @@ function generate_thumbs() { } function generate_medium() { - if [[ ! -z $MEDIUMHEIGHT ]]; then - generate_resized_images "${WIDTH}x${HEIGHT}" $MEDIUMDIRECTORY + if [ ! -z $MEDIUMHEIGHT ]; then + generate_resized_images "${MEDIUMWIDTH}x${MEDIUMHEIGHT}" $MEDIUMDIRECTORY else generate_resized_images $MEDIUMWIDTH $MEDIUMDIRECTORY fi