1. Fix .gitignore to track installer/config and package metadata - Previously `installer/*` ignored everything - Now only `installer/packages/*/data/` is ignored 2. Add installer config and package metadata files to repo: - installer/config/config.xml - installer/config/controlscript.qs - installer/packages/*/meta/package.xml 3. Fix Windows Update Package Versions to use PowerShell Core (pwsh) - Bash is not available on the Windows runner - CMD with inline PowerShell had pipe escaping issues 4. Add safety checks to macOS/Linux versions - Check if config.xml exists before trying to edit it Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
17 lines
619 B
XML
17 lines
619 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<Package>
|
|
<DisplayName>XPlor GUI Application</DisplayName>
|
|
<Description>Binary file format explorer with graphical interface. Includes Qt runtime libraries.</Description>
|
|
<Version>1.11.0</Version>
|
|
<ReleaseDate>2026-01-12</ReleaseDate>
|
|
<Name>com.xplor.gui</Name>
|
|
<Default>true</Default>
|
|
<Essential>false</Essential>
|
|
<ForcedInstallation>false</ForcedInstallation>
|
|
<SortingPriority>100</SortingPriority>
|
|
<Script>installscript.qs</Script>
|
|
<Licenses>
|
|
<License name="License Agreement" file="license.txt"/>
|
|
</Licenses>
|
|
</Package>
|