|
| 1 | +; Script generated by the Inno Setup Script Wizard. |
| 2 | +; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! |
| 3 | + |
| 4 | +#define MyAppName "Aeternum" |
| 5 | +#define MyAppPublisher "r3tr0ananas @ cloudy-org" |
| 6 | +#define MyAppURL "https://github.com/cloudy-org/aeternum" |
| 7 | +#define MyAppExeName "aeternum.exe" |
| 8 | + |
| 9 | +[Setup] |
| 10 | +; NOTE: The value of AppId uniquely identifies this application. Do not use the same AppId value in installers for other applications. |
| 11 | +; (To generate a new GUID, click Tools | Generate GUID inside the IDE.) |
| 12 | +AppId={{3F3466F8-DBF4-41C6-8D6F-6AF8914CA262} |
| 13 | +AppName={#MyAppName} |
| 14 | +AppVersion={param:version} |
| 15 | +AppPublisher={#MyAppPublisher} |
| 16 | +AppPublisherURL={#MyAppURL} |
| 17 | +AppSupportURL={#MyAppURL} |
| 18 | +AppUpdatesURL={#MyAppURL} |
| 19 | +DefaultDirName={autopf}\aeternum |
| 20 | +ArchitecturesAllowed=x64compatible |
| 21 | +ArchitecturesInstallIn64BitMode=x64compatible |
| 22 | +DisableProgramGroupPage=yes |
| 23 | +LicenseFile=..\LICENSE |
| 24 | +; Remove the following line to run in administrative install mode (install for all users). |
| 25 | +PrivilegesRequired=lowest |
| 26 | +PrivilegesRequiredOverridesAllowed=dialog |
| 27 | +OutputBaseFilename=aeternum-setup |
| 28 | +SetupIconFile=.\aeternum.ico |
| 29 | +SolidCompression=yes |
| 30 | +WizardStyle=modern |
| 31 | + |
| 32 | +[Languages] |
| 33 | +Name: "english"; MessagesFile: "compiler:Default.isl" |
| 34 | + |
| 35 | +[Tasks] |
| 36 | +Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked |
| 37 | + |
| 38 | +[Files] |
| 39 | +Source: "..\target\release\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion |
| 40 | +Source: "..\upscayl-bin-20240601-103425-windows\upscayl-bin.exe"; DestDir: "{app}"; Flags: ignoreversion |
| 41 | +Source: "models\*"; DestDir: "{app}\models"; Flags: ignoreversion |
| 42 | + |
| 43 | +[Icons] |
| 44 | +Name: "{autoprograms}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}" |
| 45 | +Name: "{autodesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon |
| 46 | + |
| 47 | +[Run] |
| 48 | +Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent |
0 commit comments