Made version numbers be 'git' instead of whatever they happened to be last modified during
This commit is contained in:
parent
1cb18a332e
commit
b0fcab382e
|
@ -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`;
|
||||||
|
|
||||||
|
|
2
cdripper
2
cdripper
|
@ -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" .
|
||||||
|
|
2
conv2ogg
2
conv2ogg
|
@ -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
2
cp2dap
|
@ -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 ...";
|
||||||
|
|
||||||
|
|
||||||
|
|
2
dirclean
2
dirclean
|
@ -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)
|
||||||
|
|
2
fixname
2
fixname
|
@ -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);
|
||||||
|
|
|
@ -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";
|
||||||
|
|
||||||
|
|
||||||
|
|
Reference in New Issue
Block a user