2014-08-09 17:38:46 +00:00
|
|
|
'use strict';
|
|
|
|
|
2014-08-10 04:01:44 +00:00
|
|
|
var CONFIGURATOR = {
|
2016-08-13 15:49:34 +00:00
|
|
|
// all versions are specified and compared using semantic versioning http://semver.org/
|
2016-02-22 18:12:43 +00:00
|
|
|
'apiVersionAccepted': '1.2.1',
|
2015-05-07 21:10:26 +00:00
|
|
|
'backupRestoreMinApiVersionAccepted': '1.5.0',
|
|
|
|
'pidControllerChangeMinApiVersion': '1.5.0',
|
|
|
|
'backupFileMinVersionAccepted': '0.55.0', // chrome.runtime.getManifest().version is stored as string, so does this one
|
|
|
|
|
2014-08-10 04:01:44 +00:00
|
|
|
'connectionValid': false,
|
2015-01-06 19:35:58 +00:00
|
|
|
'connectionValidCliOnly': false,
|
2014-08-10 04:01:44 +00:00
|
|
|
'cliActive': false,
|
|
|
|
'cliValid': false
|
|
|
|
};
|