1
0
Fork 0
mirror of https://github.com/iNavFlight/inav-configurator.git synced 2025-07-15 20:35:19 +03:00

pulling main switch on compatibility (this should go live on November 1st 2014)

This commit is contained in:
cTn 2014-10-12 18:35:32 +02:00
parent b35590f052
commit 81a2872360
4 changed files with 7 additions and 31 deletions

View file

@ -2,7 +2,7 @@
var CONFIGURATOR = { var CONFIGURATOR = {
'releaseDate': 1412546773959, // new Date().getTime() - 10.06.2014 'releaseDate': 1412546773959, // new Date().getTime() - 10.06.2014
'firmwareVersionAccepted': 2.3, 'firmwareVersionAccepted': 2.31,
'connectionValid': false, 'connectionValid': false,
'cliActive': false, 'cliActive': false,
'cliValid': false 'cliValid': false

View file

@ -139,12 +139,6 @@ function onOpen(openInfo) {
MSP.send_message(MSP_codes.MSP_IDENT, false, false, function () { MSP.send_message(MSP_codes.MSP_IDENT, false, false, function () {
GUI.timeout_remove('connecting'); // kill connecting timer GUI.timeout_remove('connecting'); // kill connecting timer
// TODO clean / remove this after compatibility period is over
if (!bit_check(CONFIG.capability, 30)) {
GUI.log('Configurator detected that you are running an old version of the firmware and will operate in compatibility mode,\
to enjoy all of the recently implemented features, please <strong>update</strong> your firmware.');
if (CONFIG.version >= CONFIGURATOR.firmwareVersionAccepted) { if (CONFIG.version >= CONFIGURATOR.firmwareVersionAccepted) {
CONFIGURATOR.connectionValid = true; CONFIGURATOR.connectionValid = true;
@ -154,18 +148,6 @@ function onOpen(openInfo) {
GUI.log(chrome.i18n.getMessage('firmwareVersionNotSupported', [CONFIGURATOR.firmwareVersionAccepted])); GUI.log(chrome.i18n.getMessage('firmwareVersionNotSupported', [CONFIGURATOR.firmwareVersionAccepted]));
$('div#port-picker a.connect').click(); // disconnect $('div#port-picker a.connect').click(); // disconnect
} }
} else {
MSP.send_message(MSP_codes.MSP_BUILDINFO, false, false, function () {
googleAnalytics.sendEvent('Firmware', 'Using', CONFIG.buildInfo);
GUI.log('Running firmware released on: <strong>' + CONFIG.buildInfo + '</strong>');
// continue as usually
CONFIGURATOR.connectionValid = true;
$('div#port-picker a.connect').text(chrome.i18n.getMessage('disconnect')).addClass('active');
$('#tabs li a:first').click();
});
}
}); });
}); });
} else { } else {

View file

@ -169,7 +169,6 @@
text-align: center; text-align: center;
} }
.tab-motor_outputs .motor_testing { .tab-motor_outputs .motor_testing {
display: none;
margin-top: 15px; margin-top: 15px;
} }
.tab-motor_outputs .motor_testing .left { .tab-motor_outputs .motor_testing .left {

View file

@ -233,11 +233,6 @@ TABS.motor_outputs.initialize = function (callback) {
accel_offset_established = false; accel_offset_established = false;
}); });
// if CAP_DYNBALANCE is true
if (bit_check(CONFIG.capability, 2)) {
$('div.motor_testing').show();
}
var number_of_valid_outputs = (MOTOR_DATA.indexOf(0) > -1) ? MOTOR_DATA.indexOf(0) : 8; var number_of_valid_outputs = (MOTOR_DATA.indexOf(0) > -1) ? MOTOR_DATA.indexOf(0) : 8;
var motors_wrapper = $('.motors .bar-wrapper'), var motors_wrapper = $('.motors .bar-wrapper'),