diff --git a/apps/smpltmr/ChangeLog b/apps/smpltmr/ChangeLog index c3f069428..55c5fc4f6 100644 --- a/apps/smpltmr/ChangeLog +++ b/apps/smpltmr/ChangeLog @@ -7,4 +7,5 @@ 0.07: Update clock_info to avoid a redraw 0.08: Timer ClockInfo now updates once a minute 0.09: Timer ClockInfo resets to timer menu when blurred -0.10: Timer ClockInfo now uses +- icons, and changes timer from 'T-5 min' to just '5 min' to aid readability \ No newline at end of file +0.10: Timer ClockInfo now uses +- icons, and changes timer from 'T-5 min' to just '5 min' to aid readability +0.11: Fix to handle updated firmware on fw 2v25 (or cutting edge >2v24.164), btn -> btnRelease. The timer would fire on long press before the watch reset. diff --git a/apps/smpltmr/app.js b/apps/smpltmr/app.js index 4e95d3a30..a158e5380 100644 --- a/apps/smpltmr/app.js +++ b/apps/smpltmr/app.js @@ -177,7 +177,7 @@ Bangle.setUI({ mode : "custom", touch : function(n,e) {onTouch(n,e);}, drag : function(e) {onDrag(e);}, - btn : function(n) {onButton();}, + btnRelease : function(n) {onButton();}, }); g.clearRect(Bangle.appRect); diff --git a/apps/smpltmr/metadata.json b/apps/smpltmr/metadata.json index 2f33f07b9..93205e3df 100644 --- a/apps/smpltmr/metadata.json +++ b/apps/smpltmr/metadata.json @@ -2,7 +2,7 @@ "id": "smpltmr", "name": "Simple Timer", "shortName": "Simple Timer", - "version": "0.10", + "version": "0.11", "description": "A very simple app to start a timer.", "icon": "app.png", "tags": "tool,alarm,timer,clkinfo",