mirror of
https://github.com/MarekZegare4/MeshCore-Solo.git
synced 2026-09-14 15:16:40 +00:00
docs(release-notes): catch up v1.27 with missing entries; tune(ui): faster marquee hold
release-notes.md was missing three shipped changes: the Msg-wake toggle + all-home-pages default, the repeater advert-interval default (2min->6min), and three Fixes (settings-persist-on-reboot, RTC bootstrap floor-not- rollback, ESP32 diagnostics heap/stack). marqueeHoldMs() reverted 1500/2500 -> 700/1200 (OLED/e-ink) -- the longer hold made the swing-marquee's full reveal cycle too slow for long message previews. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
@@ -345,7 +345,7 @@ public:
|
||||
// ghosting there). Unchanged frames are skipped by the display's own CRC
|
||||
// diff before any real panel push happens, so the hold phases are free.
|
||||
virtual unsigned long marqueeStepMs() { return isEink() ? 900 : 220; }
|
||||
virtual unsigned long marqueeHoldMs() { return isEink() ? 2500 : 1500; }
|
||||
virtual unsigned long marqueeHoldMs() { return isEink() ? 1200 : 700; }
|
||||
virtual uint8_t marqueeStepChars() { return isEink() ? 3 : 1; }
|
||||
|
||||
// draw text with ellipsis if it exceeds max_width. Pass selected=true for
|
||||
|
||||
Reference in New Issue
Block a user