What's new since v1.0.0
Native TUI client
- Full-screen terminal client that speaks the same protocol as the browser
- CLI split into clear modes:
LemurPouch --serve— run the relayLemurPouch --connect <relay-url>— open the TUI
- Install scripts target
~/.local/binand can launch either mode - Send-path polish: safer transfer failure handling, friendlier path quoting/
~expansion in the send prompt
Multi-gig transfers
- Negotiated chunk sizes (up to 1 MiB) and windowed flow control so large files don't blow memory or hang the pipe
- Browser send/receive workers (crypto off the main thread)
- Disk receive via OPFS when the page is a secure context (
https://orhttp://localhost) - Growing in-memory receive + clear warning when OPFS isn't available (plain
http://on a LAN IP) - Rate + ETA in the transfer UI
- Send and receive stall detection (30 s):
"flow-control stall"/"receive stall"instead of stuck progress forever
Transfer integrity & reliability
- End-to-end SHA-256 is streamed with the bytes (not a second full-file hash pass)
- Digest rides on
transfer-end(not the offer), so offers can start immediately - Fixes for:
- Last chunk racing
transfer-end(receiver stuck at ~100% streaming) - Windowed browser sends deadlocking after wiping
lastAck - Large receives on Safari / plain HTTP
- Last chunk racing
Project / packaging
- Renamed to LemurPouch (binary, docs, install paths)
- Browser app →
portal/, marketing site →website/ - Marketing landing page for lemurpouch.com
- Docker image path is lowercase for GHCR:
ghcr.io/steelbrain/lemurpouch:latest
Docs
- Install-first README pitch
- Captive-portal claim removed from the "works on restrictive networks" list (LAN relay focus)
- AGENTS / install / Docker notes updated for the new layout
Install
One-liner (relay):
curl -fsSL https://raw.githubusercontent.com/steelbrain/LemurPouch/main/scripts/install.sh | shTUI client:
curl -fsSL https://raw.githubusercontent.com/steelbrain/LemurPouch/main/scripts/install.sh | sh -s -- --connect http://<relay-host>:8080/Docker:
docker run --rm -p 8080:8080 ghcr.io/steelbrain/lemurpouch:latestBinaries: download the archive for your OS/arch from this release, verify with SHA256SUMS, unpack, run ./LemurPouch --serve or ./LemurPouch --connect <url>.
Breaking / note for upgraders from v1.0.0
• Binary and install paths use LemurPouch (not the old name)
• Docker/GHCR image is ghcr.io/steelbrain/lemurpouch (lowercase)
• Wire change: file integrity digest is on transfer-end, not transfer-offer — use matching client + portal builds (this release)
Full Changelog: v1.0.0...v2.0.0