Scrolling:
- Fix snap-back race: render() read a stale autoScroll cache (updated only
on async scroll events), yanking scrolled-up users back to the bottom
during live output. Now measure the real bottom position from the DOM at
render time and gate auto-follow on an explicit autoScroll flag.
- Restore scroll-to-top history loading; add a wheel-up handler so desktop
(no touch, screen fits viewport → no scroll room → no scroll event) can
still load scrollback. Resume live updates on scroll-to-bottom.
- Remove the auto-load-when-fits path that permanently froze live updates.
- terminal-container: touch-action pan-y, overflow-y scroll, overscroll
contain; drop terminal-output min-height:100%; desktop app-container
explicit 100dvh height.
- gestures.js touchmove → passive (let Safari composite child scroll).
Claude-mode detection:
- Match node-wrapped `claude` processes (check all ps args tokens).
- Enumerate ALL workspaces via `cmux tree --all`, not just the active
window that the workspace.list socket returns.
- Don't cache empty results; keep last-known-good to survive transient
ps/socket failures. Periodic client-side re-check.
Misc:
- Desktop: Enter sends, Shift/Cmd+Enter newline (mobile unchanged).
- Keyboard area touch-action:none (no vertical drift), key row pan-x.
- claude-parser _stripAnsi also strips C0/C1 control chars.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Send button:
- submitText() sends text without trailing "\n", then a discrete Enter
key event after 100ms. cmux delivers send_text as a bracketed paste,
so a trailing newline became a literal newline in the Claude/Codex
input box instead of submitting — this required a second (empty)
press to actually send. Now one press = the full type-then-Enter
sequence. Fixes Codex always needing two presses and Claude 4+ line
messages not sending / rendering mid-state.
- data-text shortcut keys now type then send Enter separately
- mousedown.preventDefault keeps soft keyboard up so first tap submits
- Remove IME composition Enter handler (textarea Enter = newline now)
Codex view:
- New codex-parser.js / codex-renderer.js for OpenAI Codex CLI surfaces
- /api/codex-surfaces endpoint; generalize surface-ref lookup into
_getSurfaceRefsForProcess() (claude + codex)
- app.js updateCodexMode(), terminal.setCodexMode(), codex-mode body
class (mutually exclusive with claude-mode)
Claude mode:
- Auto-load scrollback when content fits the viewport
- Trim claude-keyboard.js scaffolding; parser/renderer/CSS tweaks
Bump virtual-keyboard.js?v=9 cache-bust.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
- Add Claude Code parsed view with block-based rendering (prompt, tool-use,
tool-result, code, diff, table, selection options, status bar)
- Add session status dots in sidebar and top bar (idle=yellow, working=green
with pulse animation) parsed from terminal title characters
- Differentiate active input prompt vs previous submitted prompts with
distinct background colors
- Fix Korean IME composition issue (last character on next line on Enter)
- Fix CSP inline script violation by moving to external sw-unregister.js
- Add per-block DOM diffing to prevent layout shifts on re-render
- Strip box-drawing borders from tool-result blocks for stable layout
- Add ngrok tunnel support, replace qrcode with qrcode-terminal
- Add Claude-specific keyboard action bar with mode toggle and shortcuts
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>