diff --git a/locales/en/messages.json b/locales/en/messages.json index 4d27d9fc..acdaccc1 100644 --- a/locales/en/messages.json +++ b/locales/en/messages.json @@ -2692,6 +2692,9 @@ "firmwareFlasherOnlineSelectBoardDescription": { "message": "Select 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." + }, "firmwareFlasherOnlineSelectFirmwareVersionDescription": { "message": "Select firmware version for your board." }, diff --git a/src/css/main.css b/src/css/main.css index f7abdf22..3f60857f 100644 --- a/src/css/main.css +++ b/src/css/main.css @@ -1961,6 +1961,9 @@ button.active { max-width: 180px; } +.jBox-Widetip { + max-width: 300px; +} @media only screen and (max-width: 1055px) , only screen and (max-device-width: 1055px) { diff --git a/src/js/gui.js b/src/js/gui.js index b6cc0bba..f8d00412 100644 --- a/src/js/gui.js +++ b/src/js/gui.js @@ -360,6 +360,20 @@ GUI_control.prototype.content_ready = function (callback) { outside: 'x' }); + new jBox('Tooltip', { + theme: 'Widetip', + attach: '.cf_tip_wide', + trigger: 'mouseenter', + closeOnMouseleave: true, + closeOnClick: 'body', + delayOpen: 100, + delayClose: 100, + position: { + x: 'right', + y: 'center' + }, + outside: 'x' + }); }); if (callback) callback(); diff --git a/src/tabs/firmware_flasher.html b/src/tabs/firmware_flasher.html index 1ee7b1aa..a675307d 100644 --- a/src/tabs/firmware_flasher.html +++ b/src/tabs/firmware_flasher.html @@ -26,7 +26,7 @@ - +