From f9ba343558ca17af055f7a31a31057dba0ecce83 Mon Sep 17 00:00:00 2001 From: Bruno Lopes Date: Sun, 28 Sep 2025 22:12:16 -0300 Subject: [PATCH] build/windows: Stay on Inno 6.5.4 to avoid (potentially) broken 6.6.0 Dark Mode It was announced by the devs on Google Groups that they are on preview state. I will need time to conform our scripts to the upcoming 6.6.0. So, let's not risk creating installers with broken UI. --- build/windows/installer/3_dist-gimp-inno.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/windows/installer/3_dist-gimp-inno.ps1 b/build/windows/installer/3_dist-gimp-inno.ps1 index 02c4aad6dd..f5b58f3e73 100644 --- a/build/windows/installer/3_dist-gimp-inno.ps1 +++ b/build/windows/installer/3_dist-gimp-inno.ps1 @@ -26,7 +26,7 @@ Write-Output "$([char]27)[0Ksection_start:$(Get-Date -UFormat %s -Millisecond 0) ## Install or Update Inno (if needed) ## (We need to ensure that TLS 1.2 is enabled because of some runners) [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 -Invoke-WebRequest https://jrsoftware.org/download.php/is.exe -OutFile ..\is.exe +Invoke-WebRequest https://files.jrsoftware.org/is/6/innosetup-6.5.4.exe -OutFile ..\is.exe $inno_version_downloaded = (Get-Item ..\is.exe).VersionInfo.ProductVersion -replace ' ','' $broken_inno = Get-ChildItem $env:TMP -Filter *.isl.bak -ErrorAction SilentlyContinue $inno_version = Get-ItemProperty Registry::'HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Uninstall\Inno Setup*' -ErrorAction SilentlyContinue | Select-Object -ExpandProperty DisplayVersion