Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/betaflight/betaflight-configurator.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Haslinghuis <mark@numloq.nl>2022-02-26 23:06:15 +0300
committerMark Haslinghuis <mark@numloq.nl>2022-06-15 02:39:18 +0300
commit82df203e359274b86b8a68ec7f7d2996909f6522 (patch)
tree8f18b56e564dc2c796fedaee066e30365890bc3f
parentc67360c4a68943400c41260bdb157bb02ef83bc9 (diff)
Update version to 10.9.0 and API 1.45 and enable NW2 features
Update version to 10.9.0 and API 1.45 and enable NW2 features
-rw-r--r--src/js/data_storage.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/js/data_storage.js b/src/js/data_storage.js
index 9c13b0aa..759eb550 100644
--- a/src/js/data_storage.js
+++ b/src/js/data_storage.js
@@ -14,6 +14,7 @@ const API_VERSION_1_41 = '1.41.0';
const API_VERSION_1_42 = '1.42.0';
const API_VERSION_1_43 = '1.43.0';
const API_VERSION_1_44 = '1.44.0';
+const API_VERSION_1_45 = '1.45.0';
const CONFIGURATOR = {
// all versions are specified and compared using semantic versioning http://semver.org/
@@ -21,7 +22,7 @@ const CONFIGURATOR = {
API_VERSION_MIN_SUPPORTED_BACKUP_RESTORE: '1.5.0',
API_VERSION_MIN_SUPPORTED_PID_CONTROLLER_CHANGE: '1.5.0',
BACKUP_FILE_VERSION_MIN_SUPPORTED: '0.55.0', // chrome.runtime.getManifest().version is stored as string, so does this one
- API_VERSION_MAX_SUPPORTED: API_VERSION_1_44,
+ API_VERSION_MAX_SUPPORTED: API_VERSION_1_45,
connectionValid: false,
connectionValidCliOnly: false,