feat: add package update notification and task for checking updates#1571
Merged
feat: add package update notification and task for checking updates#1571
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a new startup-time background check for installed package updates and notifies the user when updates are available, integrating it into the existing startup task pipeline and adding localized UI strings.
Changes:
- Register
CheckForPackageUpdatesTaskduring startup alongside existing update/extension-loading tasks. - Implement
CheckForPackageUpdatesTaskto queryPackageManager.CheckUpdate()and surface results viaNotificationService. - Add new localized
Messageresources (EN/JA) and update the generated designer.
Reviewed changes
Copilot reviewed 4 out of 5 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| src/Beutl/Services/StartupTasks/Startup.cs | Registers the new package update check task during startup initialization. |
| src/Beutl/Services/StartupTasks/CheckForPackageUpdatesTask.cs | Implements the update-check workflow and “Open Extensions” notification action. |
| src/Beutl.Language/Message.resx | Adds new user-facing strings for package update notifications (EN). |
| src/Beutl.Language/Message.ja.resx | Adds new user-facing strings for package update notifications (JA). |
| src/Beutl.Language/Message.Designer.cs | Exposes the new resource keys via strongly-typed properties. |
Files not reviewed (1)
- src/Beutl.Language/Message.Designer.cs: Language not supported
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Contributor
|
No TODO comments were found. |
Contributor
Minimum allowed line rate is |
|
あ
2026年3月8日(日) 18:43 Yuto Terada ***@***.***>:
… Merged #1571 <#1571> into main.
—
Reply to this email directly, view it on GitHub
<#1571 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AZCE6B2YZBIHPDT467FIW6T4PU6EZAVCNFSM6AAAAACWK3HEIOVHI2DSMVQWIX3LMV45UABCJFZXG5LFIV3GK3TUJZXXI2LGNFRWC5DJN5XDWMRTGM3TCMBYGM2DINI>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
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.
Description
Introduce a new task to check for available package updates and notify users when updates are found. This includes adding necessary strings for localization and integrating the task into the startup process.
Breaking changes
None.
Fixed issues
None.