Skip to content

Commit 883eea3

Browse files
committed
Final commit v1.15.3
1 parent 1945755 commit 883eea3

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

7-
## [Unreleased]
7+
## [1.15.3] - 2022-12-15
8+
Merry Christmas! Here is a early gift from me.
89
### Added
9-
- DCH driver migration, if user currently has non-DCH drivers and operating system supports it. We had this issue a while ago as NVIDIA discontinued non-DCH drivers where no new updates would be found. And assuming DCH support is a bad idea.
10+
- DCH driver migration, if user currently has non-DCH drivers and operating system supports it. They were discontinued after version 472.12
1011

1112
### Fixed
1213
- Adjustment to GPU name to match metadata in nvidia-data repo for `Super` GPU variants

TinyNvidiaUpdateChecker/MainConsole.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class MainConsole
4747
/// <summary>
4848
/// List of operating system NVIDIA ID with DCH driver compability
4949
/// </summary>
50-
private static readonly List<int> OSDchCompatiableList = new List<int>() { 56, 57, 135 };
50+
private static readonly List<int> compatiableDCHOSList = new List<int>() { 56, 57, 135 };
5151

5252
/// <summary>
5353
/// Current client version
@@ -478,6 +478,7 @@ private static (int, int, int) GetDriverMetadata(string gpuName, bool isNotebook
478478

479479
return (gpuId, osId, isDchDriver);
480480
}
481+
481482
private static JObject GetDriverDownloadInfo(int gpuId, int osId, int isDchDriver) {
482483
var ajaxDriverLink = "https://gfwsl.geforce.com/services_toolkit/services/com/nvidia/services/AjaxDriverService.php?func=DriverManualLookup";
483484
ajaxDriverLink += $"&pfid={gpuId}&osID={osId}&dch={isDchDriver}";
@@ -489,7 +490,7 @@ private static JObject GetDriverDownloadInfo(int gpuId, int osId, int isDchDrive
489490

490491
// If the operating system has support for DCH drivers, and DCH drivers are currently not installed, then serach for DCH drivers too.
491492
// Non-DCH drivers are discontinued. Not searching for DCH drivers will result in users having outdated graphics drivers, and we don't want that.
492-
if (OSDchCompatiableList.Contains(osId) && isDchDriver == 0) {
493+
if (compatiableDCHOSList.Contains(osId) && isDchDriver == 0) {
493494
ajaxDriverLink = ajaxDriverLink.Substring(0, ajaxDriverLink.Length - 1) + "1";
494495
JObject driverObjDCH = JObject.Parse(ReadURL(ajaxDriverLink));
495496

TinyNvidiaUpdateChecker/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@
1919
// Minor Version
2020
// Patch
2121
// Following the Semantic Versioning 2.0.0 standard; see http://semver.org/spec/v2.0.0.html.
22-
[assembly: AssemblyVersion("1.15.2")]
23-
[assembly: AssemblyFileVersion("1.15.2")]
22+
[assembly: AssemblyVersion("1.15.3")]
23+
[assembly: AssemblyFileVersion("1.15.3")]

0 commit comments

Comments
 (0)