1
0
Fork 0

update bootloader signature and suggested firmware

master
Gordon Williams 2023-09-14 10:36:42 +01:00
parent 03e9d0feed
commit eddf7da1bf
2 changed files with 5 additions and 4 deletions

View File

@ -100,7 +100,8 @@ function onInit(device) {
if (crc==2560806221) version = "2v15";
if (crc==2886730689) version = "2v16";
if (crc==156320890) version = "2v17";
if (crc==4012421318) version = "2v18";
if (crc==4012421318) version = "2v18";
if (crc==1856454048) version = "2v19";
if (!ok) {
version += `(⚠ update required)`;
}

View File

@ -16,7 +16,7 @@ if (window.location.host=="banglejs.com") {
'This is not the official Bangle.js App Loader - you can try the <a href="https://banglejs.com/apps/">Official Version</a> here.';
}
var RECOMMENDED_VERSION = "2v18";
var RECOMMENDED_VERSION = "2v19";
// could check http://www.espruino.com/json/BANGLEJS.json for this
// We're only interested in Bangles
@ -236,7 +236,7 @@ window.addEventListener('load', (event) => {
});
});
// Button to install all default apps in one go
el = document.getElementById("installdefault");
if (el) el.addEventListener("click", event=>{
@ -262,7 +262,7 @@ window.addEventListener('load', (event) => {
showToast("Settings reset!", "success");
}, function() { /* cancelled */ });
});
// BLE Compatibility
var selectBLECompat = document.getElementById("settings-ble-compat");