Nothing of importance, just curious:
when I update a filterlist I get a message like "Last download: <date> 11:03 (success)". Where does the time come from? I noticed that it shows one hour off (11.03 when it's acutally 12:03). My system clock is on 12:03.
Yep, looks like the Javascript date function doesn't take account of the Daylight Saving Time.
javascript:alert(new Date().getTimezoneOffset())
shows a timezone offset to GMT of 60 min but we switched from MEZ to MESZ (GMT+1 to GMT+2) last week.
Maybe you didn't configure Windows to switch to daylight saving time automatically - I had this as well once and was wondering why Mozilla Mail was dating my mails wrongly.
Ha! Found it!
My daylight saving time settings were correct, the culprit was an environment variable.
On my system was a setting
TZ=MET-1DST
This must have been there for years, I can remember that I set it myself, but can't remember why
I guess it was an old pgp installation or something that required this.
I deleted that variable and now javascript displays the time correctly. *cheer*