diff --git a/CHANGELOG.md b/CHANGELOG.md index e411ea749f2b..3337366935db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ Docs: https://docs.openclaw.ai - WhatsApp: update Baileys to `7.0.0-rc12`. - Approvals: route manual `/approve` decisions through the trusted approval runtime so active exec and plugin approvals no longer look unknown or expired. +- Mac app: update the About settings copyright year to 2026. (#84385) Thanks @pejmanjohn. - Dependencies: update `@openclaw/fs-safe` to `0.2.7` so OpenClaw's default Python-helper-off policy keeps best-effort Node write fallbacks for private stores, secret writes, run logs, and media attachments on Linux/macOS. - Infra/secrets: restore the fail-closed contract for `tryReadSecretFileSync` so credential loaders that pass `rejectSymlink: true` (Telegram, LINE, Zalo, IRC, Nextcloud Talk tokens) refuse symlinked credential files instead of silently accepting them, and the infra-state CI shard's secret-file symlink test passes again. Thanks @romneyda. - Browser: honor the configured image sanitization limit for screenshots and labeled snapshots so browser-captured images follow the same resize policy as other image results. (#84595) diff --git a/apps/macos/Sources/OpenClaw/AboutSettings.swift b/apps/macos/Sources/OpenClaw/AboutSettings.swift index e3c8c9c2389e..59e3c925ee1d 100644 --- a/apps/macos/Sources/OpenClaw/AboutSettings.swift +++ b/apps/macos/Sources/OpenClaw/AboutSettings.swift @@ -77,7 +77,7 @@ struct AboutSettings: View { } } - Text("© 2025 Peter Steinberger — MIT License.") + Text("© 2026 Peter Steinberger — MIT License.") .font(.footnote) .foregroundStyle(.secondary) .padding(.top, 4)