-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathinstaller.iss
42 lines (35 loc) · 1.26 KB
/
installer.iss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#define MyAppName "GammaLauncher"
#define MyAppVersion "5.2.2"
#define MyAppPublisher "sebescudie"
#define MyAppURL "www.sebescudie.github.io"
#define MyAppExeName "gammalauncher_5.2.2_installer"
[Setup]
AppId=GammmaLauncher
AppName={#MyAppName}
AppVersion={#MyAppVersion}
AppPublisher={#MyAppPublisher}
AppPublisherURL={#MyAppURL}
AppSupportURL={#MyAppURL}
AppUpdatesURL={#MyAppURL}
OutputBaseFilename={#MyAppExeName}
DefaultDirName={commonpf64}\GammaLauncher
DefaultGroupName=GammaLauncher
Uninstallable=yes
UninstallDisplayIcon={app}\GammaLauncher.exe
Compression=lzma2
OutputDir=.
ArchitecturesAllowed=x64
WizardStyle=classic
PrivilegesRequired=admin
WizardSmallImageFile=ico.bmp
SetupIconFile=ico.ico
[Run]
Filename: {app}\{cm:AppName}.exe; Description: {cm:LaunchProgram,{cm:AppName}}; Flags: nowait postinstall skipifsilent
Filename: "https://github.com/sebescudie/GammaLauncher/wiki"; Description: "Open online documentation"; Flags: shellexec postinstall runmaximized skipifsilent
[CustomMessages]
AppName=GammaLauncher
LaunchProgram=Start GammaLauncher after finishing installation
[Files]
Source: "build\GammaLauncher\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs
[Icons]
Name: "{group}\GammaLauncher"; Filename: "{app}\GammaLauncher.exe"