From a0e8d352f95b73d723d5ba246678df29ec3f8fa5 Mon Sep 17 00:00:00 2001 From: Tao Date: Sun, 1 Mar 2026 21:15:34 +1000 Subject: [PATCH] release: v0.9.0 --- DEVLOG.md | 24 ++++++++++++++++++++++-- README.md | 4 ++-- docs/CHANGELOG.md | 4 ++++ openclaw-manager.js | 2 +- 4 files changed, 29 insertions(+), 5 deletions(-) diff --git a/DEVLOG.md b/DEVLOG.md index 706dace..153d610 100644 --- a/DEVLOG.md +++ b/DEVLOG.md @@ -1,10 +1,30 @@ # OpenClaw Manager — 开发日志 -> 最后更新:2026-02-28 -> 当前版本:v0.7.1 +> 最后更新:2026-03-01 +> 当前版本:v0.9.0 --- + +## v0.9.0 更新日志(2026-03-01) + +### New Features + +- Agents: Add Agent / Add Sub-Agent 向导支持 Telegram + Discord + - Telegram: 传统 group 绑定 + - Discord: 主 Agent 建议绑定 Channel;Sub-Agent 建议绑定 Thread +- Routing: 删除绑定提示文案增强(支持“更换 group/thread → 先删旧绑定再加新绑定”) + +### UX / UI + +- 顶部居中显示醒目的 OCM 版本标识 +- Agents 页面:Agent Tree 支持显示 bindings 概览(Telegram/Discord)并按 parentAgentId 分组 +- Setup Guide:补全 Telegram Allow Groups 步骤;Discord guide 按 channel/thread 经验重写 + +### Fixes + +- 修复 MAIN_HTML_SCRIPT 内联 JS 语法问题(tree toggle / i18n 单引号等),避免启动自检失败 + ## Unreleased(2026-02-28) ### Dashboard / Layout diff --git a/README.md b/README.md index c840da2..f0acd5d 100644 --- a/README.md +++ b/README.md @@ -60,9 +60,9 @@ Open [http://localhost:3333](http://localhost:3333) in your browser. For remote - **Backups / Rollback** — Browse auto-snapshots of `openclaw.json*` and restore any previous version (current config is auto-backed up first). - **Bilingual UI** — English and Chinese interface with one-click language switching. -## What's New (v0.8.x) +## What's New (v0.9.x) -- **Docs refresh (v0.8.x)**: updated English + Chinese guides and refreshed redacted screenshots. +- **Discord support (v0.9.x)**: add agent/sub-agent flows for Discord (main agent binds channel; sub-agent binds thread). - **README screenshots gallery**: all screenshots are now grouped into one collapsible section to keep the homepage short. - **Built-in CLI terminal**: run OpenClaw commands from any page with streaming output, presets, favorites, and Tab completion. - **Ops actions**: restart gateway, view logs, health check, backups (local + NAS), and cron management. diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index c1b5a28..28bc2ff 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -2,6 +2,10 @@ This is a user-facing summary derived from `DEVLOG.md`. +## v0.9.0 +- Agents: Telegram + Discord support in Add Agent / Add Sub-Agent wizard (main agent binds channel; sub-agent binds thread). +- UI: top-center OCM version badge; improved Telegram/Discord setup guides. + ## v0.8.2 - Docs: reorganize README screenshots into a collapsible gallery to reduce scroll. - Docs: add Backups / Rollback screenshot and README feature blurb. diff --git a/openclaw-manager.js b/openclaw-manager.js index 7c9aa27..1eb8943 100644 --- a/openclaw-manager.js +++ b/openclaw-manager.js @@ -24,7 +24,7 @@ const SCRIPT_DIR = __dirname; const MANAGER_CONFIG = path.join(SCRIPT_DIR, 'manager-config.json'); let PORT = 3333; let HOST = '0.0.0.0'; -const APP_VERSION = '0.8.2'; +const APP_VERSION = '0.9.0'; // --port 参数 const portIdx = process.argv.indexOf('--port'); if (portIdx !== -1 && process.argv[portIdx + 1]) PORT = parseInt(process.argv[portIdx + 1]) || 3333;