Skip to content

Commit

Permalink
Bumped version to 1.0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
beeradmoore committed Mar 30, 2024
1 parent 96aca54 commit 36080cb
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions package/NSIS/Installer.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -71,13 +71,13 @@ RequestExecutionLevel highest
; App version information
Name "DLSS Swapper"
!define MUI_ICON "..\..\src\Assets\icon.ico"
!define MUI_VERSION "1.0.5.0"
!define MUI_VERSION "1.0.5.1"
!define MUI_PRODUCT "DLSS Swapper"
VIProductVersion "1.0.5.0"
VIProductVersion "1.0.5.1"
VIAddVersionKey "ProductName" "DLSS Swapper"
VIAddVersionKey "ProductVersion" "1.0.5.0"
VIAddVersionKey "ProductVersion" "1.0.5.1"
VIAddVersionKey "FileDescription" "DLSS Swapper installer"
VIAddVersionKey "FileVersion" "1.0.5.0"
VIAddVersionKey "FileVersion" "1.0.5.1"


; Pages
Expand Down Expand Up @@ -149,7 +149,7 @@ Section
CreateShortcut "$SMPROGRAMS\DLSS Swapper.lnk" "$INSTDIR\DLSS Swapper.exe"

WriteRegStr SHCTX "${UNINST_KEY}" "DisplayName" "DLSS Swapper"
WriteRegStr SHCTX "${UNINST_KEY}" "DisplayVersion" "1.0.5.0"
WriteRegStr SHCTX "${UNINST_KEY}" "DisplayVersion" "1.0.5.1"
WriteRegStr SHCTX "${UNINST_KEY}" "Publisher" "beeradmoore"
WriteRegStr SHCTX "${UNINST_KEY}" "DisplayIcon" "$\"$INSTDIR\DLSS Swapper.exe$\""
WriteRegStr SHCTX "${UNINST_KEY}" "UninstallString" "$\"$INSTDIR\uninstall.exe$\""
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.5.0
set app_version=1.0.5.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.5.0
set app_version=1.0.5.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.5.0</Version>
<Version>1.0.5.1</Version>
<UseRidGraph>true</UseRidGraph>
</PropertyGroup>

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.5.0" name="DLSS Swapper.app"/>
<assemblyIdentity version="1.0.5.1" name="DLSS Swapper.app"/>

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

0 comments on commit 36080cb

Please sign in to comment.