1
0
Fork 0
mirror of https://github.com/iNavFlight/inav-configurator.git synced 2025-07-13 03:19:54 +03:00
inav-configurator/js/data_storage.js
Marcelo Bezerra 89f6900478 Pushing version up again.
Looks like 8.1 was merged to master and rolled
the version back
2025-02-20 15:22:28 +01:00

14 lines
443 B
JavaScript
Executable file

'use strict';
var CONFIGURATOR = {
// all versions are specified and compared using semantic versioning http://semver.org/
'minfirmwareVersionAccepted': '9.0.0',
'maxFirmwareVersionAccepted': '10.0.0', // Condition is < (lt) so we accept all in 8.x branch
'connectionValid': false,
'connectionValidCliOnly': false,
'cliActive': false,
'cliValid': false,
'connection': false
};
module.exports = CONFIGURATOR;