Skip to content

Commit 21b897c

Browse files
authored
Merge pull request #35 from dorssel/installer_ui
Improve installer UI
2 parents 2fad9ea + 2faf6e8 commit 21b897c

File tree

10 files changed

+518
-245
lines changed

10 files changed

+518
-245
lines changed

.gitattributes

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
.gitignore text
1010
.editorconfig text
1111
.json text
12+
.license text
1213

1314
*.md text
1415
*.txt text
15-
*.rtf text
1616

1717
*.yml text
1818

@@ -25,6 +25,8 @@
2525
*.wixproj text
2626
*.wxs text
2727
*.xslt text
28+
*.png binary
29+
*.xcf binary
2830

2931
# VBoxUsb drivers
3032
*.cat binary

GitVersion.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33
# SPDX-License-Identifier: GPL-2.0-only
44

55
assembly-file-versioning-format: '{Major}.{Minor}.{Patch}.{env:GITHUB_RUN_NUMBER ?? 0}'
6+
next-version: 1.0.0

Installer/COPYING.rtf

Lines changed: 0 additions & 213 deletions
This file was deleted.

Installer/Installer.wixproj

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ SPDX-License-Identifier: GPL-2.0-only
2828
</PropertyGroup>
2929
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
3030
<OutputPath>bin\$(Configuration)\</OutputPath>
31-
<DefineConstants>Debug;PublishDir=$(PublishDir);DriversDir=$(ProjectDir)..\Drivers</DefineConstants>
31+
<DefineConstants>Debug;PublishDir=$(PublishDir);DriversDir=$(ProjectDir)..\Drivers;Year=$([System.DateTime]::UtcNow.ToString("yyyy"))</DefineConstants>
3232
<Cultures>en-US</Cultures>
3333
<SuppressAllWarnings>False</SuppressAllWarnings>
3434
<Pedantic>True</Pedantic>
3535
</PropertyGroup>
3636
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
3737
<OutputPath>bin\$(Configuration)\</OutputPath>
38-
<DefineConstants>PublishDir=$(PublishDir);DriversDir=$(ProjectDir)..\Drivers</DefineConstants>
38+
<DefineConstants>PublishDir=$(PublishDir);DriversDir=$(ProjectDir)..\Drivers;Year=$([System.DateTime]::UtcNow.ToString("yyyy"))</DefineConstants>
3939
<Cultures>en-US</Cultures>
4040
<SuppressAllWarnings>False</SuppressAllWarnings>
4141
<Pedantic>True</Pedantic>
@@ -45,7 +45,6 @@ SPDX-License-Identifier: GPL-2.0-only
4545
<Compile Include="Server.wxs" />
4646
<Compile Include="Product.wxs" />
4747
<Compile Include="UserInterface.wxs" />
48-
<Content Include="COPYING.rtf" />
4948
<Content Include="HarvestTransform.xslt" />
5049
<HarvestDirectory Include="$(PublishDir)" Visible="false">
5150
<DirectoryRefId>APPLICATIONFOLDER</DirectoryRefId>

Installer/Product.wxs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ SPDX-License-Identifier: GPL-2.0-only
3737
<Property Id="ARPURLUPDATEINFO">https://github.com/dorssel/usbipd-win/releases</Property>
3838
<Property Id="ARPHELPLINK">https://github.com/dorssel/usbipd-win/issues</Property>
3939

40+
<Property Id="MSIDEPLOYMENTCOMPLIANT" Value="1" />
41+
4042
<Feature
4143
Id="Server"
4244
Level="1"

Installer/UserInterface.wxs

Lines changed: 504 additions & 28 deletions
Large diffs are not rendered by default.

Installer/banner.png

112 KB
Loading

Installer/banner.png.license

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
SPDX-FileCopyrightText: 2021 Frans van Dorsselaer
2+
3+
SPDX-License-Identifier: GPL-2.0-only

Installer/banner.xcf

117 KB
Binary file not shown.

Installer/banner.xcf.license

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
SPDX-FileCopyrightText: 2021 Frans van Dorsselaer
2+
3+
SPDX-License-Identifier: GPL-2.0-only

0 commit comments

Comments
 (0)