Add MSI installer support#2
Merged
Merged
Conversation
…er and ZIP archive
…ile retrieval; ignore ICE91 warning (irrelevant)
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 introduces a new Windows Installer (MSI) packaging workflow for
skHost, alongside improvements to the release process and enhanced installation/uninstallation logging. The changes automate the creation of both a portable ZIP archive and an MSI installer, update the release documentation, and add more detailed feedback for users during installation and removal.Release workflow and packaging improvements:
build-packagesjob in.github/workflows/build-release.yml, running on Windows, that generates both a ZIP archive and an MSI installer using the WiX Toolset. The workflow now stages files listed inmanifest.txt, sets up .NET and WiX, builds the MSI, and uploads both package types as artifacts. [1] [2]build-packagesjob outputs, describe both the ZIP and MSI packages, and provide improved installation instructions for each.Windows Installer (MSI) integration:
wix/) includingProduct.wxs,skHost.wixproj, andLicense.rtfto define the MSI installer, its features (PATH registration, auto-start, Start Menu shortcuts), and license. The installer targets per-user installation in%LocalAppData%\SaltSpectre\skHost. [1] [2] [3]manifest.txtto includeLICENSEandREADME.mdin the distributed packages.version.txtto reflect the new development branch for the WiX installer.Installation and uninstallation logging enhancements:
app_handler.ps1by adding log messages for key steps during install/uninstall, such as creating/removing autostart registry entries, Start Menu shortcuts, and cleaning up old files. This does not affect MSI based un/installation [1] [2]These changes streamline the release process, make installation more user-friendly on Windows, and provide clearer feedback during setup and removal.
References:
[1] [2] [3] [4] [5] [6] [7] [8] [9] [10]