mirror of https://github.com/espruino/BangleApps
revert Bangle.load to load
parent
f969913725
commit
f4f50584a0
|
@ -16,3 +16,5 @@
|
|||
Reset timeout on swipe and drag
|
||||
0.12: Use Bangle.load and Bangle.showClock
|
||||
0.13: Fix automatic switch to clock
|
||||
0.14: Revert use of Bangle.load to classic load calls since widgets would
|
||||
still be loaded when they weren't supposed to.
|
||||
|
|
|
@ -94,7 +94,7 @@
|
|||
const appId = id * appsN + iconN;
|
||||
if( settings.direct && launchCache.apps[appId])
|
||||
{
|
||||
Bangle.load(launchCache.apps[appId].src);
|
||||
load(launchCache.apps[appId].src);
|
||||
return;
|
||||
}
|
||||
if (appId == selectedItem && launchCache.apps[appId]) {
|
||||
|
@ -102,7 +102,7 @@
|
|||
if (!app.src || s.read(app.src) === undefined) {
|
||||
E.showMessage( /*LANG*/ "App Source\nNot found");
|
||||
} else {
|
||||
Bangle.load(app.src);
|
||||
load(app.src);
|
||||
}
|
||||
}
|
||||
selectedItem = appId;
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
"id": "iconlaunch",
|
||||
"name": "Icon Launcher",
|
||||
"shortName" : "Icon launcher",
|
||||
"version": "0.13",
|
||||
"version": "0.14",
|
||||
"icon": "app.png",
|
||||
"description": "A launcher inspired by smartphones, with an icon-only scrollable menu.",
|
||||
"tags": "tool,system,launcher",
|
||||
|
|
Loading…
Reference in New Issue