8da51b3b68
fix(ui): refine dark mode menu highlights
2026-05-29 00:20:31 +08:00
0b6b39f262
fix(ui): refine sidebar and personal space styling
2026-05-28 14:15:02 +08:00
3bc6f718eb
feat(ui): refine sidebar workspace and code blocks
2026-05-28 03:53:49 +08:00
cd82c6d658
fix(ui,runtime,search): merge runtime/frontend stabilization into main
2026-05-27 16:38:19 +08:00
8395cf8b4b
fix(prompt): merge disabled-tool notice into leading system prompts
2026-05-09 18:56:49 +08:00
bb6bfff176
fix(ui): stabilize tool header icons and mcp completion label
2026-04-27 15:51:52 +08:00
9d8beacc8d
fix: align thinking and tool status text in blocks
2026-04-27 15:35:10 +08:00
3cd8bdabef
feat(ui): add refresh button for showhtml cards
2026-04-27 01:42:24 +08:00
9199f5ca7c
fix: unify show cards rendering and prompt constraints
2026-04-26 18:13:24 +08:00
24c702c0af
fix(show_html): add js mode with sandbox iframe rendering
2026-04-26 17:13:08 +08:00
ac788daa03
fix(show_html): freeze completed card during streaming
2026-04-26 16:52:22 +08:00
383e68188c
fix: stabilize show_html rendering and restore conversation mode state
2026-04-26 01:04:23 +08:00
33d270ff63
fix: stabilize show_html streaming rendering and recovery
2026-04-25 23:17:07 +08:00
1c928d7518
chore: backup snapshot before show_html scroll rework
2026-04-25 20:39:52 +08:00
6379f8c729
feat: complete conversation versioning UX and restore workflow
2026-04-11 16:16:40 +08:00
90233690ad
feat: add json-based extensible model registry and dynamic model UI
2026-04-09 20:56:54 +08:00
39af4151d9
fix: enforce max-width hard wrapping in chat input and bubbles
2026-04-07 11:50:28 +08:00
6f2f854f6d
fix: refine mobile assistant content spacing
2026-04-05 21:25:01 +08:00
3e800609c5
fix: tighten mobile chat gutters and user bubble width
2026-04-05 20:54:57 +08:00
a5412dae34
fix: adjust sub-agent notice spacing in minimal mode
2026-04-05 16:58:22 +08:00
2700a25702
feat: add per-user-message work timer with persistence
2026-04-05 15:14:29 +08:00
0c213b0a9f
feat: polish minimal summary loader interactions
2026-04-04 20:52:50 +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
bd863f6d38
feat: 优化图片/视频上传和显示功能
...
- 支持从本地一次选择多个文件上传
- 图片选择器上传完成后自动关闭
- 输入框和用户消息块显示缩略图(60x60px)而非文件名
- 输入框缩略图悬停时显示删除按钮(右上角 × 符号)
- 统一图片/视频预览样式,提升用户体验
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-03-13 11:40:54 +08:00
77b96623ac
feat: 优化手机端UI布局和样式
...
- 手机端对话内容左右边距减小,AI消息更贴近屏幕边缘
- 修复工具intent文本溢出显示省略号,保持箭头和图标位置不变
- 重构手机端左上角菜单为纵向下拉样式,新增"新建对话"选项
- 统一菜单图标大小和线条粗细,支持亮色/暗色主题自动适配
- 修复个人空间弹窗顶部被状态栏遮挡问题
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-03-09 00:20:47 +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
5ce21eb280
修复手机端个人空间选项卡滑动问题
...
- 为选项卡容器添加 width: 100% 和 max-width: 100% 限制宽度
- 添加 -webkit-overflow-scrolling: touch 启用 iOS 平滑滚动
- 添加 touch-action: pan-x 明确允许横向触摸滚动
- 添加 scroll-behavior: smooth 实现平滑滚动效果
- 添加 overscroll-behavior-x: contain 防止滚动溢出
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-03-08 04:52:30 +08:00
50b0dd9336
fix: wrap chat text and align header fonts
2026-02-02 18:34:07 +08:00
462b0ed6f3
feat: move model and mode pickers to header bar
2026-01-30 15:55:27 +08:00
88dc7e02a4
feat: improve onboarding and copy ux
2026-01-19 21:02:24 +08:00
e256182304
fix: stabilize code block font to prevent jitter
2026-01-07 19:06:04 +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
7853830624
feat: improve vlm workflow and workspace image serving
2026-01-01 18:56:29 +08:00
f725212988
feat: support inline image rendering via show_image and user_upload route
2026-01-01 16:41:24 +08:00
52f6135d37
fix: sync stacked more animation with container
2026-01-01 15:00:42 +08:00
eeb3db084b
chore: snapshot before collapse fix
2026-01-01 14:23:39 +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
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
3a7ed2e042
fix: polish streaming state and ui controls
2025-11-30 00:54:55 +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
4fe0ee473a
feat: improve mobile overlays and focus panel
2025-11-26 23:50:57 +08:00
4cd4232c62
Revert "feat: restyle utility panel and streaming focus"
...
This reverts commit 931a0488cc .
2025-11-26 20:21:49 +08:00
931a0488cc
feat: restyle utility panel and streaming focus
2025-11-26 20:00:11 +08:00
7cc91571de
feat: modularize frontend layout
2025-11-25 22:41:15 +08:00
91371b4e94
fix: restore chat container height
2025-11-25 21:25:08 +08:00