Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

settings: disable fastload #3500

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions apps/setting/ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -82,3 +82,4 @@ of 'Select Clock'
0.71: Minor code improvements
0.72: Add setting for configuring BLE privacy
0.73: Fix `const` bug / work with fastload
0.74: Disable fastload for settings
2 changes: 1 addition & 1 deletion apps/setting/metadata.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "setting",
"name": "Settings",
"version": "0.73",
"version": "0.74",
"description": "A menu for setting up Bangle.js",
"icon": "settings.png",
"tags": "tool,system",
Expand Down
7 changes: 7 additions & 0 deletions apps/setting/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
Bangle.loadWidgets();
Bangle.drawWidgets();

// disable fastload to ensure settings are applied when we exit the settings app
// or if we load into another app from here
if(global._load){
global.load = global._load;
delete global._load;
}

const BANGLEJS2 = process.env.HWVERSION==2;
const storage = require('Storage');
let settings;
Expand Down
1 change: 1 addition & 0 deletions apps/widdst/ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@
0.04: Give the boot file the highest priority to ensure it runs before sched (fix #2663)
0.05: Tweaks to ensure Gadgetbridge can't overwrite timezone on 2v19.106 and later
0.06: If fastload is present, ensure DST changes are still applied when leaving settings
0.07: Move fastload logic to settings
2 changes: 1 addition & 1 deletion apps/widdst/metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{ "id": "widdst",
"name": "Daylight Saving",
"version":"0.06",
"version":"0.07",
"description": "Widget to set daylight saving rules. Requires Espruino 2v15 or later - see the instructions below for more information.",
"icon": "icon.png",
"type": "widget",
Expand Down
13 changes: 1 addition & 12 deletions apps/widdst/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,8 @@
at: 0
};

var writtenSettings = false;

function writeSettings() {
require('Storage').writeJSON("widdst.json", settings);
writtenSettings = true;
}

function writeSubMenuSettings() {
Expand Down Expand Up @@ -139,15 +136,7 @@
"": {
"Title": /*LANG*/"Daylight Saving"
},
"< Back": () => {
if(writtenSettings && global._load){
// disable fastload to ensure settings are applied
// when we exit the settings app
global.load = global._load;
delete global._load;
}
back();
},
"< Back": back,
/*LANG*/"Enabled": {
value: !!settings.has_dst,
onchange: v => {
Expand Down
Loading