Some checks failed
ClawSweeper Dispatch / dispatch (push) Has been cancelled
CodeQL / Security High (actions) (push) Has been cancelled
CodeQL / Security High (channel-runtime-boundary) (push) Has been cancelled
CodeQL / Security High (core-auth-secrets) (push) Has been cancelled
CodeQL / Security High (mcp-process-tool-boundary) (push) Has been cancelled
CodeQL / Security High (network-ssrf-boundary) (push) Has been cancelled
CodeQL / Security High (plugin-trust-boundary) (push) Has been cancelled
CodeQL / Security High (process-exec-boundary) (push) Has been cancelled
Docs Sync Publish Repo / sync-publish-repo (push) Has been cancelled
Docs / docs (push) Has been cancelled
OpenClaw Stable Main Closeout / Resolve stable release closeout inputs (push) Has been cancelled
OpenClaw Stable Main Closeout / Verify stable main closeout (push) Has been cancelled
Workflow Sanity / no-tabs (push) Has been cancelled
Workflow Sanity / actionlint (push) Has been cancelled
Workflow Sanity / generated-doc-baselines (push) Has been cancelled
CI / runner-admission (push) Has been cancelled
CI / preflight (push) Has been cancelled
CI / security-fast (push) Has been cancelled
CI / pnpm-store-warmup (push) Has been cancelled
CI / build-artifacts (push) Has been cancelled
CI / native-i18n (push) Has been cancelled
CI / ${{ matrix.check_name }} (push) Has been cancelled
CI / ${{ matrix.checkName }} (push) Has been cancelled
CI / checks-node-compat-node22 (push) Has been cancelled
CI / check-bundled-channel-config-metadata (push) Has been cancelled
CI / check-dependencies (push) Has been cancelled
CI / check-guards (push) Has been cancelled
CI / check-lint (push) Has been cancelled
CI / check-prod-types (push) Has been cancelled
CI / check-shrinkwrap (push) Has been cancelled
CI / check-test-types (push) Has been cancelled
CI / check-additional-boundaries-a (push) Has been cancelled
CI / check-additional-boundaries-bcd (push) Has been cancelled
CI / check-additional-extension-bundled (push) Has been cancelled
CI / check-additional-extension-channels (push) Has been cancelled
CI / check-additional-extension-package-boundary (push) Has been cancelled
CI / check-additional-runtime-topology-architecture (push) Has been cancelled
CI / check-session-accessor-boundary (push) Has been cancelled
CI / check-session-transcript-reader-boundary (push) Has been cancelled
CI / check-docs (push) Has been cancelled
CI / skills-python (push) Has been cancelled
CI / macos-swift (push) Has been cancelled
CI / ios-build (push) Has been cancelled
CI / ci-timings-summary (push) Has been cancelled
Native App Locale Refresh / Refresh native fa (push) Has been cancelled
Native App Locale Refresh / Refresh native fr (push) Has been cancelled
Native App Locale Refresh / Refresh native hi (push) Has been cancelled
Native App Locale Refresh / Refresh native id (push) Has been cancelled
Native App Locale Refresh / Refresh native it (push) Has been cancelled
Native App Locale Refresh / Refresh native ja-JP (push) Has been cancelled
Control UI Locale Refresh / plan (push) Has been cancelled
Control UI Locale Refresh / Refresh ${{ matrix.locale }} (push) Has been cancelled
Control UI Locale Refresh / Commit control UI locale refresh (push) Has been cancelled
Live Media Runner Image / Build live media runner image (push) Has been cancelled
Native App Locale Refresh / Refresh native ar (push) Has been cancelled
Native App Locale Refresh / Refresh native de (push) Has been cancelled
Native App Locale Refresh / Refresh native es (push) Has been cancelled
Native App Locale Refresh / Refresh native ko (push) Has been cancelled
Native App Locale Refresh / Refresh native nl (push) Has been cancelled
Native App Locale Refresh / Refresh native pl (push) Has been cancelled
Native App Locale Refresh / Refresh native pt-BR (push) Has been cancelled
Native App Locale Refresh / Refresh native ru (push) Has been cancelled
Native App Locale Refresh / Refresh native sv (push) Has been cancelled
Native App Locale Refresh / Refresh native th (push) Has been cancelled
Native App Locale Refresh / Refresh native tr (push) Has been cancelled
Native App Locale Refresh / Refresh native uk (push) Has been cancelled
Native App Locale Refresh / Refresh native vi (push) Has been cancelled
Native App Locale Refresh / Refresh native zh-CN (push) Has been cancelled
Native App Locale Refresh / Refresh native zh-TW (push) Has been cancelled
Native App Locale Refresh / Commit native locale refresh (push) Has been cancelled
Plugin Init Scaffold Validation / Validate provider scaffold (push) Has been cancelled
Plugin NPM Release / preview_plugins_npm (push) Has been cancelled
Plugin NPM Release / Validate release publish approval (push) Has been cancelled
Plugin NPM Release / preview_plugin_pack (push) Has been cancelled
Plugin NPM Release / publish_plugins_npm (push) Has been cancelled
Sandbox Common Smoke / sandbox-common-smoke (push) Has been cancelled
Website Installer Sync / static (push) Has been cancelled
Website Installer Sync / linux-docker (push) Has been cancelled
Website Installer Sync / macos-installer (push) Has been cancelled
Website Installer Sync / windows-installer (push) Has been cancelled
Website Installer Sync / sync-website (push) Has been cancelled
Adolf is a fork/vendored clone of github.com/openclaw/openclaw (v2026.6.11), free to diverge. Tree copied sans upstream .git; upstream remote added for future syncs. Node pinned to 24 (.nvmrc); engines already require >=22.19. Preserves docs/ARCHITECTURE.md. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01LeqyaxJF2nbRXJtae2kNB2
204 lines
7.2 KiB
Swift
204 lines
7.2 KiB
Swift
import OpenClawChatUI
|
||
import SwiftUI
|
||
|
||
struct AboutSettings: View {
|
||
weak var updater: UpdaterProviding?
|
||
@Environment(\.colorScheme) private var colorScheme
|
||
@State private var iconHover = false
|
||
@AppStorage("autoUpdateEnabled") private var autoCheckEnabled = true
|
||
@State private var didLoadUpdaterState = false
|
||
|
||
var body: some View {
|
||
VStack(spacing: 8) {
|
||
Button {
|
||
if let url = URL(string: "https://github.com/openclaw/openclaw") {
|
||
NSWorkspace.shared.open(url)
|
||
}
|
||
} label: {
|
||
// Hero treatment from openclaw.ai: coral silhouette glow at 10% of
|
||
// size, teal glow at 15% plus scale 1.1 on hover.
|
||
OpenClawMascotView()
|
||
.frame(width: 160, height: 160)
|
||
.shadow(
|
||
color: OpenClawMascotView.heroGlowColor(
|
||
for: self.colorScheme,
|
||
hovering: self.iconHover),
|
||
radius: self.iconHover ? 24 : 16)
|
||
.scaleEffect(self.iconHover ? 1.1 : 1.0)
|
||
}
|
||
.buttonStyle(.plain)
|
||
.accessibilityLabel("OpenClaw on GitHub")
|
||
.focusable(false)
|
||
.pointingHandCursor()
|
||
.onHover { hover in
|
||
withAnimation(.spring(response: 0.3, dampingFraction: 0.72)) { self.iconHover = hover }
|
||
}
|
||
|
||
VStack(spacing: 3) {
|
||
Text("OpenClaw")
|
||
.font(.title3.bold())
|
||
Text("Version \(self.versionString)")
|
||
.foregroundStyle(.secondary)
|
||
if let buildTimestamp {
|
||
Text("Built \(buildTimestamp)\(self.buildSuffix)")
|
||
.font(.footnote)
|
||
.foregroundStyle(.secondary)
|
||
}
|
||
Text("Menu bar companion for notifications, screenshots, and privileged agent actions.")
|
||
.font(.footnote)
|
||
.foregroundStyle(.secondary)
|
||
.multilineTextAlignment(.center)
|
||
.padding(.horizontal, 18)
|
||
}
|
||
|
||
VStack(alignment: .center, spacing: 6) {
|
||
AboutLinkRow(
|
||
icon: "chevron.left.slash.chevron.right",
|
||
title: "GitHub",
|
||
url: "https://github.com/openclaw/openclaw")
|
||
AboutLinkRow(icon: "globe", title: "Website", url: "https://openclaw.ai")
|
||
AboutLinkRow(icon: "bird", title: "Twitter", url: "https://twitter.com/steipete")
|
||
AboutLinkRow(icon: "envelope", title: "Email", url: "mailto:peter@steipete.me")
|
||
}
|
||
.frame(maxWidth: .infinity)
|
||
.multilineTextAlignment(.center)
|
||
.padding(.vertical, 10)
|
||
|
||
if let updater {
|
||
Divider()
|
||
.padding(.vertical, 8)
|
||
|
||
if updater.isAvailable {
|
||
VStack(spacing: 10) {
|
||
Toggle("Check for updates automatically", isOn: self.$autoCheckEnabled)
|
||
.toggleStyle(.checkbox)
|
||
.frame(maxWidth: .infinity, alignment: .center)
|
||
|
||
Button("Check for Updates…") { updater.checkForUpdates(nil) }
|
||
}
|
||
} else {
|
||
Text("Updates unavailable in this build.")
|
||
.foregroundStyle(.secondary)
|
||
.padding(.top, 4)
|
||
}
|
||
}
|
||
|
||
Text("© 2026 OpenClaw Foundation — MIT License.")
|
||
.font(.footnote)
|
||
.foregroundStyle(.secondary)
|
||
.padding(.top, 4)
|
||
|
||
Spacer()
|
||
}
|
||
.frame(maxWidth: .infinity, maxHeight: .infinity)
|
||
.settingsDetailContent()
|
||
.onAppear {
|
||
guard let updater, !self.didLoadUpdaterState else { return }
|
||
// Keep Sparkle’s auto-check setting in sync with the persisted toggle.
|
||
updater.automaticallyChecksForUpdates = self.autoCheckEnabled
|
||
updater.automaticallyDownloadsUpdates = self.autoCheckEnabled
|
||
self.didLoadUpdaterState = true
|
||
}
|
||
.onChange(of: self.autoCheckEnabled) { _, newValue in
|
||
self.updater?.automaticallyChecksForUpdates = newValue
|
||
self.updater?.automaticallyDownloadsUpdates = newValue
|
||
}
|
||
}
|
||
|
||
private var versionString: String {
|
||
let version = Bundle.main.object(forInfoDictionaryKey: "CFBundleShortVersionString") as? String ?? "dev"
|
||
let build = Bundle.main.object(forInfoDictionaryKey: "CFBundleVersion") as? String
|
||
return build.map { "\(version) (\($0))" } ?? version
|
||
}
|
||
|
||
private var buildTimestamp: String? {
|
||
guard
|
||
let raw =
|
||
(Bundle.main.object(forInfoDictionaryKey: "OpenClawBuildTimestamp") as? String) ??
|
||
(Bundle.main.object(forInfoDictionaryKey: "OpenClawBuildTimestamp") as? String)
|
||
else { return nil }
|
||
let parser = ISO8601DateFormatter()
|
||
parser.formatOptions = [.withInternetDateTime]
|
||
guard let date = parser.date(from: raw) else { return raw }
|
||
|
||
let formatter = DateFormatter()
|
||
formatter.dateStyle = .medium
|
||
formatter.timeStyle = .short
|
||
formatter.locale = .current
|
||
return formatter.string(from: date)
|
||
}
|
||
|
||
private var gitCommit: String {
|
||
(Bundle.main.object(forInfoDictionaryKey: "OpenClawGitCommit") as? String) ??
|
||
(Bundle.main.object(forInfoDictionaryKey: "OpenClawGitCommit") as? String) ??
|
||
"unknown"
|
||
}
|
||
|
||
private var bundleID: String {
|
||
Bundle.main.bundleIdentifier ?? "unknown"
|
||
}
|
||
|
||
private var buildSuffix: String {
|
||
let git = self.gitCommit
|
||
guard !git.isEmpty, git != "unknown" else { return "" }
|
||
|
||
var suffix = " (\(git)"
|
||
#if DEBUG
|
||
suffix += " DEBUG"
|
||
#endif
|
||
suffix += ")"
|
||
return suffix
|
||
}
|
||
}
|
||
|
||
@MainActor
|
||
private struct AboutLinkRow: View {
|
||
let icon: String
|
||
let title: String
|
||
let url: String
|
||
|
||
@State private var hovering = false
|
||
|
||
var body: some View {
|
||
Button {
|
||
if let url = URL(string: url) { NSWorkspace.shared.open(url) }
|
||
} label: {
|
||
HStack(spacing: 6) {
|
||
Image(systemName: self.icon)
|
||
Text(self.title)
|
||
.underline(self.hovering, color: .accentColor)
|
||
}
|
||
.foregroundColor(.accentColor)
|
||
}
|
||
.buttonStyle(.plain)
|
||
.onHover { self.hovering = $0 }
|
||
.pointingHandCursor()
|
||
}
|
||
}
|
||
|
||
private struct AboutMetaRow: View {
|
||
let label: String
|
||
let value: String
|
||
|
||
var body: some View {
|
||
HStack {
|
||
Text(self.label)
|
||
.foregroundStyle(.secondary)
|
||
Spacer()
|
||
Text(self.value)
|
||
.font(.caption.monospaced())
|
||
.foregroundStyle(.primary)
|
||
}
|
||
}
|
||
}
|
||
|
||
#if DEBUG
|
||
struct AboutSettings_Previews: PreviewProvider {
|
||
private static let updater = DisabledUpdaterController()
|
||
static var previews: some View {
|
||
AboutSettings(updater: updater)
|
||
.frame(width: SettingsTab.windowWidth, height: SettingsTab.windowHeight)
|
||
}
|
||
}
|
||
#endif
|