Merge pull request #2059 from mikeller/update_version_to_10_8_0

Updated version to 10.8.0, updated supported API version to 1.44.
10.8-maintenance
Michael Keller 2020-06-16 00:58:55 +12:00 committed by GitHub
commit a52efd7ec8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 3 deletions

View File

@ -1,7 +1,7 @@
{
"manifest_version": 2,
"minimum_chrome_version": "49",
"version": "10.7.0",
"version": "10.8.0",
"author": "Betaflight Squad",
"name": "Betaflight - Configurator",
"short_name": "Betaflight",

View File

@ -1,7 +1,7 @@
{
"name": "betaflight-configurator",
"description": "Crossplatform configuration tool for Betaflight flight control system.",
"version": "10.7.0",
"version": "10.8.0",
"main": "main.html",
"chromium-args" : "--disable-features=nw2",
"default_locale": "en",

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,