Bug 4053 - SB2 shows "Squeezebox2/v3" when turning on in single line mode
: SB2 shows "Squeezebox2/v3" when turning on in single line mode
Status: RESOLVED FIXED
Product: Logitech Media Server
Classification: Unclassified
Component: Player UI
: 6.5b1
: PC Windows XP
: P2 trivial (vote)
: ---
Assigned To: KDF
:
Depends on:
Blocks:
  Show dependency treegraph
 
Reported: 2006-09-05 11:01 UTC by Nigel Birch
Modified: 2009-09-08 09:28 UTC (History)
2 users (show)

See Also:
Category: ---


Attachments
two line welcome (759 bytes, patch)
2006-09-05 23:33 UTC, KDF
Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Nigel Birch 2006-09-05 11:01:11 UTC
This is with SlimServer v6.5b1 - 9424 (Windows XP - EN - cp1252, Perl Version:
v5.8.7 MSWin32-x86-multi-thread, MySQL Version: 5.0.22-community-nt).

Another small might-might-not-be-a-bug one.

When turning on a Squeezebox2, in double line mode (standard font) it displays "WELCOME TO SQUEEZEBOX" and "Free your music".  However, when in single line mode (full font), it displays "Squeezebox2/v3".  Given that SB2/SB3 are called just "Squeezebox" elsewhere, I think it'd make more sense to display just "Squeezebox".

To reproduce:

1. With a Squeezebox2, turn player on.
2. Set size to single line (full font).
3. Turn player off.
4. Turn player on.  "Squeezebox2/v3" is displayed.

Thanks.
Comment 1 KDF 2006-09-05 11:14:57 UTC
This is by design, Slim::Player::Player::power(), line 431 of Player\Player.pm:

$oneline ? $client->string($client->model) : $client->string('FREE_YOUR_MUSIC') ]

if the setting for size is to show only one line, the player model is shown.

for playermodel SQUEEZEBOX2, this string becomes "Squeezebox2/v3"

for WELCOME_TO_SQUEEZEBOX2, this gives a string of "Welcome to Squeezebox"

given that all other WELCOME_TO_(playermodel) strings have specific references to the player model, 
the WELCOME_TO_SQUEEZEBOX2 string could probably change to "Welcome to Squeezebox2/v3"

basically a more generallised scope of bug 3993.
Comment 2 Nigel Birch 2006-09-05 11:22:49 UTC
Thanks, KDF.

Yes, that makes sense either way.  Perhaps I should have said that they're inconsistent, instead.
Comment 3 KDF 2006-09-05 20:46:21 UTC
cc'ing Dean for comments.
Comment 4 Blackketter Dean 2006-09-05 21:24:35 UTC
Well "Squeezebox2/v3" doesn't mean anything and looks bad.

I suggest that either we show the full welcome text (preferred) in the small font size or we just skip the message altogether. (accpetable)

Comment 5 KDF 2006-09-05 23:33:40 UTC
Created attachment 1500 [details]
two line welcome

ok, here's the patch to make it a two-line welcome.  I would personally prefer that to a blank screen.  Although, it would go to the normal start display after powering on anyway.  This uses the small fonts for each type of display.
Comment 6 Blackketter Dean 2006-09-06 07:49:09 UTC
Subject: Re:  SB2 shows "Squeezebox2/v3" when turning on in single line mode

Awesome, please commit.

Comment 7 Adrian Smith 2006-09-08 11:13:35 UTC
Probably want to make the fonts 'standard' and 'medium' to match up with the default fonts for each the player types?
Comment 8 KDF 2006-09-08 11:33:33 UTC
good point.  I'll take care of it this evening. (not sure why I haven't been getting cc's on this one)
Comment 9 KDF 2006-09-08 18:01:26 UTC
fixed in trunk at change 9515, 6.5 at change 9516
Comment 10 Nigel Birch 2006-09-09 01:42:27 UTC
Thanks.