diff --git a/apps/touchtimer/ChangeLog b/apps/touchtimer/ChangeLog index 203360bd0..96ab3088f 100644 --- a/apps/touchtimer/ChangeLog +++ b/apps/touchtimer/ChangeLog @@ -4,3 +4,4 @@ 0.04: Add 5 second count down buzzer 0.05: Fix 5 second count down buzzer to be only in the final 5 seconds 0.06: Use default Bangle formatter for booleans +0.07: Enable swipe to show widget top bar diff --git a/apps/touchtimer/app.js b/apps/touchtimer/app.js index 18c07feef..f6da821f6 100644 --- a/apps/touchtimer/app.js +++ b/apps/touchtimer/app.js @@ -2,6 +2,9 @@ var DEBUG = false; var FILE = "touchtimer.data.json"; var main = () => { + Bangle.loadWidgets(); + require("widget_utils").swipeOn(); // hide widgets, make them visible with a swipe + var settings = readSettings(); var button1 = new Button({ x1: 1, y1: 35, x2: 58, y2: 70 }, 1); diff --git a/apps/touchtimer/metadata.json b/apps/touchtimer/metadata.json index 8e09a7e34..673293608 100644 --- a/apps/touchtimer/metadata.json +++ b/apps/touchtimer/metadata.json @@ -2,7 +2,7 @@ "id": "touchtimer", "name": "Touch Timer", "shortName": "Touch Timer", - "version": "0.06", + "version": "0.07", "description": "Quickly and easily create a timer with touch-only input. The time can be easily set with a number pad.", "icon": "app.png", "tags": "tools",