Skip to content

v0.4.13

Choose a tag to compare

@github-actions github-actions released this 12 Feb 09:22
· 576 commits to master since this release
fix(web): Terminal resize and overflow issues

Fixed Terminal content being cut off when resizing or switching between
fullscreen/Review/Editor modes.

Root cause: TaskTerminal's inner content div lacked height constraints,
causing it to exceed parent container height (951px vs 683px) and
propagate incorrect dimensions to xterm.

Changes:
- Added min-h-0 overflow-hidden to TaskTerminal content div to prevent
  height overflow beyond parent container
- Added overflow-hidden to Terminal Content wrapper to contain xterm
- Enhanced XTerminal ResizeObserver with 250ms debounce to avoid
  excessive fits during layout animations
- Added layout flush and scrollToBottom after terminal fit

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>