diff --git a/locales/en/messages.json b/locales/en/messages.json index 9c2b67c2a2..994a6f5f7b 100755 --- a/locales/en/messages.json +++ b/locales/en/messages.json @@ -3427,7 +3427,7 @@ "message": "Select build type to see available boards." }, "firmwareFlasherOnlineSelectBoardDescription": { - "message": "Select or auto-detect your board to see available online firmware releases - Select the correct firmware appropriate for your board." + "message": "Select or detect your board to see available online firmware releases - Select the correct firmware appropriate for your board." }, "firmwareFlasherOnlineSelectBoardHint": { "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." @@ -3442,7 +3442,7 @@ "message": "Flash on connect" }, "firmwareFlasherFlashOnConnectDescription": { - "message": "Attempt to flash the board automatically (triggered by newly detected serial port).

WARNING: this function disables the auto-detect and backup feature." + "message": "Attempt to flash the board automatically (triggered by newly detected serial port).

WARNING: this function disables the detect and backup features." }, "firmwareFlasherFullChipErase": { "message": "Full chip erase" @@ -3620,10 +3620,10 @@ "message": "Continue" }, "firmwareFlasherDetectBoardButton": { - "message": "Auto-detect" + "message": "Detect" }, "firmwareFlasherDetectBoardDescriptionHint": { - "message": "Auto-detect only works when not in DFU mode and when MSP communication is working. Sometimes you have to retry a few times or even reconnect USB. Try connecting as normal first as you could have forgotten to apply custom defaults. Please reboot after flashing - replug your USB." + "message": "Detect only works when not in DFU mode and when MSP communication is working. Sometimes you have to retry a few times or even reconnect USB. Try connecting as normal first as you could have forgotten to apply custom defaults. Please reboot after flashing - replug your USB." }, "firmwareFlasherDetectBoardQuery": { "message": "Query board information to preselect right firmware" diff --git a/src/components/betaflight-logo/BetaflightLogo.vue b/src/components/betaflight-logo/BetaflightLogo.vue index e0ffec226e..54e2cca497 100644 --- a/src/components/betaflight-logo/BetaflightLogo.vue +++ b/src/components/betaflight-logo/BetaflightLogo.vue @@ -42,22 +42,23 @@ export default { .logo { height: 70px; width: 240px; - background-image: url(../../images/light-wide-2.svg); + background-image: url(../../images/dark-wide-2.svg); background-repeat: no-repeat; background-position: left center; background-size: contain; position: relative; - margin-top: -25px; +} + +.dark-theme .logo { + background-image: url(../../images/light-wide-2.svg); } .logo_text { position: absolute; left: 80px; top: 49px; - color: #949494; - opacity: 0.5; + color: var(--text); font-size: 10px; - min-width: 210px; display: flex; flex-direction: column; } @@ -70,17 +71,20 @@ export default { .logo { height: 24px; width: 150px; - background-image: url(../../images/light-wide-2-compact.svg); + background-image: url(../../images/dark-wide-2-compact.svg); background-position: left center; order: 2; margin-top: 0; } + .dark-theme .logo { + background-image: url(../../images/light-wide-2-compact.svg); + } .logo_text { display: none !important; } .tab_container .logo { display: block; - background-image: url(../../images/light-wide-2.svg); + background-image: url(../../images/dark-wide-2.svg); background-repeat: no-repeat; background-position: center 20px; background-position-x: 12px; @@ -91,6 +95,9 @@ export default { position: relative; border-bottom: 1px solid rgba(0, 0, 0, 0.3); } + .dark-theme .tab_container .logo { + background-image: url(../../images/light-wide-2.svg); + } .tab_container .logo .logo_text { display: flex !important; left: 82px; diff --git a/src/components/data-flash/DataFlash.vue b/src/components/data-flash/DataFlash.vue index 9734ff9ad8..cc5ee76148 100644 --- a/src/components/data-flash/DataFlash.vue +++ b/src/components/data-flash/DataFlash.vue @@ -78,12 +78,10 @@ export default { rgba(0, 0, 0, 0.55) ); padding-top: 5px; - text-shadow: 0 1px #000000; } .noflash_global { color: #868686; text-align: center; - text-shadow: 0 1px #000000; margin-top: 2px; } @@ -105,7 +103,7 @@ export default { border-radius: 2px; width: 25%; display: block; - background-color: var(--accent); + background-color: var(--primary-500); } .dataflash-contents_global div span { position: absolute; diff --git a/src/components/port-picker/FirmwareVirtualOption.vue b/src/components/port-picker/FirmwareVirtualOption.vue index 01742285bd..47d0983e74 100644 --- a/src/components/port-picker/FirmwareVirtualOption.vue +++ b/src/components/port-picker/FirmwareVirtualOption.vue @@ -1,14 +1,13 @@