• Joined on 2026-04-21
lfg2025 commented on issue lfg2025/archy#43 2026-06-17 19:09:03 +00:00
[Bug] Install on 192.168.1.70: errors at DID-creation + password screens; FIPS slow to start

Implemented (code complete; live re-test on a fresh ISO node pending).

Root cause of the DID-creation/password errors: seed.generate was not idempotent. The web client aborts a slow…

lfg2025 closed issue lfg2025/archy#43 2026-06-17 19:09:03 +00:00
[Bug] Install on 192.168.1.70: errors at DID-creation + password screens; FIPS slow to start
lfg2025 commented on issue lfg2025/archy#18 2026-06-17 19:09:03 +00:00
[Bug] B11: Companion app — 'open in external browser' apps don't work

Implemented across the stack (live pairing test pending).

The relay was one-way (Android companion → kiosk browser), so an "open external" app's window.open landed on the kiosk where the…

lfg2025 closed issue lfg2025/archy#18 2026-06-17 19:09:03 +00:00
[Bug] B11: Companion app — 'open in external browser' apps don't work
lfg2025 commented on issue lfg2025/archy#31 2026-06-17 18:11:32 +00:00
[Bug] B23: Archipelago group chat broken/slow over Tor

Progress (left open pending 2-node Tor verify on .116/.198):

  • Duplication — fixed at the source: every node message now carries a unique msg_id (node_message::send_to_peer), and the…
lfg2025 closed issue lfg2025/archy#47 2026-06-17 17:56:47 +00:00
[Bug] On reboot many containers stay 'stopped' and don't reliably return to running
lfg2025 commented on issue lfg2025/archy#47 2026-06-17 17:56:46 +00:00
[Bug] On reboot many containers stay 'stopped' and don't reliably return to running

Verified on the live .116 node: reboot recovery works — 35 of 36 containers are Up and stable (boot reconciler active, Quadlet WantedBy=default.target). The lone non-running one (bitcoin-core,…

lfg2025 commented on issue lfg2025/archy#48 2026-06-17 17:40:23 +00:00
[Feature] Mesh: push live peer events to contacts UI for instant updates (drop 5s poll)

Implemented: mesh peers now appear on push instead of the 5s poll. Backend (server.rs) subscribes to mesh event_tx and, on PeerDiscovered/PeerUpdated (debounced ~2Hz), nudges the…

lfg2025 closed issue lfg2025/archy#48 2026-06-17 17:40:23 +00:00
[Feature] Mesh: push live peer events to contacts UI for instant updates (drop 5s poll)
lfg2025 closed issue lfg2025/archy#2 2026-06-17 17:40:22 +00:00
[Bug]: Fix flashing USB from kiosk
lfg2025 commented on issue lfg2025/archy#7 2026-06-17 17:40:22 +00:00
[Bug]: Scrolling with Companion app

Fixed: two-finger scroll did nothing because the relay dispatched a synthetic WheelEvent — which browsers treat as untrusted and never scroll on. neode-ui/src/api/remote-relay.ts now finds…

lfg2025 closed issue lfg2025/archy#7 2026-06-17 17:40:22 +00:00
[Bug]: Scrolling with Companion app
lfg2025 commented on issue lfg2025/archy#2 2026-06-17 17:40:21 +00:00
[Bug]: Fix flashing USB from kiosk

Fixed (root cause matched your attachment): the image's archipelago user was created with only -G sudo, missing dialout, so it couldn't open the USB serial device to flash. `image-recipe/buil…

lfg2025 closed issue lfg2025/archy#35 2026-06-17 17:34:48 +00:00
[Bug] Paid-content 10% video previews unplayable (truncated MP4)
lfg2025 commented on issue lfg2025/archy#44 2026-06-17 17:34:48 +00:00
[Feature] Auto-installer: let the user pick the target drive when more than one is present

Implemented: the auto-installer now collects ALL candidate internal disks (NVMe, then non-removable SATA, excluding the USB boot device) and, when more than one is present, shows a numbered picker…

lfg2025 closed issue lfg2025/archy#44 2026-06-17 17:34:48 +00:00
[Feature] Auto-installer: let the user pick the target drive when more than one is present
lfg2025 commented on issue lfg2025/archy#35 2026-06-17 17:34:47 +00:00
[Bug] Paid-content 10% video previews unplayable (truncated MP4)

Fixed: the preview path no longer streams an unplayable byte-prefix for non-faststart MP4s. content_server.rs now scans the MP4 top-level boxes and only serves a truncated preview when the file…

lfg2025 commented on issue lfg2025/archy#28 2026-06-17 16:38:51 +00:00
[Feature] B20: surface bitcoin-headers-over-mesh (send/receive toggles)

Implemented: bitcoin-headers-over-mesh now has BOTH send and receive toggles. Backend — MeshConfig.announce_block_headers (send) + new receive_block_headers (receive, default on); both…

lfg2025 closed issue lfg2025/archy#28 2026-06-17 16:38:51 +00:00
[Feature] B20: surface bitcoin-headers-over-mesh (send/receive toggles)
lfg2025 commented on issue lfg2025/archy#1 2026-06-17 16:38:50 +00:00
[Bug]: Strange peer request behaviour

Fixed: the inbound-request dedup now rejects re-syncs for peers that are already Pending OR Approved (core/archipelago/src/federation/pending.rsinsert_inbound), so approving + Poll…