docs(changelog): note mouse-wheel scroll fix for WT users (#1298, #1331)

The Windows Terminal mouse-capture default-on change in #1169 also
restores the v0.8.14 wheel-scrolls-transcript behavior on Windows
Terminal. Before mouse capture, the terminal interpreted wheel events
as input-history navigation keys; with capture on, wheel events come
into the TUI and dispatch to the viewport scroll handler.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Hunter Bown
2026-05-09 23:02:29 -05:00
parent 74760a39d3
commit 263ff4be13
+5 -3
View File
@@ -28,9 +28,11 @@ published.
mid-session, the transport-closed error includes the captured stderr
tail instead of disappearing into `Stdio::null`. Useful for debugging
Node/Python MCP servers that fail well after `initialize`.
- Mouse capture now defaults on inside Windows Terminal (#1169). When
`WT_SESSION` is set, in-app text selection is enabled by default;
legacy conhost stays opt-in via `--mouse-capture` or `[tui]
- Mouse capture now defaults on inside Windows Terminal (#1169, #1298,
#1331). When `WT_SESSION` is set, in-app text selection is enabled
by default and the wheel scrolls the transcript again (rather than
the terminal interpreting wheel events as input-history keys).
Legacy conhost stays opt-in via `--mouse-capture` or `[tui]
mouse_capture = true` to preserve the protections from #878 / #898.
Selection now clamps to the transcript region instead of the
terminal painting native selection across the sidebar.