diff --git a/CHANGELOG.md b/CHANGELOG.md index d9276bf..d4c50be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,14 @@ single running list until the first versioned release. _Nothing yet._ +## 0.12.0 + +- **Battery "Bars" display** — a third battery status option in the top status + bar alongside **%** and **V**: a battery-shaped icon holding up to **four + segments**, each representing **25 %** of charge, with the fill blinking when + the battery is low. Cycle the mode with ◀/▶ at **Menu → Options → Display + Options → Battery**. The "Bars" menu label is localised (German: *Balken*). + ## 0.11.0 - **CRT-style shut-off animation** — when powering off, the current screen diff --git a/MANUAL.md b/MANUAL.md index 1b4003b..1b34e88 100644 --- a/MANUAL.md +++ b/MANUAL.md @@ -59,6 +59,18 @@ Optionally dims the backlight after inactivity to **100 / 50 / 30 / 15 %** of th configured brightness (only in **Auto** backlight mode). Any activity restores full brightness. Set it in **Menu → Options → Display Options → Screen Dim**. +### Battery display mode — 🟢 [FreeTRX] +The battery level in the top status bar can be shown three ways, cycled with +◀/▶ at **Menu → Options → Display Options → Battery**: + +- **%** — remaining charge as a percentage. +- **V** — the measured battery voltage. +- **Bars** — a battery-shaped icon with up to **four segments**, each worth + **25 %** of charge. The fill blinks when the battery is low. + +The **%** and **V** options are inherited from OpenGD77; **Bars** is the new +addition. In every mode the low-battery warning still blinks the reading. + ### Shut-off animation — 🟢 [FreeTRX] Powering off collapses whatever is on screen towards the middle — squeezed to a line, then a dot — like an old CRT switching off, in place of the "Power Off" diff --git a/MDUV380_firmware/application/include/freetrxVersion.h b/MDUV380_firmware/application/include/freetrxVersion.h index dabc039..d6da846 100644 --- a/MDUV380_firmware/application/include/freetrxVersion.h +++ b/MDUV380_firmware/application/include/freetrxVersion.h @@ -5,9 +5,9 @@ #define _FREETRX_VERSION_H_ #define FREETRX_VERSION_MAJOR 0 -#define FREETRX_VERSION_MINOR 11 +#define FREETRX_VERSION_MINOR 12 #define FREETRX_VERSION_PATCH 0 -#define FREETRX_VERSION "0.11.0" +#define FREETRX_VERSION "0.12.0" #endif // _FREETRX_VERSION_H_ diff --git a/README.md b/README.md index 4d72322..ea46ddd 100644 --- a/README.md +++ b/README.md @@ -54,6 +54,9 @@ FreeTRX keeps OpenGD77's core (DMR/FM, hotspot, CPS compatibility) and adds: Channel quick menu, no PC/CPS required (see [Managing channels](#managing-channels-on-the-radio)). - **CRT-style shut-off animation** — the current screen collapses to a line and then a dot, like an old CRT switching off (replaces the "Power Off" message). +- **Battery bars display** — a third battery status option alongside % and + voltage: a battery-shaped icon with up to four 25 % segments (Display Options → + Battery). - **DMR reliability fix** — resolves a hard-fault (freeze needing a battery pull) on the DMR path that affected recent self-built OpenGD77 revisions.