add ignoreversion flag to all files in inno setup

Without it Inno Setup skips files whose version matches the installed
one, so the exe was not replaced on updates.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-02 17:33:36 +03:00
co-authored by Claude Sonnet 4.6
parent e9f4bf1732
commit f7e6e431c9
+5 -5
View File
@@ -19,11 +19,11 @@
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
[Files]
Source: "__SOURCE_PATH__\__ARCH__\ewsdr.exe"; DestDir: "{app}"; DestName: "ewsdr.exe"
Source: "__SOURCE_PATH__\__ARCH__\wdsp.dll"; DestDir: "{app}";
Source: "__SOURCE_PATH__\__ARCH__\libfftw3-3.dll"; DestDir: "{app}";
Source: "__SOURCE_PATH__\__ARCH__\libfftw3f-3.dll"; DestDir: "{app}";
Source: "__SOURCE_PATH__\__ARCH__\libportaudio.dll"; DestDir: "{app}";
Source: "__SOURCE_PATH__\__ARCH__\ewsdr.exe"; DestDir: "{app}"; DestName: "ewsdr.exe"; Flags: ignoreversion
Source: "__SOURCE_PATH__\__ARCH__\wdsp.dll"; DestDir: "{app}"; Flags: ignoreversion
Source: "__SOURCE_PATH__\__ARCH__\libfftw3-3.dll"; DestDir: "{app}"; Flags: ignoreversion
Source: "__SOURCE_PATH__\__ARCH__\libfftw3f-3.dll"; DestDir: "{app}"; Flags: ignoreversion
Source: "__SOURCE_PATH__\__ARCH__\libportaudio.dll"; DestDir: "{app}"; Flags: ignoreversion
[Icons]
Name: "{group}\EWSDR"; Filename: "{app}\ewsdr.exe"