diff --git a/cdripper b/cdripper index 5167361..81c3563 100755 --- a/cdripper +++ b/cdripper @@ -10,6 +10,7 @@ # Requires cdparanoia, oggenc, vcfromfilename # # Changelog: +# 0.2.4: Fixed bug - files should get tagged again # 0.2: Aligned version with ds-audiotools # Implemented CDDB support (disabled with --no-cddb) # Ability to preview and edit all text before it's used @@ -32,7 +33,7 @@ use CDDB_get qw( get_cddb ); -$VERSION = "0.2.3"; +$VERSION = "0.2.4"; $HELP_MSG = "# CD Ripper v$VERSION\n\tusage: cdripper [--no-cddb] [-a] " . "[-y] [-o num] [target_directory]\n\n" . "Options:\n-a:\t\tAsk users about multiple CDDB options\n" . @@ -100,7 +101,7 @@ chdir($final_location); warn "Some files were not automatically named." if $unhandledFiles; # Add vorbiscomment data -system('vcfromfilename', @new_tracks); +system('tagfromfilename', @new_tracks); # Clean up chdir($orig_dir);