Skip to content
Strata v1.2.13

v1.2.9

Released: 2026-05-16

Desktop quit path now always stops backend sidecar

Section titled “Desktop quit path now always stops backend sidecar”

After validating the packaged app runtime, backend port 3456 could remain listening after closing Strata.app on one close path.
This release extends Tauri lifecycle cleanup handling to include additional window/run exit events (CloseRequested and RunEvent::Exit) so sidecar termination is always triggered.

Result:

  • While app running: backend listens on :3456 (expected).
  • After app quit: :3456 listener is gone.
  • Frontend still has no localhost server port in desktop mode.
  • Desktop build: ✅ (./scripts/tauri-build.sh)
  • Runtime close check: ✅ open app → listener on :3456; quit app → no listeners on :3456 or :6543
  • b7f3d48 — fix(desktop): stop backend on app quit
  • a1bcca4 — chore: release v1.2.9