imp3 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.rdoc +0 -2
- data/VERSION +1 -1
- data/lib/imp3.rb +1 -1
- data/lib/imp3/cli.rb +1 -1
- data/lib/imp3/commands/artists.rb +3 -1
- metadata +1 -1
data/README.rdoc
CHANGED
@@ -131,9 +131,7 @@ iMp3 is an application for batch processing and fixing common issues when dealin
|
|
131
131
|
* Issue solver: Fetch missing album art using images.google.com
|
132
132
|
* Issue solver: Duplicate tracks
|
133
133
|
* Issue solver: Remove sort artist (I personally hate this feature)
|
134
|
-
* Switch to only process current iTunes selection
|
135
134
|
* Switch to skip/force already processed tracks
|
136
|
-
* Cache last.fm requests
|
137
135
|
* Windows support through Win32OLE
|
138
136
|
* (your feature request here)
|
139
137
|
* ...
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.3
|
data/lib/imp3.rb
CHANGED
data/lib/imp3/cli.rb
CHANGED
@@ -26,7 +26,9 @@ module IMP3::Commands::Artists
|
|
26
26
|
end
|
27
27
|
end
|
28
28
|
|
29
|
-
|
29
|
+
next if artist_names[normalized_artist_name].eql?(:"(Skip)")
|
30
|
+
|
31
|
+
unless track.artist.eql?(artist_names[normalized_artist_name])
|
30
32
|
tagged += 1
|
31
33
|
puts "Tagging track #{track.persistent_id} with artist name '#{artist_names[normalized_artist_name]}'"
|
32
34
|
track.artist = ""
|