Fix midnight

pull/3560/head
Martin Pool 2024-09-06 22:33:54 +02:00
parent bbc9d63d51
commit 85650f6d4b
3 changed files with 4 additions and 3 deletions

View File

@ -1,2 +1,3 @@
0.12: First release
0.13: Fix widgets reappearing
0.14: Fix midnight

View File

@ -214,7 +214,7 @@ function getRoundMinutes(m) {
const nearest = roundTo(5)(m);
return {
minutes: nearest,
minutes: nearest % 60,
offset: m - nearest
};
}

View File

@ -3,7 +3,7 @@
"name": "Dutch Clock",
"shortName":"Dutch Clock",
"icon": "app.png",
"version":"0.13",
"version":"0.14",
"description": "A clock that displays the time the way a Dutch person would respond when asked what time it is.",
"type": "clock",
"tags": "clock,dutch,text",