/video-contact-sheet/branches/1.13.2/dist/CHANGELOG |
1,6 → 1,9 |
1.13.2 (?): |
* BUGFIX: Fixed number of captures exceeded by one with mplayer [#225] |
Reported by Miya |
* OTHER: (BUGFIX in prereleases) |
Fixed error when processing files with quotes in the file name |
[#226] |
|
1.13.1 (2014-02-26): |
* BUGFIX: Fixed uncommon bug with unwrapped grep string [#217] |
/video-contact-sheet/branches/1.13.2/dist/vcs |
31,7 → 31,7 |
|
declare -r VERSION="1.13.2" |
declare -r RELEASE=0 |
declare -ri PRERELEASE=2 |
declare -ri PRERELEASE=3 |
[ "$RELEASE" -eq 1 ] || declare -r SUBVERSION="-pre.${PRERELEASE}" |
|
set -e |
1507,7 → 1507,7 |
|
(( n++ )); |
done |
assert "[[ -n '$to' ]]" |
assert "[[ -n '${to//\'/\'\\\'\'}' ]]" # [[ -n '$to' ]] + escape single quotes |
|
mvq "$from" "$to" |
echo "$to" |