diff options
author | Udo Richter <udo_richter@gmx.de> | 2007-02-03 00:00:00 +0100 |
---|---|---|
committer | Manuel Reimer <manuel.reimer@gmx.de> | 2013-10-01 17:13:29 +0200 |
commit | 227b5c30f17596b06ca538eed10631e8ff7c5a66 (patch) | |
tree | e2a2377d6a4cef33ef47f3f68d645a2a8d85fb26 | |
parent | 302bca7e5c430fc4a3ebf619b5e15a0d8690662a (diff) | |
download | runvdr-extreme-227b5c30f17596b06ca538eed10631e8ff7c5a66.tar.gz runvdr-extreme-227b5c30f17596b06ca538eed10631e8ff7c5a66.tar.bz2 |
Version 0.1.1v0.1.1
* Fix: Set vfat option properly, thanks to Peter Bieringer
* Fix: Stop dropping - file, thanks to Suur Karu
* Fix: Pass parameter to -g option, thanks to JRx
-rw-r--r-- | HISTORY | 7 | ||||
-rwxr-xr-x | runvdr | 24 |
2 files changed, 19 insertions, 12 deletions
@@ -1,6 +1,13 @@ runvdr extreme Revision History ------------------------------- + +2007-02-03: Version 0.1.1 + +- Fix: Set vfat option properly, thanks to Peter Bieringer +- Fix: Stop dropping - file, thanks to Suur Karu +- Fix: Pass parameter to -g option, thanks to JRx + 2006-10-08: Version 0.1 - Initial revision. @@ -63,19 +63,19 @@ SETTERM="setterm" # -s # --shutdown # SHUTDOWN call CMD to shutdown the computer # -t # --terminal # TERMINAL controlling tty # -u # --user # USER run as user USER; only applicable if started as root -# -v --vfat VFAT encode special characters in recording names +# --vfat VFAT encode special characters in recording names # -v # --video # VIDEODIR use DIR as video directory # -w # --watchdog # WATCHDOG activate the watchdog timer with a timeout of SEC -which $PGREP >- || { echo missing $PGREP... >2 ; exit 1 ; } -which $PS >- || { echo missing $PS... >2 ; exit 1 ; } -which $GETOPT >- || { echo missing $GETOPT... >2 ; exit 1 ; } -which $KILL >- || { echo missing $KILL... >2 ; exit 1 ; } -which $SLEEP >- || { echo missing $SLEEP... >2 ; exit 1 ; } -which $CHVT >- || { echo missing $CHVT... >2 ; exit 1 ; } -which $DATE >- || { echo missing $DATE... >2 ; exit 1 ; } -which $SETTERM >- || { echo missing $SETTERM... >2 ; exit 1 ; } +which $PGREP >/dev/null || { echo missing $PGREP... >2 ; exit 1 ; } +which $PS >/dev/null || { echo missing $PS... >2 ; exit 1 ; } +which $GETOPT >/dev/null || { echo missing $GETOPT... >2 ; exit 1 ; } +which $KILL >/dev/null || { echo missing $KILL... >2 ; exit 1 ; } +which $SLEEP >/dev/null || { echo missing $SLEEP... >2 ; exit 1 ; } +which $CHVT >/dev/null || { echo missing $CHVT... >2 ; exit 1 ; } +which $DATE >/dev/null || { echo missing $DATE... >2 ; exit 1 ; } +which $SETTERM >/dev/null || { echo missing $SETTERM... >2 ; exit 1 ; } @@ -374,7 +374,7 @@ function BuildCommand() { done [ -n "$EPGFILE" ] && VDRCMD="$VDRCMD -E \"$EPGFILE\"" - [ -n "$GRAB" ] && VDRCMD="$VDRCMD -g" + [ -n "$GRAB" ] && VDRCMD="$VDRCMD -g $GRAB" [ -n "$LOGLEVEL" ] && VDRCMD="$VDRCMD -l $LOGLEVEL" [ -n "$LIBDIR" ] && VDRCMD="$VDRCMD -L $LIBDIR" case "$LIRC" in @@ -413,7 +413,7 @@ function BuildCommand() { [ -n "$SHUTDOWN" ] && VDRCMD="$VDRCMD -s \"$SHUTDOWN\"" [ -n "$TERMINAL" ] && VDRCMD="$VDRCMD -t \"$TERMINAL\"" [ -n "$VDRUSER" ] && VDRCMD="$VDRCMD -u \"$VDRUSER\"" - [ -n "$VFAT" ] && VDRCMD="$VDRCMD -v" + [ -n "$VFAT" ] && VDRCMD="$VDRCMD --vfat" [ -n "$VIDEODIR" ] && VDRCMD="$VDRCMD -v \"$VIDEODIR\"" [ -n "$WATCHDOG" ] && VDRCMD="$VDRCMD -w $WATCHDOG" @@ -495,7 +495,7 @@ if [ -n "$HELP" ] ; then fi if [ -n "$VERSION" ] ; then - echo "runvdr version 0.1.0" + echo "runvdr version 0.1.1" exit 0 fi |