diff --git a/locales/en/messages.json b/locales/en/messages.json index df32258d..d0482008 100644 --- a/locales/en/messages.json +++ b/locales/en/messages.json @@ -540,8 +540,8 @@ }, "infoVersions": { - "message" : "Running - OS: {{operatingSystem}}, Chrome: {{chromeVersion}}, Configurator: {{configuratorVersion}}", - "description": "Message that appears in the GUI log panel indicating operating system, Chrome version and Configurator version" + "message" : "Running - OS: {{operatingSystem}}, Configurator: {{configuratorVersion}}", + "description": "Message that appears in the GUI log panel indicating operating system and Configurator version" }, "buildServerLoaded": { "message" : "Loaded builds information for $1 from build server." @@ -3090,13 +3090,13 @@ "message": "Message:" }, "firmwareFlasherWarningText": { - "message": "Please do not try to flash non-Betaflight hardware with this firmware flasher.
Do not disconnect the board or turn off your computer while flashing.

Note: STM32 bootloader is stored in ROM, it cannot be bricked.
Note: Auto-Connect is always disabled while you are inside firmware flasher.
Note: Make sure you have a backup; some upgrades/downgrades will wipe your configuration.
Note: If you have problems flashing try disconnecting all cables from your FC first, try rebooting, upgrade chrome, upgrade drivers.
Note: When flashing boards that have directly connected USB sockets (most newer boards) ensure you have read the USB Flashing section of the Betaflight manual and have the correct software and drivers installed" + "message": "Please do not try to flash non-Betaflight hardware with this firmware flasher.
Do not disconnect the board or turn off your computer while flashing.

Note: STM32 bootloader is stored in ROM, it cannot be bricked.
Note: Auto-Connect is always disabled while you are inside firmware flasher.
Note: Make sure you have a backup; some upgrades/downgrades will wipe your configuration.
Note: If you have problems flashing try disconnecting all cables from your FC first, try rebooting, upgrade drivers.
Note: When flashing boards that have directly connected USB sockets (most newer boards) ensure you have read the USB Flashing section of the Betaflight manual and have the correct software and drivers installed" }, "firmwareFlasherRecoveryHead": { "message": "Recovery / Lost communication" }, "firmwareFlasherRecoveryText": { - "message": "If you have lost communication with your board follow these steps to restore communication: " + "message": "If you have lost communication with your board follow these steps to restore communication: " }, "firmwareFlasherButtonLeave": { "message": "Leave Firmware Flasher" diff --git a/src/js/main.js b/src/js/main.js index bfab271c..90b5bcaf 100644 --- a/src/js/main.js +++ b/src/js/main.js @@ -167,7 +167,6 @@ function startProcess() { GUI.log(i18n.getMessage('infoVersions', { operatingSystem: GUI.operating_system, - chromeVersion: window.navigator.appVersion.replace(/.*Chrome\/([0-9.]*).*/, "$1"), configuratorVersion: CONFIGURATOR.version })); if (GUI.isNWJS()) { @@ -208,7 +207,7 @@ function startProcess() { // our view is reactive to model changes // updateTopBarVersion(); - if (!GUI.isOther() && GUI.operating_system !== 'ChromeOS') { + if (!GUI.isOther()) { checkForConfiguratorUpdates(); } diff --git a/src/js/tabs/options.js b/src/js/tabs/options.js index c3e3e8ad..fecd9786 100644 --- a/src/js/tabs/options.js +++ b/src/js/tabs/options.js @@ -53,23 +53,19 @@ TABS.options.initRememberLastTab = function () { }; TABS.options.initCheckForConfiguratorUnstableVersions = function () { - if (GUI.operating_system !== 'ChromeOS') { - ConfigStorage.get('checkForConfiguratorUnstableVersions', function (result) { - if (result.checkForConfiguratorUnstableVersions) { - $('div.checkForConfiguratorUnstableVersions input').prop('checked', true); - } + ConfigStorage.get('checkForConfiguratorUnstableVersions', function (result) { + if (result.checkForConfiguratorUnstableVersions) { + $('div.checkForConfiguratorUnstableVersions input').prop('checked', true); + } - $('div.checkForConfiguratorUnstableVersions input').change(function () { - const checked = $(this).is(':checked'); + $('div.checkForConfiguratorUnstableVersions input').change(function () { + const checked = $(this).is(':checked'); - ConfigStorage.set({'checkForConfiguratorUnstableVersions': checked}); + ConfigStorage.set({'checkForConfiguratorUnstableVersions': checked}); - checkForConfiguratorUpdates(); - }); + checkForConfiguratorUpdates(); }); - } else { - $('div.checkForConfiguratorUnstableVersions').hide(); - } + }); }; TABS.options.initAnalyticsOptOut = function () {