|
| 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 "WinSetView" |
| 5 | +#define MyAppVersion "3.1.2" |
| 6 | +#define MyAppPublisher "LesFerch" |
| 7 | +#define MyAppURL "https://lesferch.github.io/WinSetView/" |
| 8 | +#define MyAppExeName "WinSetView.exe" |
| 9 | +#define MyEmail "lesferch@gmail.com" |
| 10 | + |
| 11 | +[Setup] |
| 12 | +; NOTE: The value of AppId uniquely identifies this application. Do not use the same AppId value in installers for other applications. |
| 13 | +; (To generate a new GUID, click Tools | Generate GUID inside the IDE.) |
| 14 | +AppId={{C91B741C-99CD-458D-B952-8E37E9503EF2} |
| 15 | +AppName={#MyAppName} |
| 16 | +VersionInfoVersion={#MyAppVersion} |
| 17 | +AppVersion={#MyAppVersion} |
| 18 | +AppVerName={#MyAppName} |
| 19 | +AppPublisher={#MyAppPublisher} |
| 20 | +AppCopyright={#MyEmail} |
| 21 | +AppSupportURL={#MyAppURL} |
| 22 | +DefaultDirName={autopf}\{#MyAppName} |
| 23 | +DisableProgramGroupPage=yes |
| 24 | +; Uncomment the following line to run in non administrative install mode (install for current user only.) |
| 25 | +;PrivilegesRequired=lowest |
| 26 | +OutputBaseFilename={#MyAppName}-Setup |
| 27 | +Compression=lzma |
| 28 | +SolidCompression=yes |
| 29 | +WizardStyle=modern |
| 30 | +SetupIconFile={#MyAppName}.ico |
| 31 | +UninstallDisplayIcon={app}\{#MyAppExeName} |
| 32 | +CloseApplications=force |
| 33 | +RestartApplications=no |
| 34 | + |
| 35 | +[Languages] |
| 36 | +Name: "english"; MessagesFile: "compiler:Default.isl" |
| 37 | + |
| 38 | +[Tasks] |
| 39 | +Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked |
| 40 | + |
| 41 | +[Files] |
| 42 | +Source: "WinSetView\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion |
| 43 | +Source: "WinSetView\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs |
| 44 | +; NOTE: Don't use "Flags: ignoreversion" on any shared system files |
| 45 | + |
| 46 | +[Icons] |
| 47 | +Name: "{autoprograms}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}" |
| 48 | +Name: "{autodesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon |
| 49 | + |
| 50 | +[Run] |
| 51 | +Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent |
| 52 | + |
0 commit comments