From: EinvalSledge@gmail.com Date: Sun, 29 Apr 2012 16:20:30 +0000 (+0000) Subject: * Re-fix speex tagging. (Closes issue 19). X-Git-Url: https://git.hcoop.net/clinton/abcde.git/commitdiff_plain/26cae4deb33666b53d7453b153d8785e66b67fb9 * Re-fix speex tagging. (Closes issue 19). Thanks to vskytta for pointing out the problem - patch not applied properly in 2.5.1 * Quickly re-release as 2.5.2 git-svn-id: http://abcde.googlecode.com/svn/trunk@327 a0fa61bc-5347-0410-a1a9-7f54aa4e1825 --- diff --git a/abcde b/abcde index 2c617e6..50ef599 100755 --- a/abcde +++ b/abcde @@ -13,7 +13,7 @@ # # $Id$ -VERSION='2.5.1' +VERSION='2.5.2' usage () { @@ -1137,7 +1137,7 @@ do_encode () fi # Tag the file at encode time, as it can't be done after encoding. if [ "$DOTAG" = "y" ]; then - RUN_COMMAND nice $EFFECTIVE_NICE $SPEEXENCODER $SPEEXENCODEROPTS --author "$TRACKARTIST" --title "$TRACKNAME" ${COMMENT:+--comment "$COMMENT"} "$IN" "$OUT" + $RUN_COMMAND nice $EFFECTIVE_NICE $SPEEXENCODER $SPEEXENCODEROPTS --author "$TRACKARTIST" --title "$TRACKNAME" ${COMMENT:+--comment "$COMMENT"} "$IN" "$OUT" else $RUN_COMMAND nice $EFFECTIVE_NICE $SPEEXENCODER $SPEEXENCODEROPTS "$IN" "$OUT" fi diff --git a/changelog b/changelog index 821238c..8a97575 100644 --- a/changelog +++ b/changelog @@ -1,3 +1,13 @@ +abcde 2.5.2 + + [ Steve McIntyre ] + * Re-fix speex tagging. (Closes issue 19). + Thanks to vskytta for pointing out the problem - patch not applied + properly in 2.5.1 + * Quickly re-release as 2.5.2 + + -- Steve McIntyre <93sam@debian.org> sun, 29 Apr 2012 17:17:14 +0100 + abcde 2.5.1 [ Steve McIntyre ]