• v0.7.2 05776b7eb6

    fix: streaming UTF-8 decoder + rAF write batching for terminal performance
    All checks were successful
    Build & Sign Wraith / Build Windows + Sign (push) Successful in 1m6s

    Ghost released this 2026-03-17 17:22:50 +00:00 | 105 commits to main since this release

    Three fixes:

    1. Streaming TextDecoder: a single TextDecoder instance with {stream: true}
      persists across events. Split multi-byte UTF-8 sequences at Go read()
      boundaries are now buffered and decoded correctly across chunks.

    2. requestAnimationFrame batching: incoming SSH data is accumulated and
      flushed to xterm.js once per frame instead of on every Wails event.
      Eliminates the laggy typewriter effect when output arrives in small
      chunks (which is normal for SSH PTY output).

    3. PTY baud rate: bumped TTY_OP_ISPEED/OSPEED from 14400 (modem speed)
      to 115200. Some remote PTYs throttle output to match the declared rate.

    Co-Authored-By: Claude Opus 4.6 (1M context) noreply@anthropic.com

    Downloads