Skip to content

Commit 8f97b2d

Browse files
committed
Preparing for release a new version
1 parent 397bbf4 commit 8f97b2d

File tree

2 files changed

+57
-1
lines changed

2 files changed

+57
-1
lines changed

ChromiumForWindows.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<UseWPF>true</UseWPF>
77
<Platforms>AnyCPU;x64;x86</Platforms>
88
<ApplicationIcon>Images\chromiumicon.ico</ApplicationIcon>
9-
<Version>1.5.2</Version>
9+
<Version>1.5.1</Version>
1010
<Authors>Ilyó Kovács Levente and the contributors</Authors>
1111
<Company>https://github.com/iklevente</Company>
1212
<Product>ChromiumForWindows - A modern auto updater for Chromium</Product>

ISSx64.iss

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
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 "ChromiumForWindows"
5+
#define MyAppVersion "1.5.1"
6+
#define MyAppPublisher "iklevente"
7+
#define MyAppURL "https://github.com/iklevente/ChromiumForWindows"
8+
#define MyAppExeName "ChromiumLauncher.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={{90CEC384-2875-4B80-BF09-10BC892DF1FF}
14+
AppName={#MyAppName}
15+
AppVersion={#MyAppVersion}
16+
;AppVerName={#MyAppName} {#MyAppVersion}
17+
AppPublisher={#MyAppPublisher}
18+
AppPublisherURL={#MyAppURL}
19+
AppSupportURL={#MyAppURL}
20+
AppUpdatesURL={#MyAppURL}
21+
DefaultDirName={localappdata}\Chromium
22+
DisableDirPage=yes
23+
DefaultGroupName=Chromium
24+
DisableProgramGroupPage=yes
25+
LicenseFile=C:\Users\klevi\Desktop\License.txt
26+
; Uncomment the following line to run in non administrative install mode (install for current user only.)
27+
;PrivilegesRequired=lowest
28+
PrivilegesRequiredOverridesAllowed=dialog
29+
OutputDir=C:\Users\klevi\Desktop
30+
OutputBaseFilename=ChromiumForWindows 1.5.1 x64
31+
SetupIconFile=D:\Projects\Visual Studio\ChromiumForWindows\Images\chromiumicon.ico
32+
Compression=lzma
33+
SolidCompression=yes
34+
WizardStyle=modern
35+
36+
[Languages]
37+
Name: "english"; MessagesFile: "compiler:Default.isl"
38+
39+
[Files]
40+
Source: "D:\Projects\Visual Studio\ChromiumForWindows\bin\x64\Release\netcoreapp3.1\ChromiumLauncher.exe"; DestDir: "{app}"; Flags: ignoreversion
41+
Source: "D:\Projects\Visual Studio\ChromiumForWindows\bin\x64\Release\netcoreapp3.1\ChromiumForWindows.deps.json"; DestDir: "{app}"; Flags: ignoreversion
42+
Source: "D:\Projects\Visual Studio\ChromiumForWindows\bin\x64\Release\netcoreapp3.1\ChromiumForWindows.dll"; DestDir: "{app}"; Flags: ignoreversion
43+
Source: "D:\Projects\Visual Studio\ChromiumForWindows\bin\x64\Release\netcoreapp3.1\ChromiumForWindows.pdb"; DestDir: "{app}"; Flags: ignoreversion
44+
Source: "D:\Projects\Visual Studio\ChromiumForWindows\bin\x64\Release\netcoreapp3.1\ChromiumForWindows.runtimeconfig.dev.json"; DestDir: "{app}"; Flags: ignoreversion
45+
Source: "D:\Projects\Visual Studio\ChromiumForWindows\bin\x64\Release\netcoreapp3.1\ChromiumForWindows.runtimeconfig.json"; DestDir: "{app}"; Flags: ignoreversion
46+
Source: "D:\Projects\Visual Studio\ChromiumForWindows\bin\x64\Release\netcoreapp3.1\Interop.IWshRuntimeLibrary.dll"; DestDir: "{app}"; Flags: ignoreversion
47+
Source: "D:\Projects\Visual Studio\ChromiumForWindows\bin\x64\Release\netcoreapp3.1\MaterialDesignColors.dll"; DestDir: "{app}"; Flags: ignoreversion
48+
Source: "D:\Projects\Visual Studio\ChromiumForWindows\bin\x64\Release\netcoreapp3.1\MaterialDesignThemes.Wpf.dll"; DestDir: "{app}"; Flags: ignoreversion
49+
; NOTE: Don't use "Flags: ignoreversion" on any shared system files
50+
51+
[Icons]
52+
Name: "{group}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
53+
54+
[Run]
55+
Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent
56+

0 commit comments

Comments
 (0)