Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions apps/macos/Package.resolved

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion apps/macos/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
Copy link

@cubic-dev-ai cubic-dev-ai bot Mar 5, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2: Upgrading to MenuBarExtraAccess 1.3.0 introduces a modifier-order requirement that current MenuBarExtra usage violates (menuBarExtraAccess is not first), so this dependency bump can cause incorrect menu bar integration behavior until call sites are reordered.

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At apps/macos/Package.swift, line 18:

<comment>Upgrading to MenuBarExtraAccess 1.3.0 introduces a modifier-order requirement that current `MenuBarExtra` usage violates (`menuBarExtraAccess` is not first), so this dependency bump can cause incorrect menu bar integration behavior until call sites are reordered.</comment>

<file context>
@@ -15,7 +15,7 @@ let package = Package(
     ],
     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.1.0"),
         .package(url: "https://github.com/apple/swift-log.git", from: "1.8.0"),
</file context>
Fix with Cubic

.package(url: "https://github.com/swiftlang/swift-subprocess.git", from: "0.1.0"),
.package(url: "https://github.com/apple/swift-log.git", from: "1.8.0"),
.package(url: "https://github.com/sparkle-project/Sparkle", from: "2.8.1"),
Expand Down
Loading