Add library launch mode test and update tray context menu icons - #135
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR updates the tray context menu UI (icons, sectioning, and labels) and extends desktop automation coverage by adding a dedicated “Library” launch mode and associated automation IDs/tests.
Changes:
- Reworked the tray context menu structure and added glyph icons to top-level tray commands, plus dynamic “Check for Updates” → “Install Update (x.y.z)” header behavior.
- Added/expanded unit tests for tray context menu ordering, icon assignment, and update header behavior.
- Added a “Library” automation launch mode with smoke coverage and centralized automation IDs for the Library window.
Reviewed changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| Pointframe/Services/Infrastructure/TrayIconManager.cs | Adds tray menu glyph icons, restructures menu sections, and updates update-install header behavior. |
| Pointframe.Tests/Services/TrayIconManagerTests.cs | Adds tests validating tray menu section order, icons, and update header changes. |
| Pointframe.Tests/Automation/AutomationLaunchOptionsTests.cs | Extends automation launch option parsing tests to include --automation-open-library. |
| Pointframe.AutomationTests/Support/AutomationIds.cs | Adds Library window automation ID constants for UI automation. |
| Pointframe.AutomationTests/Smoke/LaunchModeSmokeTests.cs | Adds smoke test ensuring library launch mode opens and closes correctly. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
26
to
30
| Assert.Equal(openSettingsWindow, options.OpenSettingsWindow); | ||
| Assert.Equal(openAboutWindow, options.OpenAboutWindow); | ||
| Assert.Equal(openLibraryWindow, options.OpenLibraryWindow); | ||
| Assert.Equal(openSampleOverlayWindow, options.OpenSampleOverlayWindow); | ||
| Assert.Equal(openSampleRecordingOverlayWindow, options.OpenSampleRecordingOverlayWindow); |
Comment on lines
38
to
44
| var options = AutomationLaunchOptions.Parse( | ||
| [ | ||
| "--automation-open-settings", | ||
| "--automation-open-library", | ||
| "--automation-open-sample-recording-overlay", | ||
| "--automation-open-tray-sample-overlay", | ||
| ]); |
Expanded recent features (Apr–Jul 2026), added Clean Window Snip, Capture Library, Video Watermark, and tray menu icons. Revised tray actions table, documented new settings, and added a shortcuts section with updated hotkeys.
Owner
Author
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.


No description provided.