docs: collapse README screenshots + bump to v0.8.2 (#1)

Merged after adding Backups/Rollback docs + README screenshot gallery (v0.8.2).
This commit is contained in:
dtzp555-max
2026-02-28 21:59:37 +10:00
committed by GitHub
parent 474f62a4c7
commit f67d9d2991
5 changed files with 43 additions and 43 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
#!/usr/bin/env node
// ================================================================
// OpenClaw Manager v0.7.1
// OpenClaw Manager v0.8.2
// 跨平台本地管理工具 (Windows / macOS / Linux)
//
// 用法:
@@ -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.7.1';
const APP_VERSION = '0.8.2';
// --port 参数
const portIdx = process.argv.indexOf('--port');
if (portIdx !== -1 && process.argv[portIdx + 1]) PORT = parseInt(process.argv[portIdx + 1]) || 3333;