mirror of
https://github.com/dabeani/meshcore.git
synced 2026-03-28 17:42:43 +01:00
Update CHANGELOG.md
This commit is contained in:
78
CHANGELOG.md
78
CHANGELOG.md
@@ -2,6 +2,84 @@
|
||||
|
||||
All notable changes to this project.
|
||||
|
||||
## [v0.9.11] (unreleased - WIP)
|
||||
|
||||
### Upstream base upgraded: MeshCore v1.13 → v1.14
|
||||
|
||||
### Added
|
||||
- Radio activity LED: a small round dot in the top status bar (left of the device name) that flashes green for 250 ms whenever any LoRa signal is received — valid packets and CRC-error receptions alike. The dot shows an idle ring outline when quiet and fills solid green on any radio activity.
|
||||
- Map last-known-position auto-save: when GPS gets a valid fix, coordinates are persisted to flash immediately so the map restores the true latest position after reboot. Ongoing writes are still throttled (max once every 5 minutes) and only occur when coordinates change.
|
||||
- Map contact markers now show the node 1-byte ID prefix (2-digit hex, e.g. `1E`) instead of plain squares, using the same existing marker background coloring (hop color / selected highlight) with automatic black-or-white foreground contrast for readability. (still under construction)
|
||||
|
||||
### Changed / Improved
|
||||
- MAP marker tap behavior: tapping a ByteID marker now keeps selection on the map and shows a left-bottom info box with `Name`, `Age`, and `Distance` (km).
|
||||
- MAP marker double-tap behavior: double-tapping the same ByteID marker opens that contact directly in Contact Detail.
|
||||
- MAP selected-marker label text now stays at a constant size while zooming, instead of scaling with map zoom. (still under construction)
|
||||
- Mgmt → Advert → Scan Neighbor Repeaters now shows an Add button only for repeaters not yet in Contacts, and tapping a repeater row opens Contact Detail instead of adding on name/row tap.
|
||||
- Mgmt → Advert now includes `Path Hash Mode`, and Mgmt → Contacts now includes `AutoAdd Max Hops`, matching the MeshCore v1.14 companion settings on-device. (be careful other repeaters/companions need minumum MeshCore v1.14+ to avoid compatibility issues when these settings are changed)
|
||||
- Mgmt → Contacts → `AutoAdd Max Hops` now cycles the full MeshCore v1.14 range `0..64` with the correct semantics: `0 = No Limit`, `1 = Direct (0 hops)`, and `N = up to N-1 hops`. (still under construction)
|
||||
- DM message detail now shows delivery state for sent messages (Pending / Delivered / Not delivered), including ACK-based delivered updates.
|
||||
- Mgmt → Channels now treats the built-in `Public` channel like any other joined channel, including Share/Delete actions.
|
||||
- If the default `Public` channel was deleted, Mgmt → Channels → Join now shows a `Public` button that recreates it automatically only when it is currently missing.
|
||||
- T-Deck text editor now scrolls with the cursor when moving left into long input, so the beginning of the text remains visible while editing.
|
||||
- Text edit overlay uses smaller message-input text with wrapped visible lines for easier long-message editing.
|
||||
|
||||
### Fixed
|
||||
- Companion-sent messages no longer appear twice.
|
||||
- GUI-origin channel messages now populate message-detail metadata consistently (route/path hint + timestamp/RSSI baseline), so detail fields are no longer empty compared to companion-origin sends.
|
||||
- DM detail delivery status now correctly updates for zero-hop/direct sends (no false "Not delivered" when ACK was received), and sent-message hops/RSSI/repeats metadata updates more reliably.
|
||||
- T-Deck display wake behavior is now consistent: whether the screen turned off automatically or manually, it wakes via knob press only and no longer wakes on knob movement.
|
||||
- Online AutoUpgrader manifest validation is now more robust (schema compatibility + target-key fallback), reducing false "manifest" errors.
|
||||
- T-Deck keyboard backlight timeout now reliably turns the keyboard light off even after manual Alt+B keyboard-light activation.
|
||||
- MAP now starts downloading and caching online tiles even when the SD card tiles folder is initially empty, as long as network tiles are enabled, Wi-Fi is connected, and the SD card is writable.
|
||||
- Mgmt/Advert: Auto Advert Direct interval setting is now persisted correctly across reboots; values 4 h and 72 h were silently reset to Disabled on load due to a mismatch between the UI option list and the prefs sanitizer.
|
||||
- Contact/DM/channel sender name colours are now clearly readable on dark backgrounds and far more distinct: the fixed 12-entry palette has been replaced with a full HSV colour-wheel generator (360 distinct hues at full brightness), so up to ~250 contacts each receive a unique, high-contrast colour.
|
||||
- DM "Del(ete)" (Back long-press in DM view) no longer silently fails for contacts with names ending in "?" due to a parsing error in the delete confirmation dialog.
|
||||
- AutoLock lock screen clock now counts automatically while the screen is on: the HH:MM:SS display updates once per second when idle (no touch). Clock pauses automatically when the screen turns off (display timeout or hardware button) and resumes on next wake. Display timeout continues to work normally while locked.
|
||||
- Adding a repeater from Mgmt → Advert → Scan Neighbor Repeaters (and from Contacts → Discovered) now preserves the original seen time instead of resetting `Last heard` to `now`.
|
||||
- Mgmt → Advert → Scan Neighbor Repeaters and the Repeater Admin `Neighbours` view now show only zero-hop/direct repeaters, excluding flooded ones.
|
||||
- Msgs list scrolling is now visually consistent with Contacts: partially visible rows at the top edge of the Channels and DMs lists are rendered instead of popping in only once fully visible.
|
||||
- Room-server `SVR` badges now use a distinct purple informational style instead of looking like blue action buttons.
|
||||
- Nickname colours are now applied consistently across Contacts, MAP labels/info, discovered/repeater neighbour lists, and contact detail headers so the same name keeps the same colour throughout the UI.
|
||||
- Mgmt → Contacts → `Purge w/o favs` works again; the final row is now reachable and tappable.
|
||||
|
||||
---
|
||||
|
||||
## [v0.9.10]
|
||||
|
||||
### Changed / Improved
|
||||
- Smoothed battery voltage display using averaging to reduce rapid value jumps in the status area.
|
||||
- Battery/Duty-cycle toggle now reliably shows percentage mode (including while charging) instead of repeating volts.
|
||||
- Mgmt/GPS now includes an AutoBaud toggle (enabled by default); Baud editing is blocked while AutoBaud is enabled.
|
||||
- Mgmt/GPS now shows progress popups while switching AutoBaud and while restarting GPS, so long-running actions no longer look stuck.
|
||||
- In timeout-only mode (autolock disabled), keyboard keys no longer wake the display; wake remains on recessed trackball press/click to reduce accidental pocket wake-ups.
|
||||
- Internal clipboard is now mirrored to SD at `/clipboard.txt` (where SD is available), allowing out-of-band import/export and clipboard persistence across reboot.
|
||||
- Text edit fields now support press-and-hold paste in addition to double-tap paste.
|
||||
- Copy popups now specify what was copied (for example: channel secret, selection, word, PubKey) instead of only showing a generic "Copied" message.
|
||||
- In chat views, press-and-hold now copies text directly from the touched message/detail line (broader "copy any text" behavior in transcripts/details).
|
||||
- Press-and-hold copy is also available in Contacts rows and selected Mgmt text rows (RxRaw log + telemetry rows).
|
||||
- Mgmt/Global rows now support press-and-hold copy as well (name/device ID/public key/constants/admin info/storage).
|
||||
- Press-and-hold copy now also covers Mgmt/WiFi, Mgmt/BLE, and Mgmt/GPS rows.
|
||||
- Manual display-off (single recessed trackball/button click) now wakes only on another recessed trackball/button click when autolock is disabled; with autolock enabled, existing wake behavior remains unchanged.
|
||||
- On T-Deck navigation, trackball movement is now ignored while the display is off/soft-off or while the lockscreen is active.
|
||||
|
||||
|
||||
### Fixed
|
||||
- Transport switch confirm no longer freezes the UI/device when enabling BLE from transport-off mode; live BLE re-enable from OFF is now handled safely.
|
||||
- Transport switching no longer freezes on BLE -> WiFi -> BLE round-trips; BLE is kept initialized during live transport toggles.
|
||||
- Message rendering now respects embedded line breaks (`\n`) from incoming text (for example bot messages), showing each break on a new line.
|
||||
- Room server session transcript no longer draws the topmost message through the message-window top boundary when scrolled.
|
||||
- Channel messages now synchronize both ways between device GUI and companion app over WiFi (app->device and device->app).
|
||||
- BLE PIN edit now accepts valid 6-digit values that start with zero (for example, 012345).
|
||||
- Mgmt/GPS button row rendering and touch hitboxes are aligned again (including Defaults and Restart GPS rows).
|
||||
- Mgmt/GPS AutoBaud now keeps scanning past noisy false-positive baud hits, and the displayed Baud value now reflects the detected runtime baud after AutoBaud evaluation.
|
||||
- Mgmt/Advert touch mapping is corrected: Advert-Direct and Advert-Flood buttons now trigger the intended send mode consistently.
|
||||
- DM detail "Del" button hit area is corrected; deletion now triggers when tapping inside the visible button.
|
||||
- Screen timeout now turns the display fully off on touch devices (instead of only dimming to zero brightness).
|
||||
- Mgmt/UI scrolling now clamps correctly at the bottom and no longer scrolls into empty space.
|
||||
|
||||
---
|
||||
|
||||
## [v0.9.9]
|
||||
|
||||
### Changed / Improved
|
||||
|
||||
Reference in New Issue
Block a user