dc60c7a123
feat: animate minimal summary text with color wave
2026-04-05 01:22:37 +08:00
0c213b0a9f
feat: polish minimal summary loader interactions
2026-04-04 20:52:50 +08:00
3b710020fe
feat(chat): add randomized summary loaders in minimal mode
2026-04-04 19:47:17 +08:00
b9df354808
fix: 修复极简模式思考内容与SVG图标对齐问题
...
- 使用相对单位调整思考内容的垂直对齐
- 添加负margin-top让第一行文字中心与SVG图标中心对齐
- 计算公式:(1em - 1.7em) / 2,基于line-height自动适配
- 不影响工具步骤的对齐(工具header的line-height为1)
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-04-04 16:38:56 +08:00
c26cd3d3fd
fix: 修复极简模式多个问题并恢复偏好设置自动应用
...
- 修复极简模式下步骤竖线距离SVG不均匀的问题
- 使用flex布局让竖线自动填充空间
- 添加负margin让竖线延伸到下一个步骤
- 确保竖线上下距离SVG图标相等
- 修复SVG图标颜色问题
- 统一使用灰色(--claude-text-tertiary)
- 不再受颜色模式影响
- 修复思考内容自动滚动问题
- 添加registerThinkingRef和handleThinkingScroll支持
- 移除导致滚动异常的伪元素负margin
- 实现与堆叠模式一致的自动滚动行为
- 修复轮询改造后偏好设置不自动应用的问题
- 在loadInitialData中应用默认模型和运行模式
- 在createNewConversation前应用偏好设置
- 在loadConversation前应用偏好设置
- 确保新建或切换对话时使用用户设置的默认值
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-04-04 16:18:15 +08:00
a030ff954b
fix: 修复工具增强显示的多个问题
...
1. read_file 工具支持三种模式显示
- read 模式:显示完整文件内容
- search 模式:显示搜索匹配项和行号
- extract 模式:显示提取的多个片段
2. edit_file 工具兼容新旧数据格式
- 支持 old_string/new_string 格式(当前后端使用)
- 支持 replacements 数组格式(为未来扩展预留)
3. write_file 工具显示写入内容
- 显示完整的写入内容
- 使用绿色+号样式(与 edit_file 一致)
- 支持显示追加模式标识
4. 极简模式工具图标匹配修复
- 修复所有工具图标都显示为 run_command 的问题
- 使用与堆叠块模式相同的图标获取逻辑
- 正确显示每个工具对应的图标
5. 新增样式支持
- 搜索匹配项样式
- 提取片段样式
- 移除彩色侧边框,保持简洁
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-04-04 15:37:38 +08:00
321818f7ef
feat: 新增极简模式(Minimal Mode)
...
新增了一个全新的消息显示模式,提供更简洁的对话体验。
主要功能:
- 新增 MinimalBlocks.vue 组件,实现极简风格的消息块展示
- 在 ChatArea.vue 中集成极简模式渲染逻辑
- 在个性化设置中添加"极简模式"选项(blockDisplayMode)
- 支持三种显示模式:堆叠模式、极简模式、传统模式
技术实现:
- 使用 personalization store 管理显示模式状态
- 通过 computed 属性动态切换渲染组件
- 保持与现有堆叠模式和传统模式的兼容性
用户体验:
- 更清爽的界面布局
- 减少视觉干扰
- 适合快速浏览对话内容
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-04-04 14:47:45 +08:00
12c7a4bdd9
fix: remove legacy file edit tags
2026-03-17 22:43:51 +08:00
f3179e2a97
feat: 优化滚动锁定和个性化称呼功能
...
滚动锁定优化:
- 滚动锁定默认始终启用,不再根据输出状态自动解锁
- 深色模式下锁定图标显示为白色,与箭头图标保持一致
个性化称呼功能:
- AI 助手名称根据个性化设置中的"自称"动态显示
- 用户名称根据个性化设置中的"称呼"动态显示
- 页面初始化时自动加载个性化设置,无需打开个人空间
- 在"模型行为"中新增"使用自定义称呼"开关
- 开关关闭时显示默认的"AI Assistant"和"用户"
- 修复保存后开关状态被重置的问题
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-03-13 12:10:08 +08:00
bd863f6d38
feat: 优化图片/视频上传和显示功能
...
- 支持从本地一次选择多个文件上传
- 图片选择器上传完成后自动关闭
- 输入框和用户消息块显示缩略图(60x60px)而非文件名
- 输入框缩略图悬停时显示删除按钮(右上角 × 符号)
- 统一图片/视频预览样式,提升用户体验
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-03-13 11:40:54 +08:00
e395c82a9f
fix: 优化对话压缩和复制功能
...
- 隐藏前端系统消息块显示
- 修复压缩对话后自动跳转到新对话
- 压缩对话标题改为"原标题 压缩后"
- 复制对话标题改为"原标题 的副本"
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-03-09 17:59:53 +08:00
43409c523e
fix: 移除错误的对话切换跳转逻辑并修复工具执行返回值问题
...
主要修复:
1. 移除前端"取消跳转到正在运行的对话"的错误逻辑
- 删除 switchConversation 中的任务检查和确认提示
- 删除 createNewConversation 中的跳转回运行对话逻辑
- 删除 loadConversation 中对未定义变量 hasActiveTask 的引用
2. 修复后端工具执行返回值问题
- 修复 execute_tool_calls 在用户停止时返回 None 的 bug
- 确保所有返回路径都返回包含 stopped 和 last_tool_call_time 的字典
3. 其他改进
- 添加代码复制功能 (handleCopyCodeClick)
- 移除 FocusPanel 相关代码
- 更新个性化配置 (enhanced_tool_display)
- 样式和主题优化
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-03-08 17:42:07 +08:00
801d20591c
feat: 实现 REST API + 轮询模式,支持页面刷新后任务继续执行
...
主要改进:
- 新增 REST API 任务管理接口 (/api/tasks)
- 实现 150ms 轮询机制,提供流畅的流式输出体验
- 支持页面刷新后自动恢复任务状态
- WebSocket 断开时检测 REST API 任务,避免误停止
- 修复堆叠块融合问题,刷新后内容正确合并
- 修复思考块展开/折叠逻辑,只展开正在流式输出的块
- 修复工具块重复显示问题,通过注册机制实现状态更新
- 修复历史不完整导致内容丢失的问题
- 新增 tool_intent 事件处理,支持打字机效果显示
- 修复对话列表排序时 None 值比较错误
技术细节:
- 前端:新增 taskPolling.ts 和 task store 处理轮询逻辑
- 后端:TaskManager 管理任务生命周期和事件存储
- 状态恢复:智能判断是否需要从头重建,避免内容重复
- 工具块注册:恢复时注册到 toolActionIndex,支持状态更新
- Intent 显示:0.5-1秒打字机效果,历史加载直接显示
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-03-08 03:12:46 +08:00
c067df4e1b
feat: add include_domains search filter and UI display
2026-03-07 17:50:35 +08:00
4be61fe76e
feat: unify terminal session controls
2026-03-04 23:49:10 +08:00
8d0c187bbf
fix: ignore empty text blocks in stacks
2026-02-25 13:20:15 +08:00
bb91d22631
feat: add video send/view flow and guard model constraints
2026-01-30 17:04:33 +08:00
e2ba632ac8
feat: expand model support and qwen-vl ux
2026-01-03 07:01:24 +08:00
e903c99ca4
fix: refine title ribbon visuals and typing
2026-01-02 14:26:59 +08:00
d34fbe963a
fix: unify collapse animation and scroll lock reset
2026-01-02 12:39:23 +08:00
52f6135d37
fix: sync stacked more animation with container
2026-01-01 15:00:42 +08:00
4262922694
fix: intent streaming defaults and UI stability
2026-01-01 05:48:13 +08:00
713659a644
feat: refine stacked blocks toggle and animations
2026-01-01 03:06:05 +08:00
7639e0677b
fix: stabilize thinking block animation and bg streaming
2025-12-31 09:27:21 +08:00
385c8154ea
chore: pause container polling when tab hidden
2025-12-16 22:27:19 +08:00
760fae4920
fix: simplify folder icon handling
2025-12-16 18:01:33 +08:00
fc88a22272
fix: render monitor desktop immediately on load
2025-12-16 00:39:36 +08:00
c96e99cd13
fix(ui): load folder contents in monitor and improve messages
2025-12-15 22:34:25 +08:00
3729cae4d2
chore(ui): show real tool names and speed long inputs
2025-12-15 18:24:44 +08:00
28383722cc
fix: keep wait overlay alive for long waits
2025-12-15 00:52:32 +08:00
8c304c113f
fix: guard memory empty snapshot replay
2025-12-15 00:10:00 +08:00
9750b0b8f1
fix: sync wait overlay with runtime
2025-12-14 23:28:22 +08:00
d5e6c9c077
fix: keep todo scrolling simple and visible
2025-12-14 22:07:21 +08:00
8b250c5c6b
feat: redesign todo window animation and layout
2025-12-14 21:20:29 +08:00
9183e0caf0
fix: refine memory monitor scrolling and snapshots
2025-12-14 21:03:21 +08:00
8755688c8e
feat: enhance virtual monitor command/python playback
2025-12-14 17:38:03 +08:00
6d330b1388
chore: checkpoint before tool playback change
2025-12-14 14:43:54 +08:00
053db95fee
feat: virtual monitor
2025-12-14 04:22:00 +08:00
2f75c1c8bb
feat: stable version before virtual monitor timing fix
...
Current status includes:
- Virtual monitor surface and components
- Monitor store for state management
- Tool call animations and transitions
- Liquid glass shader integration
Known issue to fix: Tool status display timing - "正在xx" appears
after tool execution completes instead of when tool call starts.
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-13 17:12:12 +08:00
87ceaad92b
feat: improve ui feedback
2025-11-30 00:09:05 +08:00
4563fad2d9
feat: enhance workspace toggle and mobile topbar
2025-11-27 18:42:08 +08:00
7cc91571de
feat: modularize frontend layout
2025-11-25 22:41:15 +08:00