> Sorry I started such a fracas.

ok, ok... as an offer of conciliation :-). Here are the two minor changes  
you'd have to make to your Slim/Utils/DateTime.pm file to achieve your  
goal. Basically the second change would have been enough for the _date_  
format. But to have it full size on your display you'll have to manipulate  
the _time_ format (as only this is displayed in single line mode). Thus...  
let's add that format string to both, date and time formats. Just add the  
lines marked with a + at the appropriate place within that file:

@@ -152,6 +157,7 @@
                # no idea what the separator between minutes and seconds should 
be here
                ,q(|%Hh%M:%S)           => q{h'h'mm:ss (24h 03h00:00 15h00:00)}
                ,q(|%Hh%M)              => q{h'h'mm (24h 03h00 15h00)}
+               ,q(%A)   => q(WWWW)
        };
  }

@@ -179,6 +185,7 @@
                q(%a, |%d. %b %Y)  => q(WWW, DD. MMM YYYY),
                q(%A |%d %B %Y)    => q(WWWW DD MMMM YYYY),
                q(%A |%d. %B %Y)   => q(WWWW DD. MMMM YYYY),
+               q(%A)   => q(WWWW),
                q(%a |%d %b %Y)    => q(WWW DD MMM YYYY),
                q(%a |%d. %b %Y)   => q(WWW DD. MMM YYYY),
                # Japanese styles

No Perl knowledge needed :-)

-- 

Michael

-----------------------------------------------------------------
http://www.herger.net/SlimCD - your SlimServer on a CD
http://www.herger.net/slim - AlbumReview, Biography, MusicInfoSCR
_______________________________________________
plugins mailing list
[email protected]
http://lists.slimdevices.com/lists/listinfo/plugins

Reply via email to