diff --git a/apps/iconlaunch/ChangeLog b/apps/iconlaunch/ChangeLog index 6106f2564..b03599ae6 100644 --- a/apps/iconlaunch/ChangeLog +++ b/apps/iconlaunch/ChangeLog @@ -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. diff --git a/apps/iconlaunch/app.js b/apps/iconlaunch/app.js index 3b67b6020..ccc39f3bb 100644 --- a/apps/iconlaunch/app.js +++ b/apps/iconlaunch/app.js @@ -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; diff --git a/apps/iconlaunch/metadata.json b/apps/iconlaunch/metadata.json index fba5888a2..155e7bd9b 100644 --- a/apps/iconlaunch/metadata.json +++ b/apps/iconlaunch/metadata.json @@ -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",