Skip to content

Commit

Permalink
Updated HAP to 1.11.43, final commit v1.14.6
Browse files Browse the repository at this point in the history
  • Loading branch information
ElPumpo committed Jun 26, 2022
1 parent 3640d2e commit 7224302
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 9 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@ 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/).

## [Unreleased]
## [1.14.6] - 2022-06-26
### Fixed
- Non-DCH drivers are no longer supported by NVIDIA. So they are always opted to be installed. See issue #101

### Changed
- Merged duplicate code, and improved driver download code (more improvements are needed)
- Updated HAP to 1.11.43

## [1.14.5] - 2021-09-06
### Added
Expand Down
6 changes: 3 additions & 3 deletions TinyNvidiaUpdateChecker/Handlers/HashHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ namespace TinyNvidiaUpdateChecker.Handlers
class HashHandler
{
/// <summary>
/// The MD5 hash for HAP v1.11.23
/// The MD5 hash for HAP v1.11.43
/// </summary>
public static string HAP_HASH = "24-1D-D8-58-41-D3-4F-88-92-3C-5A-BA-FD-D6-56-FB";
public static string HAP_HASH = "F9-72-91-2B-04-C7-FD-13-B7-55-D9-57-B3-66-EB-3F";

/// <summary>
/// The HAP version currently used
/// </summary>
public static string HAP_VERSION = "1.11.23.0";
public static string HAP_VERSION = "1.11.43.0";

/// <summary>
/// Calcluate the md5 hash of a file, we use it to verify the HTML Aglity Pack DLL so that people don't use the invalid version of it,
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.14.5")]
[assembly: AssemblyFileVersion("1.14.5")]
[assembly: AssemblyVersion("1.14.6")]
[assembly: AssemblyFileVersion("1.14.6")]
4 changes: 2 additions & 2 deletions TinyNvidiaUpdateChecker/TinyNvidiaUpdateChecker.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@
<SignManifests>false</SignManifests>
</PropertyGroup>
<ItemGroup>
<Reference Include="HtmlAgilityPack, Version=1.11.23.0, Culture=neutral, PublicKeyToken=bd319b19eaf3b43a, processorArchitecture=MSIL">
<HintPath>..\packages\HtmlAgilityPack.1.11.23\lib\Net45\HtmlAgilityPack.dll</HintPath>
<Reference Include="HtmlAgilityPack, Version=1.11.43.0, Culture=neutral, PublicKeyToken=bd319b19eaf3b43a, processorArchitecture=MSIL">
<HintPath>..\packages\HtmlAgilityPack.1.11.43\lib\Net45\HtmlAgilityPack.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.configuration" />
Expand Down
2 changes: 1 addition & 1 deletion TinyNvidiaUpdateChecker/packages.config
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="HtmlAgilityPack" version="1.11.23" targetFramework="net461" />
<package id="HtmlAgilityPack" version="1.11.43" targetFramework="net461" />
</packages>

0 comments on commit 7224302

Please sign in to comment.