1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-20 14:55:15 +03:00

Updated version to 10.8.0, updated supported API version to 1.44.

This commit is contained in:
mikeller 2020-06-14 19:10:39 +12:00
parent 4f64639036
commit 3335de3a9e
3 changed files with 4 additions and 3 deletions

View file

@ -1,6 +1,7 @@
'use strict';
const API_VERSION_1_43 = '1.43.0';
const API_VERSION_1_44 = '1.44.0';
var CONFIGURATOR = {
// all versions are specified and compared using semantic versioning http://semver.org/
@ -8,7 +9,7 @@ var 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_43,
API_VERSION_MAX_SUPPORTED: API_VERSION_1_44,
connectionValid: false,
connectionValidCliOnly: false,