Re: [SlimDevices: Beta] Digital clock screensaver not showing month

2010-07-21 Thread bklaas

kidstypike;56 Wrote: 
 Version: 7.6.0 - r31079 @ Tue Jul 20 02:10:44 PDT 2010
 Windows XP SP3
 
 Player Model: Controller
 Firmware: 7.6.0-r8965
 
 Screensaver on controller is showing SCREENSAVER MONTH 7 instead of
 month on digital clock (transparent).
 Thanks

fixed in the next 7.6 nightly build r8978, which is available now

cheers,
#!/ben


-- 
bklaas

Logitech Developer: 
Squeezeplay/SqueezeOS/SqueezeboxController/SqueezeCenter
Community Developer: Nokia770Skin

http://www.last.fm/user/bklaas/
'KHAAAN!' (http://khaaan.com/)...'BUNNIES!'
(http://home.pacbell.net/bettychu/2003allbreedbisris/BIS.html)

bklaas's Profile: http://forums.slimdevices.com/member.php?userid=58
View this thread: http://forums.slimdevices.com/showthread.php?t=80586

___
beta mailing list
beta@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/beta


Re: [SlimDevices: Beta] Digital clock screensaver not showing month

2010-07-21 Thread kidstypike

bklaas;563334 Wrote: 
 fixed in the next 7.6 nightly build r8978, which is available now
 
 cheers,
 #!/ben

Thanks, automatic update will probably show up shortly.


-- 
kidstypike

kidstypike 
1xSB3 - 1xDuet - 1xBoom - 1xRadio - 1xTouch

kidstypike's Profile: http://forums.slimdevices.com/member.php?userid=10436
View this thread: http://forums.slimdevices.com/showthread.php?t=80586

___
beta mailing list
beta@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/beta


Re: [SlimDevices: Beta] Digital clock screensaver not showing month

2010-07-21 Thread Phil Leigh

That did fix it... did you also see the missing digit in the clock when
the minutes have a leading zero (that wasn't displayed, so 7:05
appeared as 7: 5)


-- 
Phil Leigh

You want to see the signal path BEFORE it gets onto a CD/vinyl...it
ain't what you'd call minimal...
Touch(wired/XP) - TACT 2.2X (Linear PSU) + Good Vibrations S/W - MF
Triplethreat(Audiocom full mods) - Linn 5103 - Aktiv 5.1 system (6x
LK140's, ESPEK/TRIKAN/KATAN/SEIZMIK 10.5), Townsend Supertweeters, Blue
Jeans Digital,Kimber Speaker  Chord Interconnect cables
Kitchen Boom, Outdoors: SB Radio

Phil Leigh's Profile: http://forums.slimdevices.com/member.php?userid=85
View this thread: http://forums.slimdevices.com/showthread.php?t=80586

___
beta mailing list
beta@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/beta


Re: [SlimDevices: Beta] Digital clock screensaver not showing month

2010-07-21 Thread kidstypike

Phil Leigh;563346 Wrote: 
 That did fix it... did you also see the missing digit in the clock when
 the minutes have a leading zero (that wasn't displayed, so 7:05
 appeared as 7: 5)

Phil

Yes, I saw this last night 11: 3, but had forgotten about it.


-- 
kidstypike

kidstypike 
1xSB3 - 1xDuet - 1xBoom - 1xRadio - 1xTouch

kidstypike's Profile: http://forums.slimdevices.com/member.php?userid=10436
View this thread: http://forums.slimdevices.com/showthread.php?t=80586

___
beta mailing list
beta@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/beta


Re: [SlimDevices: Beta] Digital clock screensaver not showing month

2010-07-21 Thread Phil Leigh

kidstypike;563348 Wrote: 
 Phil
 
 Yes, I saw this last night 11: 3, but had forgotten about it.

Cool - this also seems to be fixed...


-- 
Phil Leigh

You want to see the signal path BEFORE it gets onto a CD/vinyl...it
ain't what you'd call minimal...
Touch(wired/XP) - TACT 2.2X (Linear PSU) + Good Vibrations S/W - MF
Triplethreat(Audiocom full mods) - Linn 5103 - Aktiv 5.1 system (6x
LK140's, ESPEK/TRIKAN/KATAN/SEIZMIK 10.5), Townsend Supertweeters, Blue
Jeans Digital,Kimber Speaker  Chord Interconnect cables
Kitchen Boom, Outdoors: SB Radio

Phil Leigh's Profile: http://forums.slimdevices.com/member.php?userid=85
View this thread: http://forums.slimdevices.com/showthread.php?t=80586

___
beta mailing list
beta@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/beta


Re: [SlimDevices: Beta] Digital clock screensaver not showing month

2010-07-21 Thread bklaas

Just for an FYI, the checkin that broke this was an attempt by me to
reduce the number of calls to os.date() and replace them with
intelligently constructed string.format() calls. Unfortunately they
turned out to be not so intelligent at adding leading zeroes :-/

What was very odd is that everything worked on desktop squeezeplay,
only broken on the platform itself, which leads me to the conclusion
that Lua's string.format() is not consistent across platforms.

Regardless, should be all fixed up now by cobbling the formatting by
hand instead of string.format(). Let me know if anything else looks
broken on the clocks in the newest 7.6 builds.

cheers,
#!/ben


-- 
bklaas

Logitech Developer: 
Squeezeplay/SqueezeOS/SqueezeboxController/SqueezeCenter
Community Developer: Nokia770Skin

http://www.last.fm/user/bklaas/
'KHAAAN!' (http://khaaan.com/)...'BUNNIES!'
(http://home.pacbell.net/bettychu/2003allbreedbisris/BIS.html)

bklaas's Profile: http://forums.slimdevices.com/member.php?userid=58
View this thread: http://forums.slimdevices.com/showthread.php?t=80586

___
beta mailing list
beta@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/beta


Re: [SlimDevices: Beta] Digital clock screensaver not showing month

2010-07-21 Thread Phil Leigh

bklaas;563358 Wrote: 
 Just for an FYI, the checkin that broke this was an attempt by me to
 reduce the number of calls to os.date() and replace them with
 intelligently constructed string.format() calls. Unfortunately they
 turned out to be not so intelligent at adding leading zeroes :-/
 
 What was very odd is that everything worked on desktop squeezeplay,
 only broken on the platform itself, which leads me to the conclusion
 that Lua's string.format() is not consistent across platforms.
 
 Regardless, should be all fixed up now by cobbling the formatting by
 hand instead of string.format(). Let me know if anything else looks
 broken on the clocks in the newest 7.6 builds.
 
 cheers,
 #!/ben

Looks good so far Ben... I've been studying the clock for the last 76
minutes...


-- 
Phil Leigh

You want to see the signal path BEFORE it gets onto a CD/vinyl...it
ain't what you'd call minimal...
Touch(wired/XP) - TACT 2.2X (Linear PSU) + Good Vibrations S/W - MF
Triplethreat(Audiocom full mods) - Linn 5103 - Aktiv 5.1 system (6x
LK140's, ESPEK/TRIKAN/KATAN/SEIZMIK 10.5), Townsend Supertweeters, Blue
Jeans Digital,Kimber Speaker  Chord Interconnect cables
Kitchen Boom, Outdoors: SB Radio

Phil Leigh's Profile: http://forums.slimdevices.com/member.php?userid=85
View this thread: http://forums.slimdevices.com/showthread.php?t=80586

___
beta mailing list
beta@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/beta