docs(changelog): sync 0.19.2 from apps/kimi-code/CHANGELOG.md (#1063)

This commit is contained in:
qer 2026-06-24 12:46:27 +08:00 committed by GitHub
parent 66640380eb
commit 51723bee1a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 82 additions and 0 deletions

View file

@ -6,6 +6,47 @@ outline: 2
This page documents the changes in each Kimi Code CLI release.
## 0.19.2 (2026-06-24)
### Features
- Keep drag-and-drop workspace reordering in the web sidebar, with sort order persisted locally; sessions now also float to the top of their group as soon as a new message arrives.
- Add an Alt+S shortcut in the model picker to switch the model for the current session only, without saving it as the default.
- Add a Ctrl+T shortcut to expand and collapse a truncated todo list.
- Add `-c` as a shorthand for `--continue`.
### Bug Fixes
- Fix yolo mode in the web app auto-approving plan reviews and sensitive file access.
- Fix resume not realigning a tool call that was interrupted mid-history.
- Fix the composer's ↑/↓ input-history recall doing nothing right after the first message of a new session.
- Fix stale rows occasionally leaving duplicate input boxes after tall content shrinks.
- Fix inline images being rendered as broken escape sequences in the transcript.
- Fix code blocks nested inside list items rendering blank in the web chat after a turn finishes generating.
- Fix the Tab key unexpectedly opening the file completion list.
- Fix clipboard copy actions in the web UI when served over plain HTTP.
- Fix the web question prompt missing the free-text Other option.
- Fix web chat stop actions so stale prompt ids fall back to cancelling the active session.
### Polish
- Read large text files in bounded memory and read tail lines without scanning whole files.
- Show the command in running Bash tool cards and allow expanding it with Ctrl+O before the result arrives.
- Allow the web sidebar and detail panel to be resized up to the available viewport width, keeping their resize handles reachable on narrow windows.
- Show subcommand suggestions after Tab-completing a slash command name.
- Show a transient footer hint when an image is detected in the clipboard, displaying the platform-appropriate paste shortcut.
- Persist the collapsed state of workspace groups in the web sidebar across page reloads.
- Add a development-mode indicator to the web sidebar for local development.
- Optimize the loading tips display.
### Refactors
- Reorganize the web app's components into area subdirectories (chat/settings/dialogs/mobile) and refresh the component path comments.
- Extract several composer pieces into reusable composables.
- Extract pure turn-rendering helpers out of the chat pane into their own module.
- Extract the beta conversation outline (table of contents) into its own component.
- Extract the workspace group rendering out of the sidebar into its own component.
## 0.19.1 (2026-06-23)
### Bug Fixes

View file

@ -6,6 +6,47 @@ outline: 2
本页记录 Kimi Code CLI 每个版本的变更内容。
## 0.19.22026-06-24
### 新功能
- 保持 web 侧边栏允许拖放工作区排序,排序结果在本地持久化;现在会话一旦收到新消息也会立即上浮到其分组顶部。
- 在模型选择器中新增 `Alt+S` 快捷键,仅切换当前会话的模型,而不保存为默认值。
- 新增 `Ctrl+T` 快捷键,用于展开和折叠被截断的待办列表。
- 新增 `-c` 作为 `--continue` 的简写。
### 修复
- 修复 web 应用中 YOLO 模式会自动批准计划审查和敏感文件访问的问题。
- 修复会话恢复时未重新对齐在历史中段被中断的工具调用的问题。
- 修复新会话首条消息之后,输入框的 `↑`/`↓` 输入历史回溯无效的问题。
- 修复偶发的陈旧行在较高内容收缩后留下重复输入框的问题。
- 修复内联图片在对话记录中被渲染为损坏的转义序列的问题。
- 修复嵌套在列表项中的代码块在 web 聊天的一轮生成结束后渲染为空白的问题。
- 修复 `Tab` 键意外打开文件补全列表的问题。
- 修复 web UI 通过普通 HTTP 提供时剪贴板复制操作失效的问题。
- 修复 web 问题提示缺少自由文本 Other 选项的问题。
- 修复 web 聊天停止操作,使过期的 prompt id 回退为取消当前会话。
### 优化
- 在受控内存中读取大型文本文件,并无需扫描整个文件即可读取尾部行。
- 在运行中的 Bash 工具卡片中显示命令,并允许在结果返回前使用 `Ctrl+O` 展开。
- 允许将 web 侧边栏和详情面板调整至可用视口宽度,并在窄窗口中保持其调整大小的手柄可达。
- 在 `Tab` 补全斜杠命令名称后显示子命令建议。
- 当剪贴板中检测到图片时显示一个短暂的底部提示,展示平台对应的粘贴快捷键。
- 在 web 侧边栏中跨页面重新加载持久化工作区分组的折叠状态。
- 在 web 侧边栏中新增用于本地开发的开发模式指示器。
- 优化加载提示的显示。
### 重构
- 将 web 应用的组件按功能子目录chat/settings/dialogs/mobile重组并刷新组件路径注释。
- 将输入框的若干组件提取为可复用的 composable。
- 将纯轮次渲染辅助函数从对话面板中提取到独立模块。
- 将 beta 版对话大纲(目录)提取为独立组件。
- 将工作区分组渲染从侧边栏中提取为独立组件。
## 0.19.12026-06-23
### 修复