dotclock: remove hardcoded hour buzz (we have widchime now)

master
Richard de Boer 2021-03-23 19:28:57 +01:00
parent ac07a6d4da
commit d63a801650
3 changed files with 3 additions and 5 deletions

View File

@ -1255,7 +1255,7 @@
{ "id": "dotclock",
"name": "Dot Clock",
"icon": "clock-dot.png",
"version":"0.01",
"version":"0.02",
"description": "A Minimal Dot Analog Clock",
"tags": "clock",
"type":"clock",

View File

@ -1 +1,2 @@
0.01: Based on the Analog Clock app, minimal dot interface
0.01: Based on the Analog Clock app, minimal dot
0.02: Remove hardcoded hour buzz (you can install widchime if you miss it)

View File

@ -128,9 +128,6 @@ const onMinute = () => {
g.setColor(1, 0.9, 0.9);
// Minute
minDot((360 * currentDate.getMinutes()) / 60,3);
if (currentDate.getHours() >= 0 && currentDate.getMinutes() === 0) {
Bangle.buzz();
}
drawDate();
};