release: v1.0.7 — 依赖包名修正、Gateway crash loop 修复

This commit is contained in:
10000ge10000
2026-03-06 00:33:17 +08:00
parent 20a8c016a4
commit e844b4754b
9 changed files with 130 additions and 9 deletions

View File

@@ -136,6 +136,14 @@ local port = uci:get("openclaw", "main", "port") or "18789"
openBtn.href = url;
openBtn.style.display = '';
showIframe(url);
} else if (d.gateway_starting) {
statusTextEl.innerHTML = '<span style="color:#9a6700;">⏳ 网关正在启动</span>';
openBtn.style.display = 'none';
loading.innerHTML = '<div style="text-align:center;color:#666;">' +
'<div style="font-size:40px;margin-bottom:12px;">⏳</div>' +
'<div style="font-size:15px;margin-bottom:6px;">OpenClaw 网关正在启动中...</div>' +
'<div style="font-size:12px;color:#999;">首次启动可能需要 2~5 分钟,请耐心等待,页面会自动刷新。</div>' +
'</div>';
} else {
statusTextEl.innerHTML = '<span style="color:#cf222e;">● 网关未运行</span>';
openBtn.style.display = 'none';