Made version numbers be 'git' instead of whatever they happened to be last modified during

This commit is contained in:
Anna Rose 2011-06-16 17:23:36 -04:00
parent 1cb18a332e
commit b0fcab382e
7 changed files with 7 additions and 7 deletions

View File

@ -14,7 +14,7 @@
# 0.1.1: Added command-line wrapper, cleaned code # 0.1.1: Added command-line wrapper, cleaned code
# 0.1: Initial code # 0.1: Initial code
$VERSION = "0.2.3"; $VERSION = "git";
$HELP_MSG = "# Music Burner v$VERSION\n\tusage: burnmusic <cdspeed> <device> <files>\n"; $HELP_MSG = "# Music Burner v$VERSION\n\tusage: burnmusic <cdspeed> <device> <files>\n";
$temp_dir = '/tmp/burnmusic-' . `whoami`; $temp_dir = '/tmp/burnmusic-' . `whoami`;

View File

@ -36,7 +36,7 @@
use CDDB_get qw( get_cddb ); use CDDB_get qw( get_cddb );
$VERSION = "0.2.4"; $VERSION = "git";
$HELP_MSG = "# CD Ripper v$VERSION\n\tusage: cdripper [--no-cddb] [-a] " . $HELP_MSG = "# CD Ripper v$VERSION\n\tusage: cdripper [--no-cddb] [-a] " .
"[-y] [-T] [-0] [-o num] [target_directory]\n\n" . "[-y] [-T] [-0] [-o num] [target_directory]\n\n" .
"Options:\n-a:\t\tAsk users about multiple CDDB options\n" . "Options:\n-a:\t\tAsk users about multiple CDDB options\n" .

View File

@ -26,7 +26,7 @@
# changed to use command-line args # changed to use command-line args
# 0.0.1: Initial bash script # 0.0.1: Initial bash script
$VERSION = "0.2.4"; $VERSION = "git";
$HELP_MSG = "# Audio file - Ogg Converter v$VERSION\n\tusage: conv2ogg [-q] <files>\n" . $HELP_MSG = "# Audio file - Ogg Converter v$VERSION\n\tusage: conv2ogg [-q] <files>\n" .
"\t\t-q <number>: Use quality for encoding. Default 10"; "\t\t-q <number>: Use quality for encoding. Default 10";
$DEC_ERROR = "Couldn't find a decoder to use. Please install one of mplayer, mpg321, or mpg123"; $DEC_ERROR = "Couldn't find a decoder to use. Please install one of mplayer, mpg321, or mpg123";

2
cp2dap
View File

@ -7,7 +7,7 @@
# Changelog: # Changelog:
# 0.2.4: Initial release # 0.2.4: Initial release
$VERSION = "0.2.4"; $VERSION = "git";
$HELP_MSG = "# Copy files to DAP, converting flac to ogg v$VERSION\n\tusage: copy_top_dap artist1/album1 artist2/album2 ..."; $HELP_MSG = "# Copy files to DAP, converting flac to ogg v$VERSION\n\tusage: copy_top_dap artist1/album1 artist2/album2 ...";

View File

@ -15,7 +15,7 @@
# 0.2 - aligned version with ds-audiotools # 0.2 - aligned version with ds-audiotools
# 0.1 - initial version # 0.1 - initial version
$VERSION = "0.2.3"; $VERSION = "git";
$HELP_MSG = "# dirclean v$VERSION\n\tusage: dirclean <directory>\n\t"; $HELP_MSG = "# dirclean v$VERSION\n\tusage: dirclean <directory>\n\t";
foreach (@ARGV) foreach (@ARGV)

View File

@ -27,7 +27,7 @@
# 0.0.2: Takes command-line arguments instead of parsing entire directory # 0.0.2: Takes command-line arguments instead of parsing entire directory
# 0.0.1: basic code in place # 0.0.1: basic code in place
$VERSION = "0.2.4"; $VERSION = "git";
$HELP_MSG = "# Filename fixer v$VERSION\n\tusage: fixname <files>\n\t fixname -o \"name\"\n"; $HELP_MSG = "# Filename fixer v$VERSION\n\tusage: fixname <files>\n\t fixname -o \"name\"\n";
die $HELP_MSG if ($#ARGV < 0); die $HELP_MSG if ($#ARGV < 0);

View File

@ -30,7 +30,7 @@
# 0.1.1: added version variable # 0.1.1: added version variable
# 0.1: initial implementation # 0.1: initial implementation
$VERSION = "0.2.4"; $VERSION = "git";
$HELP_MSG = "Vorbiscomment from Filename $VERSION\n\tusage: vcfromfilename [options] <files>\n\nValid options:\n\t-n\tOnly set the track numbers\n\t-0\tPreserve leading 0s in track numbers\n\t-T: Write tag names (not tag content) in all caps\n"; $HELP_MSG = "Vorbiscomment from Filename $VERSION\n\tusage: vcfromfilename [options] <files>\n\nValid options:\n\t-n\tOnly set the track numbers\n\t-0\tPreserve leading 0s in track numbers\n\t-T: Write tag names (not tag content) in all caps\n";