Skip to content

Commit a52efd7

Browse files
authored
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.
2 parents 4f64639 + 3335de3 commit a52efd7

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"manifest_version": 2,
33
"minimum_chrome_version": "49",
4-
"version": "10.7.0",
4+
"version": "10.8.0",
55
"author": "Betaflight Squad",
66
"name": "Betaflight - Configurator",
77
"short_name": "Betaflight",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "betaflight-configurator",
33
"description": "Crossplatform configuration tool for Betaflight flight control system.",
4-
"version": "10.7.0",
4+
"version": "10.8.0",
55
"main": "main.html",
66
"chromium-args" : "--disable-features=nw2",
77
"default_locale": "en",

src/js/data_storage.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
'use strict';
22

33
const API_VERSION_1_43 = '1.43.0';
4+
const API_VERSION_1_44 = '1.44.0';
45

56
var CONFIGURATOR = {
67
// all versions are specified and compared using semantic versioning http://semver.org/
78
API_VERSION_ACCEPTED: '1.2.1',
89
API_VERSION_MIN_SUPPORTED_BACKUP_RESTORE: '1.5.0',
910
API_VERSION_MIN_SUPPORTED_PID_CONTROLLER_CHANGE: '1.5.0',
1011
BACKUP_FILE_VERSION_MIN_SUPPORTED: '0.55.0', // chrome.runtime.getManifest().version is stored as string, so does this one
11-
API_VERSION_MAX_SUPPORTED: API_VERSION_1_43,
12+
API_VERSION_MAX_SUPPORTED: API_VERSION_1_44,
1213

1314
connectionValid: false,
1415
connectionValidCliOnly: false,

0 commit comments

Comments
 (0)