[Slim-Checkins] r10163 - in /trunk/server: Changelog6.html
Slim/Schema/Track.pm
dsully at svn.slimdevices.com
dsully at svn.slimdevices.com
Tue Oct 3 16:04:26 PDT 2006
Author: dsully
Date: Tue Oct 3 16:04:25 2006
New Revision: 10163
URL: http://svn.slimdevices.com?rev=10163&view=rev
Log:
Bug: 4024
Description: Include TRACKARTIST when displaying 'ARTIST' on the player.
Modified:
trunk/server/Changelog6.html
trunk/server/Slim/Schema/Track.pm
Modified: trunk/server/Changelog6.html
URL: http://svn.slimdevices.com/trunk/server/Changelog6.html?rev=10163&r1=10162&r2=10163&view=diff
==============================================================================
--- trunk/server/Changelog6.html (original)
+++ trunk/server/Changelog6.html Tue Oct 3 16:04:25 2006
@@ -7,6 +7,7 @@
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=3318">#3318</a> - MusicMagic: Songs with national chars get duplicated</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=3696">#3696</a> - Random Mix fails</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=3915">#3915</a> - Softsqueeze animate on screen 2 clears screen 1</li>
+ <li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=4024">#4024</a> - Artist name is not shown in Squeezebox display if ALBUMARTIST is set</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=4071">#4071</a> - Band Names in mp3 Tags don't always work</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=4077">#4077</a> - CUE files YEAR and GENRE not always working</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=4135">#4135</a> - WAV format files play incorrectly</li>
@@ -31,6 +32,7 @@
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=4228">#4228</a> - Fishbone skin status doesn't update from an empty playlist</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=4237">#4237</a> - in Help > Internet Radio there is a dead link to Settings</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=4245">#4245</a> - Pressing PLAY on top level browse pushes right</li>
+ <li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=4270">#4270</a> - Server Information on SB - two items muddled up</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=4281">#4281</a> - Mix do not work with accented characters in filenames and paths</li>
<ul>
</ul>
Modified: trunk/server/Slim/Schema/Track.pm
URL: http://svn.slimdevices.com/trunk/server/Slim/Schema/Track.pm?rev=10163&r1=10162&r2=10163&view=diff
==============================================================================
--- trunk/server/Slim/Schema/Track.pm (original)
+++ trunk/server/Slim/Schema/Track.pm Tue Oct 3 16:04:25 2006
@@ -96,9 +96,8 @@
sub artists {
my $self = shift;
- # XXXX - not sure who the callers are here, and if this should include
- # TRACKARTISTS or not.
- return $self->contributorsOfType('ARTIST')->all;
+ # Bug 4024 - include both ARTIST & TRACKARTIST here.
+ return $self->contributorsOfType(qw(ARTIST TRACKARTIST))->all;
}
sub artistsWithAttributes {
More information about the checkins
mailing list