@@ -3,17 +3,17 @@ let appSortInfo = {}; // list of data to sort by, from appdates.csv { created, m
33let appCounts = { } ;
44let files = [ ] ; // list of files on the Espruimo Device
55const 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+ language : "" ,
11+ appsFavoritedInSession : [ ] , // List of apps favorited before database updates
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" buttonregardless 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)
1717} ;
1818let SETTINGS = JSON . parse ( JSON . stringify ( DEFAULTSETTINGS ) ) ; // clone
1919
0 commit comments