From 78ef9abc829309ffc01a3467a6ecaed0417cff8b Mon Sep 17 00:00:00 2001 From: ElPumpo Date: Tue, 14 Nov 2023 21:42:58 +0100 Subject: [PATCH] v1.17.1: Fixed WinRAR 7 compability, fixes #201 --- CHANGELOG.md | 4 ++++ TinyNvidiaUpdateChecker/Handlers/LibaryHandler.cs | 5 +++++ TinyNvidiaUpdateChecker/Properties/AssemblyInfo.cs | 4 ++-- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ab8bf79..31849d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [1.17.1] - 2023-11-14 +### Fixed +- WinRAR 7 introduced registry edits which casued minimal install feature to error out. See issue #201 + ## [1.17.0] - 2023-08-20 ### Added - Dialog to choose between Game Ready Drivers (GRD) and Studio Driver (SD), as NVIDIA added SD drivers to their list with no default opt out. See issue #187 diff --git a/TinyNvidiaUpdateChecker/Handlers/LibaryHandler.cs b/TinyNvidiaUpdateChecker/Handlers/LibaryHandler.cs index 182290b..d0bbc1b 100644 --- a/TinyNvidiaUpdateChecker/Handlers/LibaryHandler.cs +++ b/TinyNvidiaUpdateChecker/Handlers/LibaryHandler.cs @@ -87,6 +87,11 @@ public static LibaryFile EvaluateLibary() path = regKey.GetValue(entry.name).ToString(); } + if (!path.EndsWith(@"\")) + { + path += @"\"; + } + LogManager.Log($"Found {entry.libary} path: {path}", LogManager.Level.INFO); return new LibaryFile(path, entry.libary, true); } diff --git a/TinyNvidiaUpdateChecker/Properties/AssemblyInfo.cs b/TinyNvidiaUpdateChecker/Properties/AssemblyInfo.cs index 36d25d3..873f4d4 100644 --- a/TinyNvidiaUpdateChecker/Properties/AssemblyInfo.cs +++ b/TinyNvidiaUpdateChecker/Properties/AssemblyInfo.cs @@ -19,5 +19,5 @@ // Minor Version // Patch // Following the Semantic Versioning 2.0.0 standard; see http://semver.org/spec/v2.0.0.html. -[assembly: AssemblyVersion("1.17.0")] -[assembly: AssemblyFileVersion("1.17.0")] \ No newline at end of file +[assembly: AssemblyVersion("1.17.1")] +[assembly: AssemblyFileVersion("1.17.1")] \ No newline at end of file