diff --git a/apps/fwupdate/custom.html b/apps/fwupdate/custom.html
index 6dcaad035..ae955aded 100644
--- a/apps/fwupdate/custom.html
+++ b/apps/fwupdate/custom.html
@@ -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)`;
}
diff --git a/loader.js b/loader.js
index 77a186af7..5f2283282 100644
--- a/loader.js
+++ b/loader.js
@@ -16,7 +16,7 @@ if (window.location.host=="banglejs.com") {
'This is not the official Bangle.js App Loader - you can try the Official Version 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");