export installed packages and updates to CSV#5175
Merged
Merged
Conversation
Copilot started reviewing on behalf of
Gabriel Dufresne (GabrielDuf)
July 22, 2026 15:54
View session
Contributor
There was a problem hiding this comment.
Pull request overview
Adds CSV export support for installed packages and available updates.
Changes:
- Adds export toolbar actions to both package pages.
- Exports selected or filtered packages with CSV escaping and UTF-8 BOM.
- Provides save notifications and error handling.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
AbstractPackagesPage.axaml.cs |
Implements shared CSV export logic. |
InstalledPackagesPage.cs |
Adds the CSV export button. |
SoftwareUpdatesPage.cs |
Adds the CSV export button. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Gabriel Dufresne (GabrielDuf)
force-pushed
the
feat/export-packages-csv
branch
from
July 22, 2026 17:10
3e76b49 to
d9508dd
Compare
Marc-André Moreau (mamoreau-devolutions)
approved these changes
Jul 22, 2026
3 tasks
3 tasks
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.
This pull request adds a feature to export the list of packages to a CSV file from both the Installed Packages and Software Updates pages. It introduces a new toolbar button for this action and handles the export process, including CSV formatting and error handling.
CSV Export Feature:
Export to CSVtoolbar button to both the Installed Packages (InstalledPackagesPage.cs) and Software Updates (SoftwareUpdatesPage.cs) pages, allowing users to export the current package list or selection.ExportPackagesToCsvAsyncmethod inAbstractPackagesPage.axaml.csto handle CSV export, including file selection, CSV building, and user notifications.BuildCsvandCsvEscape) to ensure proper CSV output, including UTF-8 BOM for compatibility with Excel and correct escaping of special characters.Dependency and Import Updates:
AbstractPackagesPage.axaml.cs.