Conversation
Add a second Wails window that acts as a normal desktop window. Users can detach the tray panel into a resizable 800x600 window and optionally pin it always-on-top. Closing the detached window or clicking attach returns to tray panel mode. - New Go methods: Detach, Attach, IsDetached, TogglePin, IsPinned - Frontend: detach/attach button + pin toggle in header, 'd' shortcut - Tray click focuses detached window when in detached mode - WindowClosing hook hides instead of destroying the detached window
Introduce --gui as the primary flag for the macOS menu bar app. --tray still works but prints a deprecation warning to stderr. Update help text, README, API docs, Makefile, and goreleaser config.
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 2 potential issues.
Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Protect concurrent access to detached and pinned fields with a sync.RWMutex. Use IsDetached() in callbacks instead of direct field access. Remove the unused tray field from SessionService.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Note
Medium Risk
Moderate risk: adds new window-management state and event handling in the macOS Wails app and changes CLI flag behavior (
--tray→--gui), which could affect launch flows and UX but doesn’t touch auth or persistent data formats.Overview
Adds a detachable mode to the macOS menu bar UI: the tray-attached panel can now be toggled into a standalone window, with optional always-on-top pinning, plus corresponding frontend controls/shortcuts and Wails bindings/events.
Renames the launch flag from
--trayto--gui(keeping--trayas deprecated with a warning), updates forking/dev/build/release scripts and documentation accordingly, and adjusts tray click/menu behavior to focus the detached window when active.Written by Cursor Bugbot for commit e39a462. This will update automatically on new commits. Configure here.