Skip to content

Commit

Permalink
Installer fixes
Browse files Browse the repository at this point in the history
* Update path and check for newer HidHide versions
* Update the version string for RTSS and flag it as reboot required
  • Loading branch information
romracer authored and CasperH2O committed Apr 19, 2024
1 parent bc1041c commit 4b872ad
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions HandheldCompanion.iss
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@
#define NewDirectXVersion "9.29.1974"
#define NewViGemVersion "1.22.0.0"
#define NewHidHideVersion "1.5.212"
#define NewRtssVersion "7.3.6"
; RTSS 7.3.6
#define NewRtssVersion "7.3.5.28010"

//#define DotNetX64DownloadLink "https://download.visualstudio.microsoft.com/download/pr/b280d97f-25a9-4ab7-8a12-8291aa3af117/a37ed0e68f51fcd973e9f6cb4f40b1a7/windowsdesktop-runtime-8.0.0-win-x64.exe"
//#define DotNetX86DownloadLink "https://download.visualstudio.microsoft.com/download/pr/f9e3b581-059d-429f-9f0d-1d1167ff7e32/bd7661030cd5d66cd3eee0fd20b24540/windowsdesktop-runtime-8.0.0-win-x86.exe"
Expand Down Expand Up @@ -724,11 +725,11 @@ end;

procedure Dependency_AddRTSS;
begin
Dependency_Add_With_Version('RTSSSetup735.exe', '{#NewRtssVersion}', regGetInstalledVersion('{#RtssName}'),
Dependency_Add_With_Version('RTSSSetup736.exe', '{#NewRtssVersion}', regGetInstalledVersion('{#RtssName}'),
'/S',
'{#RtssName}',
'{#RtssDownloadLink}',
'', True, False);
'', True, True);

stopProcess('{#EncoderServer64Exe}');
stopProcess('{#RTSSHooksLoader64Exe}');
Expand Down
4 changes: 2 additions & 2 deletions utils/Utils.iss
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ end;
function isHidHideInstalled():boolean;
begin
result:= false;
if(FileExists(ExpandConstant('{commonpf}') + '\Nefarius Software Solutions\HidHide\HidHide_Updater.exe')) then
if(FileExists(ExpandConstant('{commonpf}') + '\Nefarius Software Solutions\HidHide\x64\HidHideClient.exe')) then
begin
log('HidHide is already installed.');
result:= true;
Expand All @@ -42,7 +42,7 @@ var
versionNumber, filePath:string;
begin
result:= '';
filePath:= ExpandConstant('{commonpf}') + '\Nefarius Software Solutions\HidHide\HidHide_Updater.exe';
filePath:= ExpandConstant('{commonpf}') + '\Nefarius Software Solutions\HidHide\x64\HidHideClient.exe';
if(FileExists(filePath)) then
begin
Expand Down

0 comments on commit 4b872ad

Please sign in to comment.