1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-21 23:35:22 +03:00

Move src files

This commit is contained in:
Bas Delfos 2018-01-21 17:09:36 +01:00
parent aab2a993c8
commit 24c81375a4
371 changed files with 120 additions and 120 deletions

14
src/js/data_storage.js Executable file
View file

@ -0,0 +1,14 @@
'use strict';
var CONFIGURATOR = {
// all versions are specified and compared using semantic versioning http://semver.org/
'apiVersionAccepted': '1.2.1',
'backupRestoreMinApiVersionAccepted': '1.5.0',
'pidControllerChangeMinApiVersion': '1.5.0',
'backupFileMinVersionAccepted': '0.55.0', // chrome.runtime.getManifest().version is stored as string, so does this one
'connectionValid': false,
'connectionValidCliOnly': false,
'cliActive': false,
'cliValid': false
};