From f333aa354b13c4ead7feeff950bfe7d4e0d2c9cb Mon Sep 17 00:00:00 2001 From: Bruno Lopes Date: Fri, 15 Aug 2025 21:31:17 -0300 Subject: [PATCH] build/windows: Make clearer that the MSIX should be identical to the Installer --- build/windows/store/3_dist-gimp-winsdk.ps1 | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/build/windows/store/3_dist-gimp-winsdk.ps1 b/build/windows/store/3_dist-gimp-winsdk.ps1 index ca2abc08b2..a5fa9947a2 100644 --- a/build/windows/store/3_dist-gimp-winsdk.ps1 +++ b/build/windows/store/3_dist-gimp-winsdk.ps1 @@ -282,20 +282,21 @@ foreach ($bundle in $supported_archs) ## Copy files into VFS folder (to support external 3P plug-ins) Copy-Item "$bundle" "$vfs" -Recurse -Force - ## Set revision on about dialog (this does the same as '-Drevision' build option) + ## Versioning adjustments + ### Set revision on about dialog (this does the same as '-Drevision' build option) if (-not $GIMP_RC_VERSION) { (Get-Content "$vfs\share\gimp\*\gimp-release") | Foreach-Object {$_ -replace "revision=0","revision=$revision"} | Set-Content "$vfs\share\gimp\*\gimp-release" } - - ## Disable Update check (ONLY FOR RELEASES) + ### Disable Update check (ONLY FOR RELEASES) if ($GIMP_RELEASE -and -not $GIMP_IS_RC_GIT) { Add-Content "$vfs\share\gimp\*\gimp-release" 'check-update=false' } - ## Remove uneeded files (to match the Inno Windows Installer artifact) + ## Parity adjustments (to match the Inno Windows Installer artifact) + ## The .msix VFS files SHOULD BE IDENTICAL to the .exe installer and vice-versa Get-ChildItem "$vfs" -Recurse -Include (".gitignore", "gimp.cmd") | Remove-Item -Recurse