Merge pull request #2130 from Rarder44/new_master
fix for https://github.com/espruino/BangleApps/issues/2128master
commit
e228e7313e
|
|
@ -8,3 +8,4 @@
|
||||||
0.08: removed unused font, fix autocycle, imported suncalc and trimmed, removed pedometer dependency, "tap to cycle" setting
|
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.09: fix battery icon size
|
||||||
0.10: Tell clock widgets to hide.
|
0.10: Tell clock widgets to hide.
|
||||||
|
0.11: fix issue https://github.com/espruino/BangleApps/issues/2128 (#2128) ( settings undefined )
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
"id": "rebble",
|
"id": "rebble",
|
||||||
"name": "Rebble Clock",
|
"name": "Rebble Clock",
|
||||||
"shortName": "Rebble",
|
"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",
|
"description": "A Pebble style clock, with configurable background, three sidebars including steps, day, date, sunrise, sunset, long live the rebellion",
|
||||||
"readme": "README.md",
|
"readme": "README.md",
|
||||||
"icon": "rebble.png",
|
"icon": "rebble.png",
|
||||||
|
|
|
||||||
|
|
@ -292,6 +292,9 @@ function queueDraw() {
|
||||||
|
|
||||||
|
|
||||||
log_debug("starting..");
|
log_debug("starting..");
|
||||||
|
loadSettings();
|
||||||
|
loadLocation();
|
||||||
|
|
||||||
|
|
||||||
if(settings.autoCycle || settings.sideTap==0)
|
if(settings.autoCycle || settings.sideTap==0)
|
||||||
{
|
{
|
||||||
|
|
@ -314,8 +317,6 @@ Bangle.loadWidgets();
|
||||||
* area to the top bar doesn't get cleared.
|
* area to the top bar doesn't get cleared.
|
||||||
*/
|
*/
|
||||||
for (let wd of WIDGETS) {wd.draw=()=>{};wd.area="";}
|
for (let wd of WIDGETS) {wd.draw=()=>{};wd.area="";}
|
||||||
loadSettings();
|
|
||||||
loadLocation();
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue