diff --git a/locales/en/messages.json b/locales/en/messages.json
index abd2c1c8bb..2c0c1e0934 100644
--- a/locales/en/messages.json
+++ b/locales/en/messages.json
@@ -3135,7 +3135,7 @@
"message": "Select or auto-detect your board to see available online firmware releases - Select the correct firmware appropriate for your board."
},
"firmwareFlasherOnlineSelectBoardHint": {
- "message": "Starting with Betaflight 4.1, Betaflight is introducing support for Unified Targets. The concept of Unified Targets means that the same firmware .hex file can be used for all boards using the same MCU (F4, F7). To make the different boards work with the same firmware, a specific configuration file is deployed alongside the firmware when a Unified Target is flashed.
This version of Betaflight configurator supports flashing of Unified Targets with the respective board specific configurations in one step. The different firmware types that are available for each board are shown in the drop-down as follows:
<board name> or
<board name> (Legacy):
non-unified target, or pre-4.1 versions of the firmware for Unified Targets.
<board name> (<manufacturer id>):
(4 character manufacturer id)
Unified Target.
Please use Unified Targets where available. If you encounter problems using a Unified Target, please open an issue and then use the non-unified target until the issue has been resolved."
+ "message": "Betaflight configurator supports flashing of Unified Targets with the respective board specific configurations in one step.
The concept of Unified Targets means that the same firmware .hex file can be used for all boards using the same MCU.
Betaflight 4.4 introduces Cloud Build
With Cloud Build we need to define hardware options present on your build.
To make the different boards work with the same firmware, a specific configuration file is deployed alongside the firmware when a Unified Target is flashed.
With Local build you can load a unified target configuration file or chose a board before loading a firmware .hex file.
If you encounter problems using the firmware, please consider joining Discord or open an issue."
},
"firmwareFlasherOnlineSelectFirmwareVersionDescription": {
"message": "Select firmware version for your board."
@@ -6856,6 +6856,6 @@
"message": "Classic Mode"
},
"classicBuildModeDescription": {
- "message": "This mode ignores all the parameters here (except for the commit when in expert mode). This essentially achieves the same as the classic nightlies, and is provided for convenience."
+ "message": "This mode ignores all the parameters here. This essentially achieves the same as the classic nightlies, and is provided for convenience."
}
}
diff --git a/src/js/utils/common.js b/src/js/utils/common.js
index 0074c32221..f2d7a780eb 100644
--- a/src/js/utils/common.js
+++ b/src/js/utils/common.js
@@ -98,7 +98,6 @@ $.fn.sortSelect = function(text = "") {
const op = this.children("option");
op.sort((a, b) => {
- console.log(a.value, a.text);
if (a.text === text) {
return -1;
}
diff --git a/src/tabs/firmware_flasher.html b/src/tabs/firmware_flasher.html
index f2c73d768b..bfb3951a93 100644
--- a/src/tabs/firmware_flasher.html
+++ b/src/tabs/firmware_flasher.html
@@ -1,5 +1,9 @@