alarm: allow deletion of expired alarms

master
Rob Pilling 2025-06-04 21:44:36 +01:00
parent 4be6bb2cff
commit 35ab121d7b
3 changed files with 2 additions and 2 deletions

View File

@ -56,3 +56,4 @@
0.50: Bangle.js 2: Long touch of alarm in main menu toggle it on/off. Touching the icon on 0.50: Bangle.js 2: Long touch of alarm in main menu toggle it on/off. Touching the icon on
the right will do the same. the right will do the same.
0.51: Fix long-touch to enable alarm/timer not updating time (fix #3804) 0.51: Fix long-touch to enable alarm/timer not updating time (fix #3804)
0.52: Allow deletion of alarms once they sound (like timers and events)

View File

@ -293,7 +293,6 @@ function showEditAlarmMenu(selectedAlarm, alarmIndex, withDate, scroll, group) {
delete menu[/*LANG*/"Day"]; delete menu[/*LANG*/"Day"];
delete menu[/*LANG*/"Month"]; delete menu[/*LANG*/"Month"];
delete menu[/*LANG*/"Year"]; delete menu[/*LANG*/"Year"];
delete menu[/*LANG*/"Delete After Expiration"];
} }
if (!isNew) { if (!isNew) {

View File

@ -2,7 +2,7 @@
"id": "alarm", "id": "alarm",
"name": "Alarms & Timers", "name": "Alarms & Timers",
"shortName": "Alarms", "shortName": "Alarms",
"version": "0.51", "version": "0.52",
"description": "Set alarms and timers on your Bangle", "description": "Set alarms and timers on your Bangle",
"icon": "app.png", "icon": "app.png",
"tags": "tool,alarm", "tags": "tool,alarm",