Skip to content

Commit

Permalink
Merge pull request #183 from beeradmoore/bugfix/138_UBISOFT_game_not_…
Browse files Browse the repository at this point in the history
…detected

Bugfix/138 ubisoft game not detected
  • Loading branch information
beeradmoore authored Dec 16, 2023
2 parents 6e9f35a + 252fd16 commit 39cc016
Show file tree
Hide file tree
Showing 7 changed files with 308 additions and 178 deletions.
8 changes: 4 additions & 4 deletions package/NSIS/Installer.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -65,13 +65,13 @@ RequestExecutionLevel highest
; App version information
Name "DLSS Swapper"
!define MUI_ICON "..\..\src\Assets\icon.ico"
!define MUI_VERSION "1.0.2.0"
!define MUI_VERSION "1.0.3.1"
!define MUI_PRODUCT "DLSS Swapper"
VIProductVersion "1.0.2.0"
VIProductVersion "1.0.3.1"
VIAddVersionKey "ProductName" "DLSS Swapper"
VIAddVersionKey "ProductVersion" "1.0.2.0"
VIAddVersionKey "ProductVersion" "1.0.3.1"
VIAddVersionKey "FileDescription" "DLSS Swapper installer"
VIAddVersionKey "FileVersion" "1.0.2.0"
VIAddVersionKey "FileVersion" "1.0.3.1"


; Pages
Expand Down
2 changes: 1 addition & 1 deletion package/build_Installer.cmd
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@echo off

set app_version=1.0.2.0
set app_version=1.0.3.1
set initial_directory=%cd%

REM create the output folder if it doesn't already exist.
Expand Down
2 changes: 1 addition & 1 deletion package/build_Portable.cmd
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@echo off

set app_version=1.0.2.0
set app_version=1.0.3.1
set initial_directory=%cd%

REM create the output folder if it doesn't already exist.
Expand Down
2 changes: 1 addition & 1 deletion src/DLSS Swapper.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<HoursBetweenUpdateChecks>0</HoursBetweenUpdateChecks>
<PackageCertificateThumbprint>FE5FF30FB93EC351E8ADA5D7D7B436A52B34DA5B</PackageCertificateThumbprint>
<AppxPackageSigningEnabled>True</AppxPackageSigningEnabled>
<Version>1.0.2.0</Version>
<Version>1.0.3.1</Version>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)'=='Release'">
Expand Down
468 changes: 299 additions & 169 deletions src/Data/UbisoftConnect/UbisoftConnectLibrary.cs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/Package.appxmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<Identity
Name="55588beeradmoore.DLSSSwapper"
Publisher="CN=09891394-7164-4123-AE6F-DC48EF06C2DA"
Version="1.0.2.0" />
Version="1.0.3.1" />
<mp:PhoneIdentity PhoneProductId="c0ab7734-5ac5-4d6c-996e-1d74f3bf55a8" PhonePublisherId="00000000-0000-0000-0000-000000000000" />

<Properties>
Expand Down
2 changes: 1 addition & 1 deletion src/app.manifest
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
<assemblyIdentity version="1.0.2.0" name="DLSS Swapper.app"/>
<assemblyIdentity version="1.0.3.1" name="DLSS Swapper.app"/>

<application xmlns="urn:schemas-microsoft-com:asm.v3">
<windowsSettings>
Expand Down

0 comments on commit 39cc016

Please sign in to comment.