From 208909ce455285049a5a7162d469118f218ed00c Mon Sep 17 00:00:00 2001 From: Jeffrey Middleton Date: Tue, 10 Mar 2009 08:49:45 -0500 Subject: [PATCH] Renamed lyrics plugins Lyrics plugins are tried in alphabetic order by filename. Numeric prefixes make this clearer, and make it easier to keep hd.sh first. I've moved LyricWiki ahead of Leo's Lyrics, mostly because it's easier for a user to fix incorrect lyrics on a wiki, but also because Leo's Lyrics appears to return partial matches if no full match is found (e.g. a song with the same name and completely different artist) --- Makefile.am | 2 +- lyrics/{hd.sh => 01-hd.sh} | 0 lyrics/{lyricswiki.rb => 02-lyricwiki.rb} | 2 +- lyrics/{leoslyrics.py => 03-leoslyrics.py} | 0 4 files changed, 2 insertions(+), 2 deletions(-) rename lyrics/{hd.sh => 01-hd.sh} (100%) rename lyrics/{lyricswiki.rb => 02-lyricwiki.rb} (96%) rename lyrics/{leoslyrics.py => 03-leoslyrics.py} (100%) diff --git a/Makefile.am b/Makefile.am index 0c8de8a..cb3149f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -24,7 +24,7 @@ sparse-check: # lyrics plugins # -lyrics_plugins = hd.sh leoslyrics.py lyricswiki.rb +lyrics_plugins = 01-hd.sh 02-lyricwiki.rb 03-leoslyrics.py if ENABLE_LYRICS_SCREEN diff --git a/lyrics/hd.sh b/lyrics/01-hd.sh similarity index 100% rename from lyrics/hd.sh rename to lyrics/01-hd.sh diff --git a/lyrics/lyricswiki.rb b/lyrics/02-lyricwiki.rb similarity index 96% rename from lyrics/lyricswiki.rb rename to lyrics/02-lyricwiki.rb index 148cd88..a90cb2a 100755 --- a/lyrics/lyricswiki.rb +++ b/lyrics/02-lyricwiki.rb @@ -18,7 +18,7 @@ # # -# Load lyrics from lyricswiki.org +# Load lyrics from lyricwiki.org # require 'uri' diff --git a/lyrics/leoslyrics.py b/lyrics/03-leoslyrics.py similarity index 100% rename from lyrics/leoslyrics.py rename to lyrics/03-leoslyrics.py -- 2.30.2