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

推荐订阅源

Hugging Face - Blog
Hugging Face - Blog
Google DeepMind News
Google DeepMind News
云风的 BLOG
云风的 BLOG
WordPress大学
WordPress大学
Vercel News
Vercel News
Apple Machine Learning Research
Apple Machine Learning Research
T
Tailwind CSS Blog
I
InfoQ
小众软件
小众软件
Recent Announcements
Recent Announcements
博客园 - 【当耐特】
The GitHub Blog
The GitHub Blog
大猫的无限游戏
大猫的无限游戏
美团技术团队
T
The Blog of Author Tim Ferriss
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
酷 壳 – CoolShell
酷 壳 – CoolShell
MongoDB | Blog
MongoDB | Blog
V
V2EX
J
Java Code Geeks
有赞技术团队
有赞技术团队
博客园 - 聂微东
B
Blog RSS Feed
博客园 - 司徒正美

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: polish Mac settings layout · openclaw/openclaw@55ca2df
steipete · 2026-05-18 · via Recent Commits to openclaw:main

@@ -11,6 +11,9 @@ struct GeneralSettings: View {

1111

case connection

1212

}

131314+

private static let remoteFieldWidth: CGFloat = 320

15+

private static let remoteSecretFieldWidth: CGFloat = 300

16+1417

@Bindable var state: AppState

1518

@AppStorage(cameraEnabledKey) private var cameraEnabled: Bool = false

1619

let page: Page

@@ -384,6 +387,7 @@ struct GeneralSettings: View {

384387

self.applyDiscoveredGateway(gateway)

385388

}

386389

}

390+

.frame(maxWidth: .infinity, alignment: .leading)

387391

.padding(.horizontal, 14)

388392

.padding(.vertical, 11)

389393

.overlay(alignment: .bottom) {

@@ -500,7 +504,7 @@ struct GeneralSettings: View {

500504

SettingsCardRow(title: "SSH target", subtitle: "User and host for the remote Gateway machine.") {

501505

TextField("user@host[:22]", text: self.$state.remoteTarget)

502506

.textFieldStyle(.roundedBorder)

503-

.frame(width: 420)

507+

.frame(width: Self.remoteFieldWidth)

504508

self.remoteTestButton(disabled: !canTest)

505509

}

506510

if let validationMessage {

@@ -514,20 +518,20 @@ struct GeneralSettings: View {

514518

}

515519516520

private var remoteDirectRow: some View {

517-

VStack(alignment: .leading, spacing: 0) {

518-

SettingsCardRow(title: "Gateway URL", subtitle: "The WebSocket URL exposed by the remote Gateway.") {

519-

TextField("wss://gateway.example.ts.net", text: self.$state.remoteUrl)

520-

.textFieldStyle(.roundedBorder)

521-

.frame(width: 420)

522-

self.remoteTestButton(

523-

disabled: self.state.remoteUrl.trimmingCharacters(in: .whitespacesAndNewlines).isEmpty)

521+

SettingsCardRow(title: "Gateway URL", subtitle: "The WebSocket URL exposed by the remote Gateway.") {

522+

VStack(alignment: .leading, spacing: 6) {

523+

HStack(spacing: 8) {

524+

TextField("wss://gateway.example.ts.net", text: self.$state.remoteUrl)

525+

.textFieldStyle(.roundedBorder)

526+

.frame(width: Self.remoteFieldWidth)

527+

self.remoteTestButton(

528+

disabled: self.state.remoteUrl.trimmingCharacters(in: .whitespacesAndNewlines).isEmpty)

529+

}

530+

Text("Use wss:// for public hosts. ws:// is allowed for localhost, LAN, .local, and Tailnet hosts.")

531+

.font(.caption)

532+

.foregroundStyle(.secondary)

533+

.fixedSize(horizontal: false, vertical: true)

524534

}

525-

Text(

526-

"Use wss:// for public hosts. ws:// is allowed for localhost, LAN, .local, and Tailnet hosts.")

527-

.font(.caption)

528-

.foregroundStyle(.secondary)

529-

.padding(.horizontal, 14)

530-

.padding(.bottom, 10)

531535

}

532536

}

533537

@@ -540,7 +544,7 @@ struct GeneralSettings: View {

540544

{

541545

SecureField("remote gateway auth token (gateway.remote.token)", text: self.$state.remoteToken)

542546

.textFieldStyle(.roundedBorder)

543-

.frame(width: 360)

547+

.frame(width: Self.remoteSecretFieldWidth)

544548

}

545549

if self.state.remoteTokenUnsupported {

546550

Text(

@@ -566,6 +570,7 @@ struct GeneralSettings: View {

566570

}

567571

}

568572

.buttonStyle(.borderedProminent)

573+

.frame(minWidth: 116)

569574

.disabled(self.remoteStatus == .checking || disabled)

570575

}

571576