quicklaunch:compat w app history of Fastload Utils

Compatibility with 'Fastload Utils' App History feature by checking the trace on launch

remove some spaces

correct logic for checking the trace at launch `!=` -> `==`
pull/2669/head
thyttan 2023-03-31 22:16:17 +02:00
parent 2cd1caa2bd
commit 74091b6659
3 changed files with 3 additions and 2 deletions

View File

@ -15,3 +15,4 @@
new key names. new key names.
0.13: Touch and hold to pause the timeout to clock temporarily. 0.13: Touch and hold to pause the timeout to clock temporarily.
0.14: Extension: Don't go down a path if nothing waits at the end. Revisit the current intersection instead. 0.14: Extension: Don't go down a path if nothing waits at the end. Revisit the current intersection instead.
0.15: Extension: Compatibility with "Fastload Utils" app history feature.

View File

@ -24,7 +24,7 @@
} }
}; };
let trace = settings.trace; let trace = (settings[settings.trace+"app"].src=="quicklaunch.app.js") ? settings.trace : settings.trace.substring(0, settings.trace.length-1); // If the stored trace leads beyond extension screens, walk back to the last extension screen. Compatibility with "Fastload Utils" App History feature.
let touchHandler = (_,e) => { let touchHandler = (_,e) => {
if (e.type == 2) return; if (e.type == 2) return;

View File

@ -2,7 +2,7 @@
"id": "quicklaunch", "id": "quicklaunch",
"name": "Quick Launch", "name": "Quick Launch",
"icon": "app.png", "icon": "app.png",
"version": "0.14", "version": "0.15",
"description": "Tap or swipe left/right/up/down on your clock face to launch up to five apps of your choice. Configurations can be accessed through Settings->Apps.", "description": "Tap or swipe left/right/up/down on your clock face to launch up to five apps of your choice. Configurations can be accessed through Settings->Apps.",
"type": "bootloader", "type": "bootloader",
"tags": "tools, system", "tags": "tools, system",