-
Notifications
You must be signed in to change notification settings - Fork 4
feat: implement graceful shutdown coordinator for clean uninstall #134
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 10 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
6897382
feat: implement graceful shutdown coordinator and program lifecycle h…
cb0898f
docs: add graceful shutdown documentation to RELEASING.md
5760c3b
fix: add missing using statement for WeatherLogger in WeatherExtensio…
bb7462b
fix: add missing using statements for WeatherLogger in Program.cs and…
d109209
fix: implement IDisposable and mark TryNamedPipeShutdown as static
444b9cd
fix: mark ShutdownCoordinator as partial for CsWinRT compatibility
aea18c6
fix: correct method name typo in ShutdownCoordinatorTests
a9431fc
test: remove problematic test files with implementation issues
e55da13
Fix ResxCompletenessTests to resolve Properties path robustly
61b69ea
Add missing bug_report RESX keys to all locale files
178b270
Fix PR #134 review comments: localize bug_report strings and fix stal…
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -120,4 +120,16 @@ | |
| <data name="compass_sw" xml:space="preserve"><value>ج.غ</value></data> | ||
| <data name="compass_w" xml:space="preserve"><value>غ</value></data> | ||
| <data name="compass_nw" xml:space="preserve"><value>ش.غ</value></data> | ||
| <data name="bug_report_title" xml:space="preserve"><value>Submit a Bug Report</value></data> | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We don't seem to be translating for the appropriate resource files. These all need their language rather than English |
||
| <data name="bug_report_save_logs" xml:space="preserve"><value>Save Logs to Desktop</value></data> | ||
| <data name="bug_report_open_github" xml:space="preserve"><value>Open GitHub Issues</value></data> | ||
| <data name="bug_report_instructions" xml:space="preserve"><value>## How to report a bug | ||
|
|
||
| 1. Click **Save Logs to Desktop** below to collect diagnostic logs | ||
| 2. Click **Open GitHub Issues** to create a new issue | ||
| 3. Describe the problem you encountered | ||
| 4. Drag and drop the log zip file into the issue body | ||
|
|
||
| The zip file will be saved to your Desktop.</value></data> | ||
| <data name="bug_report_logs_saved" xml:space="preserve"><value>Logs saved to Desktop</value></data> | ||
| </root> | ||
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
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
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
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
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
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not SampleExtension