Fix UTC clock display in non-UTC timezones.
This commit is contained in:
parent
35e5088529
commit
2f2803a775
6
debian/changelog
vendored
6
debian/changelog
vendored
|
@ -1,3 +1,9 @@
|
||||||
|
dump1090-mutability (1.10.3010.14mu-11) UNRELEASED; urgency=medium
|
||||||
|
|
||||||
|
* Fix UTC clock display in non-UTC timezones.
|
||||||
|
|
||||||
|
-- Oliver Jowett <oliver@mutability.co.uk> Sun, 11 Jan 2015 11:53:48 +0000
|
||||||
|
|
||||||
dump1090-mutability (1.10.3010.14mu-10) unstable; urgency=medium
|
dump1090-mutability (1.10.3010.14mu-10) unstable; urgency=medium
|
||||||
|
|
||||||
* Many changes to aircraft.json and the webserver code:
|
* Many changes to aircraft.json and the webserver code:
|
||||||
|
|
|
@ -120,7 +120,7 @@ function initialize() {
|
||||||
skinId: "classic",
|
skinId: "classic",
|
||||||
displayRadius: 40,
|
displayRadius: 40,
|
||||||
showSecondHand: true,
|
showSecondHand: true,
|
||||||
gmtOffset: 0,
|
gmtOffset: "0", // this has to be a string!
|
||||||
showDigital: false,
|
showDigital: false,
|
||||||
logClock: false,
|
logClock: false,
|
||||||
logClockRev: false
|
logClockRev: false
|
||||||
|
@ -131,7 +131,7 @@ function initialize() {
|
||||||
skinId: "classic",
|
skinId: "classic",
|
||||||
displayRadius: 40,
|
displayRadius: 40,
|
||||||
showSecondHand: true,
|
showSecondHand: true,
|
||||||
gmtOffset: 0,
|
gmtOffset: null,
|
||||||
showDigital: false,
|
showDigital: false,
|
||||||
logClock: false,
|
logClock: false,
|
||||||
logClockRev: false
|
logClockRev: false
|
||||||
|
|
Loading…
Reference in a new issue