Skip to content

Commit

Permalink
v1.17.1: Fixed WinRAR 7 compability, fixes #201
Browse files Browse the repository at this point in the history
  • Loading branch information
ElPumpo committed Nov 14, 2023
1 parent c6a3832 commit 78ef9ab
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 5 additions & 0 deletions TinyNvidiaUpdateChecker/Handlers/LibaryHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down
4 changes: 2 additions & 2 deletions TinyNvidiaUpdateChecker/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]
[assembly: AssemblyVersion("1.17.1")]
[assembly: AssemblyFileVersion("1.17.1")]

0 comments on commit 78ef9ab

Please sign in to comment.