Just downloaded this and it's only showing the time not the date or the weather.
jsmorley's avatar
Ah, you found a bug when the day of the month is less than 10. 

Change line 148 in the .lua file from:

    dayText = dayTable[dayNumber]

to:

    dayText = dayTable[tostring(tonumber(dayNumber))]

I will update the .rmskin sometime today.