claude-code-best
e86573ac2f
fix: 修复 -r 模式下键盘输入无响应
两个根因:
1. earlyInput 的 readableHandler 残留在 stdin 上
setAppCallbacks() 在反编译项目中从未被调用,导致
stopCapturingEarlyInput() 是 no-op,readableHandler
在 Ink 的 handleReadable 之前消费所有 stdin 数据。
修复:在 handleSetRawMode(true) 时移除非自身的 readable listeners。
2. React 19 layout effect cleanup 顺序问题
React 19 先运行新树的 layout effects,再清理旧树。
当旧树(showSetupDialog)比新树(launchResumeChooser)
有更多 useInput hooks 时,旧树 cleanup 把
rawModeEnabledCount 降到 0,错误关闭 raw mode。
修复:当 count=0 但仍有活跃 EventEmitter listeners 时恢复 count。
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-07 23:54:09 +08:00
..
2026-04-02 20:28:08 +08:00
2026-04-01 01:00:10 +08:00
2026-03-31 23:32:58 +08:00
2026-04-07 16:17:48 +08:00
2026-04-07 16:17:48 +08:00
2026-04-07 16:17:48 +08:00
2026-04-07 22:26:45 +08:00
2026-04-07 22:40:59 +08:00
2026-04-03 14:14:35 +08:00
2026-04-07 16:17:48 +08:00
2026-04-01 01:00:10 +08:00
2026-04-07 15:36:29 +08:00
2026-04-06 10:15:56 +08:00
2026-04-01 01:00:10 +08:00
2026-04-07 22:26:45 +08:00
2026-04-01 01:00:10 +08:00
2026-04-07 22:26:45 +08:00
2026-04-01 01:00:10 +08:00
2026-03-31 20:40:16 +08:00
2026-04-04 23:24:27 +08:00
2026-04-01 17:11:09 +08:00
2026-03-31 19:22:47 +08:00
2026-03-31 19:22:47 +08:00
2026-04-01 01:00:10 +08:00
2026-03-31 23:03:47 +08:00
2026-03-31 23:03:47 +08:00
2026-03-31 20:40:16 +08:00
2026-04-07 16:17:48 +08:00
2026-04-01 01:00:10 +08:00
2026-04-01 01:00:10 +08:00
2026-04-07 22:41:35 +08:00
2026-04-06 22:09:28 +08:00
2026-04-01 01:00:10 +08:00
2026-04-04 23:24:27 +08:00
2026-04-04 23:24:27 +08:00
2026-04-07 22:26:45 +08:00
2026-04-07 16:17:48 +08:00
2026-03-31 23:32:58 +08:00
2026-04-07 22:41:35 +08:00
2026-03-31 19:22:47 +08:00
2026-03-31 19:22:47 +08:00
2026-04-06 22:09:28 +08:00
2026-03-31 19:22:47 +08:00
2026-03-31 19:22:47 +08:00
2026-03-31 19:22:47 +08:00
2026-04-07 23:54:09 +08:00
2026-03-31 19:22:47 +08:00
2026-04-07 16:17:48 +08:00
2026-04-07 22:26:45 +08:00
2026-03-31 19:22:47 +08:00
2026-04-01 01:00:10 +08:00
2026-04-01 01:00:10 +08:00
2026-04-07 16:17:48 +08:00
2026-03-31 19:22:47 +08:00
2026-03-31 19:22:47 +08:00
2026-03-31 19:22:47 +08:00
2026-03-31 23:03:47 +08:00
2026-04-01 11:57:16 +08:00