|
1 | 1 | let appJSON = []; // List of apps and info from apps.json |
2 | 2 | let appSortInfo = {}; // list of data to sort by, from appdates.csv { created, modified } |
3 | 3 | let appCounts = {}; |
4 | | -let files = []; // list of files on the Espruimo Device |
| 4 | +let files = []; // list of files on the Espruino Device |
5 | 5 | const DEFAULTSETTINGS = { |
6 | | - pretokenise : true, |
7 | | - minify : false, // disabled by default due to https://github.com/espruino/BangleApps/pull/355#issuecomment-620124162 |
8 | | - settime : false, // Always update time when we connect |
9 | | - favourites : ["launch"], |
10 | | - appsFavoritedInSession : [], |
11 | | - language : "", |
12 | | - bleCompat: false, // 20 byte MTU BLE Compatibility mode |
13 | | - sendUsageStats: true, // send usage stats to banglejs.com |
14 | | - alwaysAllowUpdate : false, // Always show "reinstall app" button regardless of the version |
15 | | - autoReload: false, // Automatically reload watch after app App Loader actions (removes "Hold button" prompt) |
16 | | - noPackets: false, // Enable File Upload Compatibility mode (disables binary packet upload) |
| 6 | + pretokenise : true, |
| 7 | + minify : false, // disabled by default due to https://github.com/espruino/BangleApps/pull/355#issuecomment-620124162 |
| 8 | + settime : false, // Always update time when we connect |
| 9 | + favourites : ["launch"], |
| 10 | + appsFavoritedInSession : [], |
| 11 | + language : "", |
| 12 | + bleCompat: false, // 20 byte MTU BLE Compatibility mode |
| 13 | + sendUsageStats: true, // send usage stats to banglejs.com |
| 14 | + alwaysAllowUpdate : false, // Always show "reinstall app" button regardless of the version |
| 15 | + autoReload: false, // Automatically reload watch after app App Loader actions (removes "Hold button" prompt) |
| 16 | + noPackets: false, // Enable File Upload Compatibility mode (disables binary packet upload) |
17 | 17 | }; |
18 | 18 | let SETTINGS = JSON.parse(JSON.stringify(DEFAULTSETTINGS)); // clone |
19 | 19 |
|
@@ -1578,7 +1578,3 @@ if (btn) btn.addEventListener("click",event=>{ |
1578 | 1578 | Comms.on("data",x=>Espruino.Core.Terminal.outputDataHandler(x)) |
1579 | 1579 | Espruino.Core.Terminal.setInputDataHandler(function(d) { Comms.write(d); }) |
1580 | 1580 | }); |
1581 | | - |
1582 | | - |
1583 | | - |
1584 | | - |
0 commit comments