release: v0.9.0

This commit is contained in:
2026-03-01 21:15:34 +10:00
parent d9bae98c2d
commit a0e8d352f9
4 changed files with 29 additions and 5 deletions
+1 -1
View File
@@ -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;