Add Configure option to the library context menu - #726
Merged
insidegui merged 1 commit intoAug 3, 2026
Conversation
The full VM configuration sheet was previously reachable only from the Virtual Machine Settings button on a VM window's pre-boot screen. Add a Configure menu item to the library item context menu that presents the same sheet directly, saving to the VM bundle when the user confirms. The item is disabled while the VM has an open session window, since the session owns the model and auto-saves its own copy of the configuration. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Owner
|
Been meaning to do this for a while, thanks for investing some tokens into it 😄 |
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.
Motivation
The full VM configuration sheet is currently reachable only via the "Virtual Machine Settings…" button on a VM window's pre-boot screen. That's easy to miss (especially with #725 hiding it below the fold), and it requires opening a session window just to tweak CPU/memory/network settings.
Change
Adds a Configure… item to the library item context menu, right above Duplicate. It presents the existing
VMConfigurationSheetin the.postInstallcontext and saves to the VM bundle viasaveMetadata()when the user clicks Done (Cancel writes nothing, mirroring the session sheet's behavior).The item is disabled while the VM has an open session window: the session owns the model there and auto-saves its own copy of the configuration, so editing from the library at the same time could race it. The existing button on the pre-boot screen covers that case.
Testing
.vbdata/Config.plistand reflected on next boot; Cancel discards.🤖 Generated with Claude Code