-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstaller.iss
49 lines (42 loc) · 2.06 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
43
44
45
46
47
48
49
#define ApplicationVersion GetFileVersion('dist/jonathanslaunchnotifications.exe')
[Setup]
; NOTE: The value of AppId uniquely identifies this application.
; Do not use the same AppId value in installers for other applications.
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
AppId={{A792DC76-797B-4CDB-8AE3-7487B01189C0}
AppName=Jonathan's Launch Alert
AppVersion={#ApplicationVersion}
VersionInfoVersion={#ApplicationVersion}
AppPublisher=OrOrg Development, Inc.
AppPublisherURL=https://github.com/JonathanMaes/LaunchAlert
AppSupportURL=https://github.com/JonathanMaes/LaunchAlert/issues
AppUpdatesURL=https://github.com/JonathanMaes/LaunchAlert/releases
DefaultDirName={pf}\Jonathan's Launch Alert
DefaultGroupName=Jonathan's Launch Alert
AllowNoIcons=yes
LicenseFile=LICENSE
OutputDir=installer
OutputBaseFilename="JonathansLaunchAlert_installer_{#ApplicationVersion}"
SetupIconFile=dist\icon.ico
Compression=lzma
SolidCompression=yes
DisableDirPage=auto
DisableProgramGroupPage=auto
PrivilegesRequired=admin
CloseApplications=force
[Languages]
Name: "english"; MessagesFile: "compiler:Default.isl"
[Tasks]
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
[Files]
Source: "dist\jonathanslaunchnotifications.exe"; DestDir: "{app}"; Flags: ignoreversion
Source: "dist\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs
; NOTE: Don't use "Flags: ignoreversion" on any shared system files
[Icons]
Name: "{group}\Jonathan's Launch Alert"; Filename: "{app}\jonathanslaunchnotifications.exe"
Name: "{commondesktop}\Jonathan's Launch Alert"; Filename: "{app}\jonathanslaunchnotifications.exe"; Tasks: desktopicon
Name: "{commonstartup}\Jonathan's Launch Alert"; Filename: "{app}\jonathanslaunchnotifications.exe"; Parameters: "noGUI"
[Run]
Filename: "{app}\jonathanslaunchnotifications.exe"; Description: "{cm:LaunchProgram,Jonathan's Launch Alert}"; Flags: nowait postinstall skipifsilent
;[UninstallDelete]
;Type: files; Name: "{userappdata}\Jonathan's Launch Alert\options.json"