From 262ac59a65fa1ecbe177172db4e4f6078a7c9bb2 Mon Sep 17 00:00:00 2001 From: Rarder44 Date: Mon, 19 Sep 2022 00:06:42 +0200 Subject: [PATCH 1/2] fix for https://github.com/espruino/BangleApps/issues/2128 --- apps/rebble/rebble.app.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/apps/rebble/rebble.app.js b/apps/rebble/rebble.app.js index 1102aa93f..2ddd3a9b9 100644 --- a/apps/rebble/rebble.app.js +++ b/apps/rebble/rebble.app.js @@ -292,6 +292,9 @@ function queueDraw() { log_debug("starting.."); +loadSettings(); +loadLocation(); + if(settings.autoCycle || settings.sideTap==0) { @@ -314,8 +317,6 @@ Bangle.loadWidgets(); * area to the top bar doesn't get cleared. */ for (let wd of WIDGETS) {wd.draw=()=>{};wd.area="";} -loadSettings(); -loadLocation(); From b1aacdf0e7c64877a66774e9ca88d9bbab813c7b Mon Sep 17 00:00:00 2001 From: Rarder44 Date: Mon, 19 Sep 2022 00:13:28 +0200 Subject: [PATCH 2/2] update changelog and metadata --- apps/rebble/ChangeLog | 1 + apps/rebble/metadata.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/rebble/ChangeLog b/apps/rebble/ChangeLog index cb2108e8b..c392cc74b 100644 --- a/apps/rebble/ChangeLog +++ b/apps/rebble/ChangeLog @@ -8,3 +8,4 @@ 0.08: removed unused font, fix autocycle, imported suncalc and trimmed, removed pedometer dependency, "tap to cycle" setting 0.09: fix battery icon size 0.10: Tell clock widgets to hide. +0.11: fix issue https://github.com/espruino/BangleApps/issues/2128 (#2128) ( settings undefined ) \ No newline at end of file diff --git a/apps/rebble/metadata.json b/apps/rebble/metadata.json index 91d66df3d..9134ccd23 100644 --- a/apps/rebble/metadata.json +++ b/apps/rebble/metadata.json @@ -2,7 +2,7 @@ "id": "rebble", "name": "Rebble Clock", "shortName": "Rebble", - "version": "0.10", + "version": "0.11", "description": "A Pebble style clock, with configurable background, three sidebars including steps, day, date, sunrise, sunset, long live the rebellion", "readme": "README.md", "icon": "rebble.png",