From ba8fb6b2b810a1aab43100fb12f80a187e2698a5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 21 Apr 2026 21:30:14 -0700 Subject: [PATCH] build(deps): bump the swift-deps group across 1 directory with 3 updates (#60168) * build(deps): bump the swift-deps group across 1 directory with 3 updates Bumps the swift-deps group with 3 updates in the /apps/macos directory: [github.com/orchetect/menubarextraaccess](https://github.com/orchetect/MenuBarExtraAccess), [github.com/apple/swift-log](https://github.com/apple/swift-log) and [github.com/sparkle-project/sparkle](https://github.com/sparkle-project/Sparkle). Updates `github.com/orchetect/menubarextraaccess` from 1.2.2 to 1.3.0 - [Release notes](https://github.com/orchetect/MenuBarExtraAccess/releases) - [Commits](https://github.com/orchetect/MenuBarExtraAccess/compare/1.2.2...1.3.0) Updates `github.com/apple/swift-log` from 1.10.1 to 1.11.0 - [Release notes](https://github.com/apple/swift-log/releases) - [Commits](https://github.com/apple/swift-log/compare/1.10.1...1.11.0) Updates `github.com/sparkle-project/sparkle` from 2.9.0 to 2.9.1 - [Release notes](https://github.com/sparkle-project/Sparkle/releases) - [Commits](https://github.com/sparkle-project/Sparkle/compare/2.9.0...2.9.1) --- updated-dependencies: - dependency-name: github.com/orchetect/menubarextraaccess dependency-version: 1.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: swift-deps - dependency-name: github.com/apple/swift-log dependency-version: 1.11.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: swift-deps - dependency-name: github.com/sparkle-project/sparkle dependency-version: 2.9.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: swift-deps ... Signed-off-by: dependabot[bot] * fix(macos): restore MenuBarExtraAccess ordering --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Vincent Koc --- apps/macos/Package.resolved | 14 +++++++------- apps/macos/Package.swift | 2 +- apps/macos/Sources/OpenClaw/MenuBar.swift | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/apps/macos/Package.resolved b/apps/macos/Package.resolved index 04764565f73..29b35c9300c 100644 --- a/apps/macos/Package.resolved +++ b/apps/macos/Package.resolved @@ -1,5 +1,5 @@ { - "originHash" : "fb90e7b1977f43661ac91681d16da11f9ddd85630407ef170eaada0a6ee39972", + "originHash" : "7a8088405ec5e396c14d737c110ff5651ff25dabcd437a0fee92e57018c5360a", "pins" : [ { "identity" : "axorcist", @@ -33,8 +33,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/orchetect/MenuBarExtraAccess", "state" : { - "revision" : "707dff6f55217b3ef5b6be84ced3e83511d4df5c", - "version" : "1.2.2" + "revision" : "33bb0e4b1e407feac791e047dcaaf9c69b25fd26", + "version" : "1.3.0" } }, { @@ -51,8 +51,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/sparkle-project/Sparkle", "state" : { - "revision" : "21d8df80440b1ca3b65fa82e40782f1e5a9e6ba2", - "version" : "2.9.0" + "revision" : "066e75a8b3e99962685d6a90cdd5293ebffd9261", + "version" : "2.9.1" } }, { @@ -78,8 +78,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/apple/swift-log.git", "state" : { - "revision" : "bbd81b6725ae874c69e9b8c8804d462356b55523", - "version" : "1.10.1" + "revision" : "5073617dac96330a486245e4c0179cb0a6fd2256", + "version" : "1.12.0" } }, { diff --git a/apps/macos/Package.swift b/apps/macos/Package.swift index 5c9f849d792..2eb8b1743ff 100644 --- a/apps/macos/Package.swift +++ b/apps/macos/Package.swift @@ -15,7 +15,7 @@ let package = Package( .executable(name: "openclaw-mac", targets: ["OpenClawMacCLI"]), ], dependencies: [ - .package(url: "https://github.com/orchetect/MenuBarExtraAccess", exact: "1.2.2"), + .package(url: "https://github.com/orchetect/MenuBarExtraAccess", exact: "1.3.0"), .package(url: "https://github.com/swiftlang/swift-subprocess.git", from: "0.4.0"), .package(url: "https://github.com/apple/swift-log.git", from: "1.10.1"), .package(url: "https://github.com/sparkle-project/Sparkle", from: "2.9.0"), diff --git a/apps/macos/Sources/OpenClaw/MenuBar.swift b/apps/macos/Sources/OpenClaw/MenuBar.swift index 0750da56a5e..5f2c2a06f96 100644 --- a/apps/macos/Sources/OpenClaw/MenuBar.swift +++ b/apps/macos/Sources/OpenClaw/MenuBar.swift @@ -51,7 +51,6 @@ struct OpenClawApp: App { animationsEnabled: self.state.iconAnimationsEnabled && !self.isGatewaySleeping, iconState: self.effectiveIconState) } - .menuBarExtraStyle(.menu) .menuBarExtraAccess(isPresented: self.$isMenuPresented) { item in self.statusItem = item MenuSessionsInjector.shared.install(into: item) @@ -59,6 +58,7 @@ struct OpenClawApp: App { self.installStatusItemMouseHandler(for: item) self.updateHoverHUDSuppression() } + .menuBarExtraStyle(.menu) .onChange(of: self.state.isPaused) { _, paused in self.applyStatusItemAppearance(paused: paused, sleeping: self.isGatewaySleeping) if self.state.connectionMode == .local {