-
Notifications
You must be signed in to change notification settings - Fork 50
/
surge.iss
75 lines (65 loc) · 3.96 KB
/
surge.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
; Script generated by the Inno Setup Script Wizard.
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
#define MyAppName "Surge"
#define MyAppVersion "1.1.1-beta"
#define MyAppPublisher "Rule110"
#define MyAppURL "https://getsurge.io/"
#define MyAppExeName "surge.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={{3A9FAAC0-146B-446E-B2D7-54388E778260}
AppName={#MyAppName}
AppVersion={#MyAppVersion}
AppVerName={#MyAppName}
AppPublisher={#MyAppPublisher}
AppPublisherURL={#MyAppURL}
AppSupportURL={#MyAppURL}
AppUpdatesURL={#MyAppURL}
DefaultDirName={autopf}\{#MyAppName}
DisableProgramGroupPage=yes
Compression=lzma
SolidCompression=yes
WizardStyle=modern
SetupIconFile="C:\Users\Christian Busch\go\src\github.com\rule110-io\surge\build\windows\icon.ico"
OutputBaseFilename=surge-{#MyAppVersion}-setup
UninstallDisplayIcon={app}\{#MyAppExeName}
WizardImageFile="C:\Users\Christian Busch\go\src\github.com\rule110-io\surge\installer\100.bmp,C:\Users\Christian Busch\go\src\github.com\rule110-io\surge\installer\125.bmp,C:\Users\Christian Busch\go\src\github.com\rule110-io\surge\installer\150.bmp,C:\Users\Christian Busch\go\src\github.com\rule110-io\surge\installer\175.bmp,C:\Users\Christian Busch\go\src\github.com\rule110-io\surge\installer\200.bmp,C:\Users\Christian Busch\go\src\github.com\rule110-io\surge\installer\225.bmp,C:\Users\Christian Busch\go\src\github.com\rule110-io\surge\installer\250.bmp"
[Languages]
Name: "english"; MessagesFile: "compiler:Default.isl"
[Registry]
Root: HKCR; Subkey: "surge"; ValueType: "string"; ValueData: "URL:Custom Protocol"; Flags: uninsdeletekey
Root: HKCR; Subkey: "surge"; ValueType: "string"; ValueName: "URL Protocol"; ValueData: ""
Root: HKCR; Subkey: "surge\DefaultIcon"; ValueType: "string"; ValueData: "{app}\{#MyAppExeName},0"
Root: HKCR; Subkey: "surge\shell\open\command"; ValueType: "string"; ValueData: """{app}\{#MyAppExeName}"" ""%1"""
Root: HKCR; Subkey: ".slc"; ValueData: "{#MyAppName}"; Flags: uninsdeletevalue; ValueType: string; ValueName: ""
Root: HKCR; Subkey: "{#MyAppName}"; ValueData: "{#MyAppName} Link Container"; Flags: uninsdeletekey; ValueType: string; ValueName: ""
Root: HKCR; Subkey: "{#MyAppName}\DefaultIcon"; ValueData: "{app}\{#MyAppExeName},0"; ValueType: string; ValueName: ""
Root: HKCR; Subkey: "{#MyAppName}\shell\open\command"; ValueData: """{app}\{#MyAppExeName}"" ""%1"""; ValueType: string; ValueName: ""
[Setup]
ChangesAssociations = yes
[Tasks]
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
[Files]
Source: "C:\Users\Christian Busch\go\src\github.com\rule110-io\surge\build\bin\surge.exe"; DestDir: "{app}"; Flags: ignoreversion
Source: "C:\Users\Christian Busch\go\src\github.com\rule110-io\surge\appicon.png"; DestDir: "{app}"; Flags: ignoreversion
; NOTE: Don't use "Flags: ignoreversion" on any shared system files
[Icons]
Name: "{autoprograms}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
Name: "{autodesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon
[Run]
Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent
[Code]
procedure CurUninstallStepChanged (CurUninstallStep: TUninstallStep);
var
mres : integer;
begin
case CurUninstallStep of
usPostUninstall:
begin
mres := MsgBox('Do you want to remove all of the Surge application files?', mbConfirmation, MB_YESNO or MB_DEFBUTTON2)
if mres = IDYES then
DelTree(ExpandConstant('{userappdata}\Surge'), True, True, True);
end;
end;
end;