528 Commits
Author SHA1 Message Date
Kaj SchittecatandClaude Opus 5 2149184cf5 fix: don't delete a contact's blob from the packet path (#222)
When the contact table is full, every incoming advert from an unknown node
evicts the oldest contact, and onContactOverwrite() removed that contact's
stored blob inline — on the mesh receive path. On a Heltec V4 the store is
internal SPIFFS, where an unlink can trigger garbage collection, and SPIFFS GC
suspends the flash cache: both cores stall for the duration. That is the
reported symptom exactly — the whole device locks, Bluetooth and TCP drop, the
screen will not wake, and it comes back on its own once GC finishes. It gets
worse the fuller the table is (reports at ~350, ~600 and ~2000 contacts), and a
plain V4 has no SD slot, so there is no storage-side workaround.

Queue the delete instead and drain it from loop(), one blob per tick and no
faster than every 500 ms, under the same WdtHeavyGuard saveContacts uses. A
burst of evictions can no longer chain GC passes back to back, and a slow pass
stalls briefly instead of tripping the watchdog. If the queue (8 deep) fills,
the blob is left orphaned — harmless, and reclaimed on the next wipe.

Reported by Yoss101 and pisti87.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-08-11 10:00:32 +02:00
Kaj SchittecatandClaude Opus 5 d0d52e5d02 touch: accents render everywhere — chain the fallback font at every label
Non-ASCII text was rendering as tofu boxes across the UI in any language that
needs them: Hungarian 'K□z□ss□gi profil' sat under a perfectly rendered 'Rádió
és Mesh' title, same characters, same screen. LVGL's theme puts a font on each
widget, so a label that sets none of its own lands on the stock
LV_FONT_MONTSERRAT_* — which carries no fallback chain. The title looked fine
only because it sets &g_font_16 explicitly.

79 of this file's 543 lv_label_create sites set no font, so this was never a
Hungarian bug: every Greek, Cyrillic, Russian, Ukrainian and Bulgarian user hit
the same boxes across the whole UI, and #232 was the only report.

useChainedFont() reads what a label actually RESOLVES to and swaps a raw
Montserrat for its chained twin, so a label inheriting a larger font from its
parent keeps that size — a blind 'set g_font_14 everywhere' would have shrunk
those. Buttons re-supply the theme font to their child labels, so styleButton()
sets the chained font alongside the text colour it already sets, and
settingsRowLabel() no longer leaves font==nullptr to inherit.

Two global approaches were tried and verified dead on device: a text_font style
on the screen/top/sys layers, and re-pointing the theme's font. Both lose to the
per-widget theme style. Noted in the code so nobody retries them.

Verified on a T-Deck in Hungarian.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-08-11 09:38:58 +02:00
956bc9faeb i18n: German, Dutch and Hungarian translations for the 48 new UI strings (pisti87)
pisti87 translated the entire missing-key set for three languages and posted
them as 143 line comments on d4ade2e rather than a PR, so they were sitting
unmerged. Harvested by mapping each comment's diff position back to the
placeholder row it annotates — all 143 matched an empty row exactly, no
guesswork.

de 48/48, nl 48/48, hu 46/46 (two of his 47 Hungarian comments were variants of
the same string; 'Copy blocked: migration guard unavailable' is still open).
Version headers bumped so devices pick the files up; i18n_builtin.h regenerated.

Co-Authored-By: pisti87 <pisti87@users.noreply.github.com>
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-08-11 08:55:27 +02:00
KajandGitHub b900edbdfe Merge pull request #198 from PixPMusic/pixpmusic/pager-ui-size
fix(touch): keep enlarged Pager UI readable
2026-08-11 08:26:07 +02:00
Kaj Schittecat 8a7325d547 touch: check SD free space before downloading the update bin
A full card failed partway through with a bare 'SD write failed' — the same
message the DMA-buffer short-write used to produce, so it pointed at the wrong
subsystem, and the percentage it died at was just however far the remaining
space stretched. The tile cache is the usual culprit: it fills the card while
each individual tile stays small enough to keep succeeding.

Now it refuses up front with 'need N MB, M MB free'.
2026-08-11 08:11:26 +02:00
Pixel Perfect 1f2a4b6068 fix(tpager): close app pages from back gesture 2026-08-10 12:21:08 -07:00
Pixel Perfect 3bff2b9257 fix(tpager): resize mentions for larger fonts 2026-08-10 12:21:08 -07:00
Pixel Perfect 151ca4ae1f fix(tpager): resize contact detail menus 2026-08-10 12:09:56 -07:00
Pixel Perfect eadff5ca11 fix(fonts): rebuild touch fonts from OFL sources 2026-08-10 11:15:36 -07:00
Pixel Perfect e58618c590 fix(tpager): clear signal poll focus outline 2026-08-10 09:36:23 -07:00
Pixel Perfect a8bf7b8784 feat(tpager): add full-width traffic detail chart 2026-08-10 09:36:22 -07:00
Pixel Perfect 2627849905 fix(tpager): enlarge contact share panel 2026-08-10 09:36:22 -07:00
Pixel Perfect 733d4015cf fix(tpager): restore bright close focus 2026-08-10 09:36:22 -07:00
Pixel Perfect 48f0589ef5 fix(tpager): center discovered count badge 2026-08-10 09:36:22 -07:00
Pixel Perfect 77a80ed04e fix(tpager): keep contact rows compact 2026-08-10 09:36:22 -07:00
Pixel Perfect a5e2ba07c0 fix(tpager): make Jumbo chat text distinct 2026-08-10 09:36:22 -07:00
Pixel Perfect 32fc5c99e9 fix(tpager): keep familiar size preset names 2026-08-10 09:36:22 -07:00
Pixel Perfect 2ef3746c55 feat(tpager): finish accessible chat sizing 2026-08-10 09:36:22 -07:00
Pixel Perfect 8783e2ebe8 fix(tpager): reclaim the overview header row 2026-08-10 09:36:22 -07:00
Pixel Perfect f22c22020e fix(ui): scope QR scaling to Pager 2026-08-10 09:36:22 -07:00
Pixel Perfect fb4a11c887 fix(tpager): align overview actions with status bar 2026-08-10 09:36:22 -07:00
Pixel Perfect 09b4e696dd fix(tpager): shrink overview action buttons 2026-08-10 09:36:22 -07:00
Pixel Perfect 69d33b4f42 fix(tpager): contain large UI chrome and menus 2026-08-10 09:36:22 -07:00
Pixel Perfect e8732f38a2 fix(touch): keep composer geometry consistent
Signed-off-by: Pixel Perfect <me@pixp.cc>
2026-08-10 09:36:21 -07:00
Pixel Perfect b12187480d fix(touch): size Pager chat rows from fonts
Signed-off-by: Pixel Perfect <me@pixp.cc>
2026-08-10 09:36:21 -07:00
Pixel Perfect b5ead407cc fix(touch): honor Pager fallback line metrics
Signed-off-by: Pixel Perfect <me@pixp.cc>
2026-08-10 09:36:21 -07:00
Pixel Perfect fba8cdedff fix(touch): keep enlarged Pager UI readable
Signed-off-by: Pixel Perfect <me@pixp.cc>
2026-08-10 09:36:21 -07:00
Kaj Schittecat 04947c1413 touch: dev FIRMWARE_VERSION default follows the pinned core (release.sh auto-sync) 2026-08-10 13:15:34 +02:00
Kaj SchittecatandClaude Opus 5 335a64c118 touch: core-v1.17.1 (beta_60 boot loop + unreachable contacts) + release firmware-data gate
Core (core-v1.17.1, meshcomod 5406093): 1.17 reserved MAX_ANON_CONTACTS slots
at the head of contacts[], which broke two things in beta_60 —

- resetContacts() claimed those slots while the lazily-allocated PSRAM table was
  still NULL, so the new bootstrapRTCfromContacts() NULL-deref'd at boot on any
  device whose contact store loaded nothing: fresh install, erase-flash, or SD
  not mounted yet (#249). Boards with saved contacts booted fine, which is how
  it passed bench testing.
- getContactByIdx() stayed raw while getNumContacts() excludes the reserved
  slots, so every pairing of the two — contact list, action sheets, phone-app
  sync, getContactForSave — read empty slots and could not reach the newest 8
  real contacts. A just-added contact was invisible and its action-sheet
  operations resolved to a blank slot (#252).

Fork side:
- loadContacts() skips blank records, clearing the placeholder contacts beta_60
  wrote into the contacts file (the next save drops them permanently).
- Chat threads follow a peer's rename. The thread is matched by key but its name
  was never updated, while inbound messages are filed by sender name — so the
  first message after a rename created a duplicate thread (#252).
- release.sh derives FIRMWARE_VERSION / build date / core version from the tag
  and the pinned core, keeps the in-tree dev default in step, and ABORTS the
  release if any staged image does not embed its own tag. beta_60 shipped
  reporting v1.16.0-touch because that value was hand-maintained.

All 8 S3 envs build green on core-v1.17.1.

Reported-by: Pierre747, rustinmyeye, myshoeisonfire

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-08-10 08:20:00 +02:00
Kaj SchittecatandClaude Fable 5 e74cdcb3fe touch: pre-LVGL screens draw explicit colors (fix white boot-logo border on 1.17)
startFrame()'s default background became UIColor::window_bkg in the 1.17
core, and boards whose DISPLAY_CLASS is a core driver link upstream's
palette — window_bkg=WHITE, primary_txt=BLACK. The boot splash grew a
white frame around the logo, and the radio-halt text would have drawn
black-on-black. Boot splash, halt screen, REMOTE placeholder and the
shutdown screen now pass explicit black/white/red instead of palette
entries whose values depend on which display driver got linked.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-09 17:51:26 +02:00
Kaj SchittecatandClaude Fable 5 dbe005df9c touch: bump the dev-build FIRMWARE_VERSION default to v1.17.0-touch
The core moved to 1.17 (core-v1.17.0 pin) but the About string on dev
flashes still said v1.16.0-touch — release builds override it via
release.sh, only the #ifndef default was stale.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-09 17:44:11 +02:00
Kaj SchittecatandClaude Fable 5 e3c5c4237b core-117-prep: 1.17 core compile fixes across all targets (TEST PIN — not for main)
- UIColor migration: DisplayDriver::Color enum -> ColorVal/UIColor statics in the
  6 driver headers + 3 driver .cpps + all main.cpp/UITask.cpp call sites.
- ONE palette definition: src/helpers/ui/UIColorPalette.cpp. Envs whose
  DISPLAY_CLASS is a core driver (v4_tft, attaky, tdeck, M9) take the palette
  the core driver .o carries; envs on our drivers (r8, rak via src_filter;
  pagers via helpers/ui glob; both IDF apps via the whole-archive src glob)
  compile ours. Never both — same-name core objects collide (core LGFXDisplay).
- 1.17 ESP32Board.cpp includes <target.h>: hand the core lib scope the libdeps
  include paths it can't chain to (MicroNMEA everywhere, SensorLib on pagers).
- CustomLR1121Wrapper: setRxBoostedGainMode void->bool (1.17 base).
- IDF: fetch-deps.sh gains durable vendor-time patches (ESP32Board minimal
  deep-sleep — no target.h on IDF; SerialBLEInterface esp-nimble-cpp 2.x port
  incl. esp_mac.h). helpers/ethernet/ excluded in both meshcore CMakeLists.
- platformio.ini pins point at a LOCAL test tag (mc117-clean#core-v1.17.0-test);
  swap to the real core-v1.17.0 before merging to main.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-09 16:13:09 +02:00
Kaj SchittecatandClaude Fable 5 e33bd41f40 touch: hu v9 — swap the one glyph the fonts lack (U+201E low quote)
Audited every non-ASCII codepoint in the v9 Hungarian file against the
extras-font ranges: full coverage (incl. Hungarian ő/ű, Latin Extended-A)
except a single „ low opening quote used once — swapped for the covered “
rather than regenerating three fonts for one glyph. Add U+201E to the
extras --symbols on the next font regen.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-09 15:20:14 +02:00
Kaj SchittecatandClaude Fable 5 785a2df4e2 touch: Hungarian translation update v9 (pisti87) + lang store no longer downgrades (#247, #232)
hu.lang: 43 improved translations + 21 newly covered strings from pisti87,
applied as ver 9; builtin table regenerated.

Lang store (#247): the update check treated ANY version difference as
'update available' — a side-loaded NEWER file than the catalog got
DOWNGRADED on Update. Now numeric: offer only when the catalog is newer
(non-numeric versions keep the old inequality).

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-09 15:14:48 +02:00
Kaj SchittecatandClaude Fable 5 548ab46402 touch: Discover rows show distance when both positions are known (#239)
The DISCOVER_RESP wire format carries no position, so distance is shown when
the node is also a contact with a known advert position AND we have a GPS
fix — formatted with the existing km/miles badge. Rows without both fixes
are unchanged.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-09 15:06:23 +02:00
Kaj SchittecatandClaude Fable 5 6fe4ee52b2 touch: æ/Æ in the long-press accent picker — Danish/Norwegian (#237)
ø/Ø and å/Å were already in the o/a accent sets; æ was the missing third.
Long-press a/A now offers it.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-09 15:02:31 +02:00
Kaj SchittecatandClaude Fable 5 8ffbf8c5f5 touch: Files app shows file timestamps (#185) + favorites survive contact eviction (#178)
#185: file rows in the Files app now append the modified time (dd Mon HH:MM)
when the filesystem provides a sane one (FAT 1980-epoch / clockless writes
are omitted rather than shown as garbage).

#178: the core's overwrite-oldest eviction already skips contacts with flags
bit 0 set — but the device-side favorite star lived only in TouchPrefs,
invisible to the core, so a starred contact was still evictable when the
table filled. The star toggle now mirrors into the contact table's flags
(uiSetContactFavorite), and a one-shot boot sync stamps the flag for
contacts starred before this fix.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-09 15:00:01 +02:00
Kaj SchittecatandClaude Fable 5 e32dc83553 touch: visible on-screen error when the LoRa radio fails init (#244)
A dead or absent LoRa module halted boot behind the frozen logo with the only
clue on serial. Retry init once (transient SPI/reset flakes), then paint the
failure on the panel — 'LoRa radio not detected / wadamesh needs the LoRa
module' — before halting, so users aren't left staring at the wordmark.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-09 14:48:00 +02:00
Kaj SchittecatandClaude Fable 5 2a0ba3f188 touch: retried messages appear in the open chat immediately (#248)
The composer's send button calls composerSend() and then refreshes the open
detail itself. The two programmatic resend paths (long-press menu Resend and
the failed-bubble one-tap retry) called composerSend() without the refresh,
so the new bubble only appeared once something else redrew the thread.
Mirror the send button: refresh the open dm/ch detail + dirty the thread
list after a successful resend.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-09 14:44:23 +02:00
Kaj SchittecatandClaude Fable 5 f5fce43707 touch: prefs same-value writes are a no-op — stop gratuitous snapshot bursts (#246)
Boot-time normalize/repair setters re-put unchanged values every boot; each
one dirtied the shared file cache and bought a full touch.kv A/B snapshot.
On the Pager's internal SPIFFS that is a 0.7-1.5 s flash burst that stalls
both cores (flash-cache suspend -> the reported ui:lvgl/ui:gps stalls) and
widens the interrupted-write window that can drop a user's saved change.
Same-value puts now return success without dirtying, in both the file-mode
and legacy paths. The storage:SPIFFS-despite-SD half of #246 (profile
demotion on upgrade) was fixed separately by #206's 4778347.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-09 14:40:26 +02:00
KajandGitHub 8cd6d9b52e Merge pull request #235 from PixPMusic/pixpmusic/tpager-lockscreen-brand
fix(tpager): update lock-screen branding
2026-08-09 14:32:16 +02:00
KajandGitHub ec2f941851 Merge pull request #210 from PixPMusic/pixpmusic/tpager-wifi-ble-coexistence
fix(tpager): stabilize Wi-Fi and BLE coexistence
2026-08-09 14:31:00 +02:00
Pixel Perfect 8cceda408a fix(tpager): preserve BLE bonds across Wi-Fi handoff 2026-08-05 17:56:11 -07:00
Pixel Perfect 0175cebcd8 fix(tpager): enable Wi-Fi without reboot 2026-08-05 17:56:11 -07:00
Pixel Perfect 3f222ceecd fix(tpager): close Wi-Fi BLE handoff bypasses
Signed-off-by: Pixel Perfect <me@pixp.cc>
2026-08-05 17:56:11 -07:00
Pixel Perfect 0fdd1d5374 fix(tpager): fall back to BLE when Wi-Fi is unavailable
Track Pager Wi-Fi/BLE ownership explicitly instead of treating Wi-Fi intent as an active association. Allow BLE with Wi-Fi off or unconfigured, and restore it after a bounded failed association while pausing automatic retry churn until Wi-Fi is explicitly retried.

Signed-off-by: Pixel Perfect <me@pixp.cc>
2026-08-05 17:56:10 -07:00
Pixel Perfect bce8ebd933 fix(ble): don't let NimBLE free an interior pointer on deinit
NimBLEDevice::deinit(true) deletes the NimBLEServer, and ~NimBLEServer()
runs:

    if (m_deleteCallbacks && m_pServerCallbacks != &defaultCallbacks)
      delete m_pServerCallbacks;

SerialBLEInterface::begin() registers itself with pServer->setCallbacks(this)
and that overload's deleteCallbacks parameter defaults to true. Our
SerialBLEInterface is the by-value member _ble, sitting after _usb/_tcp/_ws
inside MultiTransportCompanionInterface, and main.cpp placement-news that
whole object into one heap_caps_malloc block. So the delete above calls
operator delete on a pointer into the middle of a live allocation:
"CORRUPT HEAP: Bad head at 0x..." and a panic reboot.

origin/main only ever reached deinit(true) from prepareForHttpOta, and
disableBle carried an explicit "we deliberately do NOT NimBLEDevice::deinit()
here" note. This branch removed that note and added deinit(true) to
disableBle() and suspendBleForWifiReconnect(), which puts the crash on the
everyday Bluetooth-off toggle, on every Wi-Fi credential apply, and on the
10 s link-loss retry -- so an AP going down while Bluetooth is on panics the
device.

Detach the callbacks first at all three sites. setCallbacks(nullptr) installs
NimBLE's static defaultCallbacks sentinel, which the destructor explicitly
skips. NimBLECharacteristic never deletes its callbacks, so the rx/tx
setCallbacks(this) registrations need no equivalent.

Also drop an unreachable return in wifiEnableGate(): the Pager branch returns
unconditionally, so the shared LowMemory tail below it was dead on that board.

Signed-off-by: Pixel Perfect <me@pixp.cc>
2026-08-05 17:56:10 -07:00
Pixel Perfect 00ff879c34 fix(ui): report BLE as "starting" only where a retry exists
The two status surfaces read wifiConfigGetBleEnabled() directly, so a
non-Pager board whose stack was never begun showed "Starting..." /
"Mode: BLE starting / low memory" forever -- nothing outside the Pager
retries a saved-but-not-resident preference. Route them through
bleRequestedOrEnabled() so the Pager keeps its pending wording and every
other board reports the truth: off, and one tap away from on.

Both sites are in the else of an isBleEnabled() test, so on non-Pager the
helper is already false there and this reduces to "Off" with no other
behavior change.

Signed-off-by: Pixel Perfect <me@pixp.cc>
2026-08-05 17:56:10 -07:00
Pixel Perfect 8c1b611be1 fix(tpager): leave a pending marker when the boot BLE guard refuses
Swapping beginBle() for enableBle() at boot introduced a refusal branch
that only logs. The association-timeout branch beside it sets
s_pager_ble_after_wifi, so the two exits left different state for the
retry sites to read. The GOT_IP handler's ble_waiting also ORs
(wifiConfigGetBleEnabled() && !isBleStackBegun()) and so happened to
cover the want_wifi case, but relying on that made the marker's meaning
inconsistent.

Set it in both branches. The residual gap is unchanged and inherent: with
want_wifi false there is no association to retry after, so a BLE-only
boot that loses the heap guard stays deferred until the user toggles
Bluetooth, which takes UITask::enableBle()'s ordered-restart path.

Signed-off-by: Pixel Perfect <me@pixp.cc>
2026-08-05 17:56:10 -07:00
Pixel Perfect 2eaaf3d962 fix(ui): scope the deferred-BLE request state to the Pager
bleRequestedOrEnabled() was guarded on ESP32 && MULTI_TRANSPORT_COMPANION,
so it folded wifiConfigGetBleEnabled() into "BLE is on" for T-Deck, M9,
V4-R8, Heltec V4 and RAK as well. Only the Pager has pending-request
machinery: UITask::enableBle() records intent under #if TLORA_PAGER, and
only main.cpp retries after association. Elsewhere that flag is a plain
persisted preference that DEFAULTS TO ON and can sit true with no stack
begun -- the boot co-init heap guard takes exactly that path.

A T-Deck that deferred BLE at boot therefore showed the control-center
tile ON with the stack dead, and the first tap called disableBle(),
clearing the saved preference instead of starting BLE. The status
indicators were untouched and still read isBleEnabled(), so the toggles
disagreed with the "Starting..." label right next to them.

Narrow the helper and the switch-revert branch to TLORA_PAGER, and build
the Bluetooth switch's initial state from the same helper the callback
compares against so its want == requested early-out cannot swallow a tap.

Signed-off-by: Pixel Perfect <me@pixp.cc>
2026-08-05 17:56:10 -07:00