惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

V
Visual Studio Blog
博客园 - 司徒正美
Hugging Face - Blog
Hugging Face - Blog
博客园 - 叶小钗
The Cloudflare Blog
D
DataBreaches.Net
J
Java Code Geeks
G
Google Developers Blog
L
LangChain Blog
N
Netflix TechBlog - Medium
Stack Overflow Blog
Stack Overflow Blog
月光博客
月光博客
酷 壳 – CoolShell
酷 壳 – CoolShell
WordPress大学
WordPress大学
小众软件
小众软件
量子位
Apple Machine Learning Research
Apple Machine Learning Research
P
Proofpoint News Feed
博客园_首页
罗磊的独立博客
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
B
Blog
腾讯CDC

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(macos): keep dashboard failures in window · openclaw/...
steipete · 2026-05-18 · via Recent Commits to openclaw:main

@@ -80,6 +80,17 @@ final class DashboardWindowController: NSWindowController, WKNavigationDelegate,

8080

self.window?.performClose(nil)

8181

}

828283+

func showFailure(title: String, message: String, detail: String? = nil) {

84+

self.currentURL = URL(string: "about:blank")!

85+

self.auth = DashboardWindowAuth(gatewayUrl: nil, token: nil, password: nil)

86+

self.refreshNativeAuthScript(url: self.currentURL, auth: self.auth)

87+

self.webView.stopLoading()

88+

self.webView.loadHTMLString(

89+

Self.failureHTML(title: title, message: message, detail: detail, url: nil),

90+

baseURL: nil)

91+

self.show()

92+

}

93+8394

private func load(_ url: URL) {

8495

dashboardWindowLogger.debug("dashboard load \(url.absoluteString, privacy: .public)")

8596

self.webView.load(URLRequest(url: url))

@@ -282,54 +293,107 @@ final class DashboardWindowController: NSWindowController, WKNavigationDelegate,

282293

if nsError.domain == NSURLErrorDomain, nsError.code == NSURLErrorCancelled { return }

283294

dashboardWindowLogger.error(

284295

"dashboard load failed url=\(self.currentURL.absoluteString, privacy: .public) error=\(error.localizedDescription, privacy: .public)")

285-

let html = Self.failureHTML(url: self.currentURL, message: error.localizedDescription)

296+

let html = Self.failureHTML(

297+

title: "Dashboard unavailable",

298+

message: error.localizedDescription,

299+

detail: "The dashboard window is open, but the web UI could not load from this endpoint.",

300+

url: self.currentURL)

286301

self.webView.loadHTMLString(html, baseURL: nil)

287302

}

288303289-

private static func failureHTML(url: URL, message: String) -> String {

290-

"""

304+

private static func failureHTML(title: String, message: String, detail: String?, url: URL?) -> String {

305+

let detailHTML = detail.map { "<p class=\"detail\">\(self.htmlEscape($0))</p>" } ?? ""

306+

let urlHTML = url.map { "<code>\(self.htmlEscape($0.absoluteString))</code>" } ?? ""

307+

return """

291308

<!doctype html>

292309

<html>

293310

<head>

294311

<meta charset="utf-8">

295312

<style>

296313

:root { color-scheme: light dark; }

314+

* { box-sizing: border-box; }

297315

body {

298316

margin: 0;

299317

min-height: 100vh;

300318

display: grid;

301319

place-items: center;

302-

background: Canvas;

303-

color: CanvasText;

304-

font: -apple-system-body;

320+

background: #101114;

321+

color: rgba(255,255,255,.92);

322+

font: 15px -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;

305323

}

306324

main {

307-

width: min(520px, calc(100vw - 64px));

308-

line-height: 1.4;

325+

width: min(540px, calc(100vw - 72px));

326+

padding: 34px;

327+

border: 1px solid rgba(255,255,255,.12);

328+

border-radius: 22px;

329+

background: rgba(255,255,255,.035);

330+

box-shadow: 0 28px 90px rgba(0,0,0,.36);

331+

line-height: 1.45;

332+

}

333+

.badge {

334+

width: 44px;

335+

height: 44px;

336+

display: grid;

337+

place-items: center;

338+

margin-bottom: 20px;

339+

border-radius: 14px;

340+

background: rgba(255,255,255,.07);

341+

color: #ff746b;

342+

font-size: 24px;

309343

}

310344

h1 {

311-

margin: 0 0 10px;

312-

font: -apple-system-title2;

313-

font-weight: 650;

345+

margin: 0 0 12px;

346+

font-size: 24px;

347+

line-height: 1.16;

348+

font-weight: 700;

349+

letter-spacing: 0;

350+

}

351+

p {

352+

margin: 0;

353+

color: rgba(255,255,255,.76);

354+

font-size: 16px;

355+

}

356+

.detail {

357+

margin-top: 14px;

358+

color: rgba(255,255,255,.56);

359+

font-size: 13px;

314360

}

315-

p { margin: 8px 0; color: color-mix(in srgb, CanvasText 72%, transparent); }

316361

code {

317362

display: block;

318-

margin-top: 14px;

363+

margin-top: 18px;

319364

padding: 12px;

320-

border-radius: 8px;

321-

background: color-mix(in srgb, CanvasText 8%, transparent);

322-

color: CanvasText;

365+

border: 1px solid rgba(255,255,255,.08);

366+

border-radius: 10px;

367+

background: rgba(0,0,0,.26);

368+

color: rgba(255,255,255,.76);

323369

overflow-wrap: anywhere;

324370

font: 12px ui-monospace, SFMono-Regular, Menlo, monospace;

325371

}

372+

@media (prefers-color-scheme: light) {

373+

body { background: #f5f6f8; color: rgba(0,0,0,.86); }

374+

main {

375+

background: rgba(255,255,255,.84);

376+

border-color: rgba(0,0,0,.1);

377+

box-shadow: 0 28px 90px rgba(0,0,0,.12);

378+

}

379+

.badge { background: rgba(0,0,0,.06); }

380+

p { color: rgba(0,0,0,.68); }

381+

.detail { color: rgba(0,0,0,.54); }

382+

code {

383+

background: rgba(0,0,0,.05);

384+

border-color: rgba(0,0,0,.08);

385+

color: rgba(0,0,0,.68);

386+

}

387+

}

326388

</style>

327389

</head>

328390

<body>

329391

<main>

330-

<h1>Dashboard unavailable</h1>

392+

<div class="badge">!</div>

393+

<h1>\(self.htmlEscape(title))</h1>

331394

<p>\(self.htmlEscape(message))</p>

332-

<code>\(self.htmlEscape(url.absoluteString))</code>

395+

\(detailHTML)

396+

\(urlHTML)

333397

</main>

334398

</body>

335399

</html>