musicfix

music file renamer and tagger
git clone git://git.2f30.org/musicfix
Log | Files | Refs | README | LICENSE

commit b58c50a3e394b3cee49fd77c97841aa189397973
parent 918d49b3256e8221f54ecc1ca5dcea4e6f773e65
Author: lostd <lostd@2f30.org>
Date:   Tue,  6 Aug 2013 10:42:41 +0000

More release format abbreviations

Diffstat:
Mbin/musicfix | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/bin/musicfix b/bin/musicfix @@ -104,11 +104,14 @@ def mkshort n n = n.gsub "Album CD", "CD" n = n.gsub "LP Vinyl", "LP" n = n.gsub "EP Vinyl", "EP" + n = n.gsub "Mini-Album Vinyl", "MiniLP" n = n.gsub '12" Vinyl', '12inch' n = n.gsub '7" Vinyl', '7inch' n = n.gsub "Cassette", "Cass" n = n.gsub "Limited Edition", "Ltd" n = n.gsub "Compilation", "Comp" + n = n.gsub "Reissue", "RE" + n = n.gsub "Enhanced", "Enh" n = n.gsub "Unofficial Release", "Unofficial" end