Enable swipe to show widget top bar
parent
aad797d9f7
commit
b60612c0e6
|
|
@ -4,3 +4,4 @@
|
||||||
0.04: Add 5 second count down buzzer
|
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.05: Fix 5 second count down buzzer to be only in the final 5 seconds
|
||||||
0.06: Use default Bangle formatter for booleans
|
0.06: Use default Bangle formatter for booleans
|
||||||
|
0.07: Enable swipe to show widget top bar
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,9 @@ var DEBUG = false;
|
||||||
var FILE = "touchtimer.data.json";
|
var FILE = "touchtimer.data.json";
|
||||||
|
|
||||||
var main = () => {
|
var main = () => {
|
||||||
|
Bangle.loadWidgets();
|
||||||
|
require("widget_utils").swipeOn(); // hide widgets, make them visible with a swipe
|
||||||
|
|
||||||
var settings = readSettings();
|
var settings = readSettings();
|
||||||
|
|
||||||
var button1 = new Button({ x1: 1, y1: 35, x2: 58, y2: 70 }, 1);
|
var button1 = new Button({ x1: 1, y1: 35, x2: 58, y2: 70 }, 1);
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
"id": "touchtimer",
|
"id": "touchtimer",
|
||||||
"name": "Touch Timer",
|
"name": "Touch Timer",
|
||||||
"shortName": "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.",
|
"description": "Quickly and easily create a timer with touch-only input. The time can be easily set with a number pad.",
|
||||||
"icon": "app.png",
|
"icon": "app.png",
|
||||||
"tags": "tools",
|
"tags": "tools",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue