|
| 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 "Chromium" |
| 5 | +#define MyAppVersion "1.0" |
| 6 | +#define MyAppPublisher "iklevente" |
| 7 | +#define MyAppURL "https://github.com/iklevente/ChromiumForWindows" |
| 8 | +#define MyAppExeName "update.exe" |
| 9 | + |
| 10 | +[Setup] |
| 11 | +; NOTE: The value of AppId uniquely identifies this application. Do not use the same AppId value in installers for other applications. |
| 12 | +; (To generate a new GUID, click Tools | Generate GUID inside the IDE.) |
| 13 | +AppId={{0F82154C-B7E3-40EA-8F88-72D6FE78FEF0} |
| 14 | +AppName={#MyAppName} |
| 15 | +AppVersion={#MyAppVersion} |
| 16 | +;AppVerName={#MyAppName} {#MyAppVersion} |
| 17 | +AppPublisher={#MyAppPublisher} |
| 18 | +AppPublisherURL={#MyAppURL} |
| 19 | +AppSupportURL={#MyAppURL} |
| 20 | +AppUpdatesURL={#MyAppURL} |
| 21 | +DefaultDirName={userappdata}\{#MyAppName} |
| 22 | +DisableDirPage=yes |
| 23 | +DisableProgramGroupPage=yes |
| 24 | +LicenseFile=C:\Users\klevi\Desktop\License.txt |
| 25 | +; Remove the following line to run in administrative install mode (install for all users.) |
| 26 | +PrivilegesRequired=lowest |
| 27 | +OutputDir=D:\Projects\Visual Studio\ChromiumForWindows\bin\Installer\x64 |
| 28 | +OutputBaseFilename=ChromiumInstaller |
| 29 | +SetupIconFile=D:\Projects\Visual Studio\ChromiumForWindows\Resources\Images\chromiumicon.ico |
| 30 | +Compression=lzma |
| 31 | +SolidCompression=yes |
| 32 | +WizardStyle=modern |
| 33 | + |
| 34 | +[Languages] |
| 35 | +Name: "english"; MessagesFile: "compiler:Default.isl" |
| 36 | + |
| 37 | +[Tasks] |
| 38 | +Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked |
| 39 | + |
| 40 | +[Files] |
| 41 | +Source: "D:\Projects\Visual Studio\ChromiumForWindows\bin\x64\Release\netcoreapp3.1\update.exe"; DestDir: "{app}"; Flags: ignoreversion |
| 42 | +Source: "D:\Projects\Visual Studio\ChromiumForWindows\bin\x64\Release\netcoreapp3.1\update.deps.json"; DestDir: "{app}"; Flags: ignoreversion |
| 43 | +Source: "D:\Projects\Visual Studio\ChromiumForWindows\bin\x64\Release\netcoreapp3.1\update.dll"; DestDir: "{app}"; Flags: ignoreversion |
| 44 | +Source: "D:\Projects\Visual Studio\ChromiumForWindows\bin\x64\Release\netcoreapp3.1\update.pdb"; DestDir: "{app}"; Flags: ignoreversion |
| 45 | +Source: "D:\Projects\Visual Studio\ChromiumForWindows\bin\x64\Release\netcoreapp3.1\update.runtimeconfig.dev.json"; DestDir: "{app}"; Flags: ignoreversion |
| 46 | +Source: "D:\Projects\Visual Studio\ChromiumForWindows\bin\x64\Release\netcoreapp3.1\update.runtimeconfig.json"; DestDir: "{app}"; Flags: ignoreversion |
| 47 | +; NOTE: Don't use "Flags: ignoreversion" on any shared system files |
| 48 | + |
| 49 | +[Icons] |
| 50 | +Name: "{autoprograms}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}" |
| 51 | +Name: "{autodesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon |
| 52 | + |
| 53 | +[Run] |
| 54 | +Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent |
| 55 | + |
0 commit comments