From 2cb61cd6bd051f7de3a8f84662c7241a6ded2d3a Mon Sep 17 00:00:00 2001 From: PartyDonut Date: Mon, 9 Jun 2025 22:01:50 +0200 Subject: [PATCH] chore: Second test --- .github/workflows/build.yml | 1 - windows/windows_setup.iss | 14 ++++++++------ 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e5f546f..8858aeb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -380,7 +380,6 @@ jobs: Fladder_x86_64.AppImage.zsync build-linux-flatpak: - name: "Flatpak" runs-on: ubuntu-latest if: needs.fetch-info.outputs.build_type == 'release' || needs.fetch-info.outputs.build_type == 'nightly' needs: [fetch-info, build-linux] diff --git a/windows/windows_setup.iss b/windows/windows_setup.iss index 46bce37..c84efec 100644 --- a/windows/windows_setup.iss +++ b/windows/windows_setup.iss @@ -1,3 +1,5 @@ +#define SourcePath ".." + [Setup] AppId={{D573EDD5-117A-47AD-88AC-62C8EBD11DC7} AppName="Fladder" @@ -21,11 +23,11 @@ SetupLogging=yes UninstallLogging=yes UninstallDisplayName="Fladder" UninstallDisplayIcon={app}\fladder.exe -SetupIconFile="icons\production\fladder_icon.ico" -LicenseFile="LICENSE" -WizardImageFile="assets\windows-installer\fladder-installer-100.bmp", \ - "assets\windows-installer\fladder-installer-125.bmp", \ - "assets\windows-installer\fladder-installer-150.bmp" +SetupIconFile="{#SourcePath}\icons\production\fladder_icon.ico" +LicenseFile="{#SourcePath}\LICENSE" +WizardImageFile="{#SourcePath}\assets\windows-installer\fladder-installer-100.bmp", \ + "{#SourcePath}\assets\windows-installer\fladder-installer-125.bmp", \ + "{#SourcePath}\assets\windows-installer\fladder-installer-150.bmp" [Languages] Name: "english"; MessagesFile: "compiler:Default.isl" @@ -34,7 +36,7 @@ Name: "english"; MessagesFile: "compiler:Default.isl" Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked [Files] -Source: "build\windows\x64\runner\Release\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs +Source: "{#SourcePath}\build\windows\x64\runner\Release\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs [Icons] Name: "{autoprograms}\Fladder"; Filename: "{app}\fladder.exe"