329 Commits
Author SHA1 Message Date
coso 0398fc8c8e chore: release v1.0.1 2026-04-01 07:09:52 +08:00
coso 732cf9b390 release: v1.0.0-beta 2026-03-31 02:18:13 +08:00
coso ae7b3163a9 chore: release v0.99.0 2026-03-30 14:31:05 +08:00
coso deceacc699 chore: release v0.98.0 2026-03-29 14:15:34 +08:00
coso dfbbb3d204 feat: refresh latest v0.97.0 release payload 2026-03-28 08:33:54 +08:00
coso 02ed1cd5b9 feat: finalize latest v0.97.0 release payload 2026-03-27 21:46:17 +08:00
coso 91dc5dd1ca feat: finalize latest v0.97.0 updates 2026-03-27 19:22:46 +08:00
coso 26e7c60fdd chore: release v0.97.0 2026-03-27 14:35:56 +08:00
coso e380c98649 feat: persist artifact tool sources and improve release workflows 2026-03-25 23:58:00 +08:00
coso 8b9f91bd31 feat: update automation workspace and release pipeline 2026-03-25 23:13:17 +08:00
coso 0ee56c1098 chore: release v0.96.0 2026-03-25 22:04:38 +08:00
coso 307b2d3670 feat: finalize oem cloud access integration 2026-03-25 01:39:23 +08:00
coso 544a2fa6c9 chore: finalize v0.95.0 release 2026-03-24 02:34:01 +08:00
coso 818c8fef7b chore: release v0.95.0 2026-03-24 00:56:05 +08:00
coso 1303f93a59 release: v0.94.0 2026-03-22 21:10:54 +08:00
coso b48d5b874f fix: include full v0.93.0 release changes 2026-03-22 00:50:45 +08:00
coso dc37baff36 release: v0.93.0 2026-03-21 23:10:41 +08:00
coso 7242707293 release: v0.92.0 2026-03-20 23:03:38 +08:00
Alex-wuhuandClaude Sonnet 4.6 fd069d8858 feat: add NovitaProvider (OpenAI-compatible) with models and tests
- Add src-tauri/crates/providers/src/providers/novita.rs: NovitaProvider
  following the OpenAICustomProvider pattern with default endpoint
  https://api.novita.ai/openai, NOVITA_API_KEY env var fallback,
  supported models (moonshotai/kimi-k2.5, deepseek/deepseek-v3.2,
  zai-org/glm-5), embedding model (qwen/qwen3-embedding-0.6b),
  StreamingProvider impl, and unit tests.
- Register NovitaProvider and its constants in providers/mod.rs.
- Fix system_providers.rs: update Novita api_host from
  https://api.novita.ai/v3/openai to https://api.novita.ai/openai.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-19 19:20:19 +08:00
coso a414f44872 release: v0.91.0 2026-03-19 19:05:53 +08:00
coso ad8427be93 fix: include remaining v0.90.0 updates 2026-03-18 11:22:02 +08:00
coso 8c2cf9f97b Release v0.90.0 2026-03-18 10:39:02 +08:00
coso 157e400c97 Release v0.89.1 2026-03-17 10:39:52 +08:00
coso 998fe555e5 fix release assets and refresh lime branding 2026-03-17 09:20:08 +08:00
coso d15d9aa65d feat: release v0.89.0 and rename Proxycast to Lime 2026-03-17 07:16:33 +08:00
coso f617fc4bb7 fix: unblock v0.88.0 release build 2026-03-16 17:09:20 +08:00
coso 723fafe621 feat: release v0.88.0 with automation and browser runtime upgrades 2026-03-16 15:28:21 +08:00
coso 0a75413c96 feat: release v0.87.0 with browser runtime and workbench improvements 2026-03-15 00:43:25 +08:00
cosoandClaude Opus 4.6 8e6001b570 chore: update Cargo.lock for v0.86.0
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-13 21:27:00 +08:00
cosoandClaude Opus 4.6 475f823b74 fix: update [package] version to 0.86.0 in Cargo.toml
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-13 21:23:55 +08:00
cosoandClaude Opus 4.6 9758c31140 feat: release v0.86.0 with full pending changes
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-13 21:05:42 +08:00
cosoandClaude Opus 4.6 8995ef9c68 feat: release v0.85.0 with full pending changes
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-13 02:40:20 +08:00
coso 621ab3ee73 feat: integrate AI summary into SessionContextService (P0 phase 1)
- SessionContextService 新增 ai_summary_service 可选字段
- 新增 new_with_ai_summary() 构造函数
- create_summary() 改为异步方法,优先使用 AI 摘要
- AI 摘要失败时自动降级到本地关键词提取
- 将 get_effective_context/preheat_session_context 改为异步
- 修复所有相关测试为 tokio::test
- 全部 11 个测试通过(7 session_context + 4 ai_summary)
2026-03-12 19:05:28 +08:00
cosoandClaude Opus 4.6 75309bd2ef feat: add AI summary service for context management (P0 phase 1)
- 创建 ai_summary_service.rs 模块,实现 AI 驱动的会话摘要
- 支持配置摘要长度、主题数量、决策数量
- 使用 JSON 格式返回结构化摘要(summary, key_topics, decisions)
- 包含完整的单元测试
- 当前使用 mock 实现,待后续集成真实 LLM 调用

相关文档:
- docs/iteration-notes/implementation-progress-report.md - 总体进度报告
- docs/iteration-notes/p0-phase1-implementation-plan.md - P0 阶段 1 详细计划
- docs/iteration-notes/p0-context-management-implementation.md - P0 实施文档
- docs/iteration-notes/context-management-upgrade-plan.md - 上下文管理升级方案

下一步:
- 改造 session_context_service.rs 集成 AI 摘要
- 替换 mock 实现为真实 LLM 调用
- 编写集成测试验证效果

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-12 18:40:22 +08:00
cosoandClaude Opus 4.6 2aa83ee7fc feat: release v0.84.0 with full pending changes
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-12 00:34:23 +08:00
coso bfacf764b7 feat: release v0.83.2 with full pending changes 2026-03-10 19:17:54 +08:00
coso e5d67a0d15 fix: update [package] version to 0.83.1 in Cargo.toml 2026-03-10 12:03:46 +08:00
coso b077a03213 feat: release v0.83.1 with OpenClaw integration and workbench improvements 2026-03-10 11:50:47 +08:00
coso dce4753488 feat: add OpenClaw commands and improve workbench functionality
- Add OpenClaw command registration in runner.rs
- Improve MarkdownRenderer with tests
- Enhance video canvas and sidebar components
- Update workbench controller and quick actions
- Add video theme panel renderers
- Update OpenClaw pages and types
2026-03-10 11:34:55 +08:00
coso daaa2352b6 fix: restore variable names without underscore prefix
These variables are actually used in debug builds, so they should not have underscore prefix.
2026-03-10 09:24:51 +08:00
coso 2adf8c2bc2 fix: resolve Windows compilation errors and warnings
- Add Manager trait import for windows_startup_cmd.rs
- Add explicit type annotations for PathBuf in windows_startup_cmd.rs
- Fix unused import warning in screenshot_capture_service.rs
- Prefix unused variables with underscore in runner.rs and aster_agent_cmd.rs
- Update package.json with Node.js engine requirement
2026-03-10 09:20:40 +08:00
coso 276e2064c2 fix: update ssh_connection.rs Path import 2026-03-10 08:23:51 +08:00
coso 90bd63908f feat: release v0.83.0 with full pending changes
✨ 新功能
- 新增 OpenClaw 服务集成和相关命令支持
- 新增 Windows 启动诊断命令和故障排查文档
- 新增样式库管理面板 (StyleLibraryPanel)
- 新增 A2UI 任务卡片组件和完整测试覆盖
- 新增输入栏多个子组件:提示路由弹窗、执行策略选择、模型扩展配置等
- 新增工作台创建入口主页和右侧面板扩展视图
- 新增运行时样式控制栏组件
- 新增样式运行时工具模块和测试
- 新增内容审查面板测试
- 新增多个工作台右侧面板能力:音频任务、视频任务、画外音任务、图片任务等
- 新增 Windows 支持包收集脚本
- 新增开发桥健康检查脚本

🐛 修复
- 修复 TypeScript 编译错误
- 修复崩溃诊断逻辑
- 修复 Tauri mock 核心模块
- 修复开发桥 HTTP 客户端
- 修复 webview API 调用
- 修复 Provider 模型列表组件
- 修复多个 Rust clippy 警告

🔧 优化与重构
- 重构输入栏组件架构,拆分为多个独立 hooks 和子组件
- 重构工作台右侧面板,拆分为多个独立模块和配置文件
- 优化 A2UI 组件渲染器和布局系统
- 优化内容创建器文档画布和工具栏
- 优化记忆层指标计算和测试
- 优化项目提示工具
- 优化主题工作台侧边栏
- 优化样式指南面板
- 优化工作台导航和面板渲染 hooks
- 优化确认策略创建工具
- 优化主题模块(novel、video)和共享面板渲染器
- 优化 Agent 事件转换器和会话存储
- 优化数据库 DAO 层
- 优化模型注册服务和技能服务
- 优化日志命令和应用运行器
- 优化开发桥调度器
- 更新 Windows 平台 Tauri 配置
- 更新 CI release workflow

📦 其他
- 新增 Windows 启动问题故障排查文档
- 更新 Playwright E2E 测试文档
- 更新构建和运维文档
- 更新常见问题文档
- 更新 README
2026-03-10 07:57:13 +08:00
coso ef8ca1dce4 fix: 修复所有测试和代码质量问题
- 修复 6 个失败的 Rust 测试
  - test_bundled_social_post_with_cover_skill_contract: 支持 SKILL.md 中的中文引号
  - workspace_commands_roundtrip: 使用驼峰命名 workspaceType
  - should_embed_social_image_tool_contract_in_default_skill: 更新为 **配图说明**
  - 修复 normalize 相关测试中的配图说明断言

- 修复 clippy 警告
  - 为多个枚举添加 #[derive(Default)]
  - 实现 std::str::FromStr trait 替代自定义 from_str
  - 修复不必要的 unwrap 调用
  - 使用 vec![] 宏替代 vec init then push

- 修复前端 ESLint 错误
  - ThemeWorkbenchSidebar: 20+ 个未使用变量加下划线前缀
  - useConfiguredProviders: 修复 React hooks 依赖项

- 所有核心测试通过 (328 passed; 0 failed)
- npm lint 通过
- 代码格式化通过
2026-03-09 09:44:45 +08:00
coso 4cbd13e84e feat: release v0.82.0 with code quality improvements
- 代码质量改进:修复大量 Rust 和 TypeScript lint 错误
- 实现 FromStr trait 替代手动 from_str 方法
- 优化代码结构和类型安全
2026-03-09 09:03:40 +08:00
coso 447c906cbf fix: resolve clippy warnings - add Default derives, implement FromStr traits, fix unnecessary unwraps 2026-03-09 09:03:17 +08:00
coso 2888352a00 feat: release v0.81.0 with full pending changes 2026-03-08 07:53:37 +08:00
cosoandClaude Opus 4.6 7516671610 feat: release v0.80.0 with gateway tunnel system and agent improvements
Major Features:
- Gateway tunnel system with Discord/Feishu/Telegram support
- Agent request tool policy management
- Aster session recovery mechanism
- Channel log viewer UI with filtering

Improvements:
- Refactor MCP database migration and config hot-reload
- Optimize request tool policy service
- Add comprehensive tests for new features

Fixes:
- Fix test compilation errors (Config gateway field, type inference)
- Fix doctest import paths
- Fix flaky antigravity token validation test
- Fix CI build issues

Dependencies:
- Update pnpm-lock.yaml and Cargo.lock

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-05 16:50:44 +08:00
coso fb06cca067 ci(release): make package version explicit for tauri action compatibility 2026-03-04 18:43:30 +08:00
coso 2557f22bb2 chore(release): v0.79.0 2026-03-04 18:23:59 +08:00