Skip to content

Commit

Permalink
Merge pull request #2669 from thyttan/quicklaunch
Browse files Browse the repository at this point in the history
[Quicklaunch] Compatibility with 'Fastload Utils' App History feature by checking …
  • Loading branch information
gfwilliams committed Jul 3, 2023
2 parents 78d95a0 + 74091b6 commit 12dbad0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions apps/quicklaunch/ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@
new key names.
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.15: Extension: Compatibility with "Fastload Utils" app history feature.
2 changes: 1 addition & 1 deletion apps/quicklaunch/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) => {
if (e.type == 2) return;
Expand Down
2 changes: 1 addition & 1 deletion apps/quicklaunch/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"id": "quicklaunch",
"name": "Quick Launch",
"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.",
"type": "bootloader",
"tags": "tools, system",
Expand Down

0 comments on commit 12dbad0

Please sign in to comment.