From ad0615a08fe9058acd5640ee8b830338ec551965 Mon Sep 17 00:00:00 2001 From: Jiang Bohan Date: Fri, 3 Apr 2026 15:38:38 +0800 Subject: [PATCH 1/3] docs(web): add v0.1.5 changelog entry for 2026-04-02 --- apps/web/features/landing/i18n/en.ts | 17 +++++++++++++++++ apps/web/features/landing/i18n/zh.ts | 17 +++++++++++++++++ 2 files changed, 34 insertions(+) diff --git a/apps/web/features/landing/i18n/en.ts b/apps/web/features/landing/i18n/en.ts index 7ae26655..99249e1f 100644 --- a/apps/web/features/landing/i18n/en.ts +++ b/apps/web/features/landing/i18n/en.ts @@ -272,6 +272,23 @@ export const en: LandingDict = { title: "Changelog", subtitle: "New updates and improvements to Multica.", entries: [ + { + version: "0.1.5", + date: "2026-04-02", + title: "Mentions & Permissions", + changes: [ + "@mention issues in comments with server-side auto-expansion", + "@all mention to notify every workspace member", + "Inbox auto-scrolls to the referenced comment from a notification", + "Repositories extracted into a standalone settings tab", + "CLI update support from the web runtime page and direct download for non-Homebrew installs", + "CLI commands for viewing issue execution runs and run messages", + "Agent permission model — owners and admins manage agents, members manage skills on their own agents", + "Per-issue serial execution to prevent concurrent task collisions", + "File upload now supports all file types", + "README redesign with quickstart guide", + ], + }, { version: "0.1.4", date: "2026-04-01", diff --git a/apps/web/features/landing/i18n/zh.ts b/apps/web/features/landing/i18n/zh.ts index 9f87b9f6..7c2554eb 100644 --- a/apps/web/features/landing/i18n/zh.ts +++ b/apps/web/features/landing/i18n/zh.ts @@ -272,6 +272,23 @@ export const zh: LandingDict = { title: "\u66f4\u65b0\u65e5\u5fd7", subtitle: "Multica \u7684\u6700\u65b0\u66f4\u65b0\u548c\u6539\u8fdb\u3002", entries: [ + { + version: "0.1.5", + date: "2026-04-02", + title: "提及与权限", + changes: [ + "评论中支持 @提及 Issue,服务端自动展开", + "支持 @all 提及工作区所有成员", + "收件箱通知点击后自动滚动到对应评论", + "仓库管理独立为设置页单独标签页", + "支持从网页端运行时页面更新 CLI,非 Homebrew 安装支持直接下载更新", + "新增 CLI 命令查看 Issue 执行记录和运行消息", + "Agent 权限模型优化——所有者和管理员管理 Agent,成员可管理自己 Agent 的技能", + "每个 Issue 串行执行,防止并发任务冲突", + "文件上传支持所有文件类型", + "README 重新设计,新增快速入门指南", + ], + }, { version: "0.1.4", date: "2026-04-01", From 2787bd60bed01f82278571cc5187102a686e3f56 Mon Sep 17 00:00:00 2001 From: Jiang Bohan Date: Fri, 3 Apr 2026 16:38:04 +0800 Subject: [PATCH 2/3] docs(web): add v0.1.6 changelog entry for 2026-04-03 --- apps/web/features/landing/i18n/en.ts | 16 ++++++++++++++++ apps/web/features/landing/i18n/zh.ts | 16 ++++++++++++++++ 2 files changed, 32 insertions(+) diff --git a/apps/web/features/landing/i18n/en.ts b/apps/web/features/landing/i18n/en.ts index 99249e1f..5ca5c6a2 100644 --- a/apps/web/features/landing/i18n/en.ts +++ b/apps/web/features/landing/i18n/en.ts @@ -272,6 +272,22 @@ export const en: LandingDict = { title: "Changelog", subtitle: "New updates and improvements to Multica.", entries: [ + { + version: "0.1.6", + date: "2026-04-03", + title: "Editor Overhaul & Agent Lifecycle", + changes: [ + "Unified Tiptap editor with a single Markdown pipeline for editing and display", + "Reliable Markdown paste, inline code spacing, and link styling", + "Agent archive and restore — soft delete replaces hard delete", + "Archived agents hidden from default agent list", + "Skeleton loading states, error toasts, and confirmation dialogs across the app", + "OpenCode added as a supported agent provider", + "Reply-triggered agent tasks now inherit thread-root @mentions", + "Granular real-time event handling for issues and inbox — no more full refetches", + "Unified image upload flow for paste and button in the editor", + ], + }, { version: "0.1.5", date: "2026-04-02", diff --git a/apps/web/features/landing/i18n/zh.ts b/apps/web/features/landing/i18n/zh.ts index 7c2554eb..9b463178 100644 --- a/apps/web/features/landing/i18n/zh.ts +++ b/apps/web/features/landing/i18n/zh.ts @@ -272,6 +272,22 @@ export const zh: LandingDict = { title: "\u66f4\u65b0\u65e5\u5fd7", subtitle: "Multica \u7684\u6700\u65b0\u66f4\u65b0\u548c\u6539\u8fdb\u3002", entries: [ + { + version: "0.1.6", + date: "2026-04-03", + title: "编辑器重构与 Agent 生命周期", + changes: [ + "统一 Tiptap 编辑器,编辑和展示共用单一 Markdown 渲染管线", + "Markdown 粘贴、行内代码间距和链接样式修复", + "Agent 支持归档和恢复——软删除替代硬删除", + "默认列表隐藏已归档的 Agent", + "全应用新增骨架屏加载态、错误提示和确认对话框", + "新增 OpenCode 作为支持的 Agent 提供商", + "回复触发的 Agent 任务自动继承主线程 @提及", + "Issue 和收件箱实时事件细粒度处理,不再全量刷新", + "编辑器中统一图片上传流程,支持粘贴和按钮上传", + ], + }, { version: "0.1.5", date: "2026-04-02", From 30cda933bc2a00cec3d15cb10fab49660e95ce14 Mon Sep 17 00:00:00 2001 From: Jiang Bohan Date: Tue, 7 Apr 2026 15:36:32 +0800 Subject: [PATCH 3/3] docs(web): add v0.1.7 changelog entry for 2026-04-05 --- apps/web/features/landing/i18n/en.ts | 14 ++++++++++++++ apps/web/features/landing/i18n/zh.ts | 14 ++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/apps/web/features/landing/i18n/en.ts b/apps/web/features/landing/i18n/en.ts index 5ca5c6a2..d761a690 100644 --- a/apps/web/features/landing/i18n/en.ts +++ b/apps/web/features/landing/i18n/en.ts @@ -272,6 +272,20 @@ export const en: LandingDict = { title: "Changelog", subtitle: "New updates and improvements to Multica.", entries: [ + { + version: "0.1.7", + date: "2026-04-05", + title: "Comment Pagination & CLI Polish", + changes: [ + "Comment list pagination in both the API and CLI", + "Inbox archive now dismisses all items for the same issue at once", + "CLI help output overhauled to match gh CLI style with examples", + "Attachments use UUIDv7 as S3 key and auto-link on issue/comment creation", + "@mention assigned agents on done or cancelled issues", + "Reply @mention inheritance skips when the reply only mentions members", + "Worktree setup preserves existing .env.worktree variables", + ], + }, { version: "0.1.6", date: "2026-04-03", diff --git a/apps/web/features/landing/i18n/zh.ts b/apps/web/features/landing/i18n/zh.ts index 9b463178..e6b18832 100644 --- a/apps/web/features/landing/i18n/zh.ts +++ b/apps/web/features/landing/i18n/zh.ts @@ -272,6 +272,20 @@ export const zh: LandingDict = { title: "\u66f4\u65b0\u65e5\u5fd7", subtitle: "Multica \u7684\u6700\u65b0\u66f4\u65b0\u548c\u6539\u8fdb\u3002", entries: [ + { + version: "0.1.7", + date: "2026-04-05", + title: "评论分页与 CLI 优化", + changes: [ + "评论列表支持分页,API 和 CLI 均已适配", + "收件箱归档操作现在一次性归档同一 Issue 的所有通知", + "CLI 帮助输出重新设计,匹配 gh CLI 风格并增加示例", + "附件使用 UUIDv7 作为 S3 key,创建 Issue/评论时自动关联附件", + "支持在已完成或已取消的 Issue 上 @提及已分配的 Agent", + "回复仅 @提及成员时跳过父级提及继承逻辑", + "Worktree 环境配置保留已有的 .env.worktree 变量", + ], + }, { version: "0.1.6", date: "2026-04-03",