Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
3 changes: 2 additions & 1 deletion src/js/data_storage.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
'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/
API_VERSION_ACCEPTED: '1.2.1',
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,
Expand Down