1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-15 20:35:23 +03:00
betaflight-configurator/js/data_storage.js
TheAngularity be148163da removed releaseDate entry
used for expired time check and after pr #209 not more needed
2016-08-13 17:49:34 +02:00

14 lines
508 B
JavaScript
Executable file

'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
};