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

master
Richard de Boer 2021-03-23 19:26:56 +01:00
parent 323006f742
commit 169c7b119c
3 changed files with 2 additions and 4 deletions

View File

@ -272,7 +272,7 @@
{ "id": "aclock",
"name": "Analog Clock",
"icon": "clock-analog.png",
"version": "0.13",
"version": "0.14",
"description": "An Analog Clock",
"tags": "clock",
"type":"clock",

View File

@ -8,3 +8,4 @@
0.11: shift face down for widget area, maximize face size, 0 pad single digit date, use locale for date
0.12: Fix regression after 0.11
0.13: Fix broken date padding (fix #376)
0.14: Remove hardcoded hour buzz (you can install widchime if you miss it)

View File

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