Skip to content

Latest commit

 

History

History
441 lines (344 loc) · 18.9 KB

CHANGELOG.md

File metadata and controls

441 lines (344 loc) · 18.9 KB

Change Log

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog and this project adheres to Semantic Versioning.

[Unreleased]

Added

  • Support to autodetect eGPUs (Issue #182)

[1.19.1] - 2024-06-26

Added

  • Dialog for missing required .NET runtime

Fixed

  • Self updater crash when not launching in same working directory (Issue #224)
  • NanaZip access denied error (Issue #228)
  • Always override existing files when performing minimal install
  • Driver install force rebooting disabled

Changed

  • Migrated to x64 built code, which means you will have to install the runtime again. This time a dialog will appear, and will assist you

[1.19.0] - 2024-06-13

Added

  • Customizable NVIDIA installer. You can now (finally) choose what components of the driver you want to install. For example notebook users can now include Optimus, but still keep out the nasty bloatware with an ease of a button, or two
  • Support for NanaZip as extract library

Changed

  • Client update dialog now displays the release changelog

[1.18.2] - 2024-06-07

Added

  • Self client updater
  • Optional configuration file entries for custom extract libary path, see issue #207
  • Fixed silent install not properly working, see issue #85

Fixed

  • GPUs with 'different' PNP IDs would cause crash, see issue #219

[1.18.1] - 2024-06-07

Fixed

  • Error on retrieving GPU information, caused by misunderstanding PNP Device ID, its length is not a fixed value. See issue #217
  • Systems with multiple GPUs could not search for updates at all, see issue #218
  • Empty response from PCI Lookup API causing crash
  • Minor code mistakes
  • Missing icon for prompts

[1.18.0] - 2024-06-06

Added

  • Multiple GPU support, when more than one GPU is detected a dialog is shown, allowing users to choose the proper GPU of their liking. See issue #177
  • NVIDIA devices with no drivers installed, it looks up the device name from a public API. See issue #163
  • GPU metadata is now cached in the configuration directory instead of being fetched everytime it runs, this fixes issues for users in China due to the GFW. See issue #195
  • --dry-run command line argument (author: TomKranenburg)

Fixed

  • Internet connection failing whilst downloading driver is now properly communicated, see issue #204

Changed

  • Redesigned Download Location form
  • Updated .NET Runtime to version 8
  • Replaced Microsoft.Windows.Compatibility package with System.Management

[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
  • --noprompt command line argument disabling exit prompt (author: TomKranenburg). See issue #188
  • Override desktop/notebook identify command line arguments for eGPUs: --override-desktop & --override-notebook. See issue #182
  • More GPU information for debugging
  • Missing project build settings (author: flawedworld)

Fixed

  • Windows 11 systems identifying as Windows 10 (author: jesseclvrt)

Changed

  • Chassis Type 1 now identify as notebook. Hopefully no desktop users have the same type... See issue #134

[1.16.5] - 2023-05-13

Fixed

  • Invalid minimal install extract libary paths could cause a ArgumentNullException. See issue #168

[1.16.4] - 2023-02-02

Changed

  • Changed GPU metadata URL and credit URL in attempt to resolve AV false positives. See issue #131

[1.16.3] - 2023-01-26

Fixed

  • Release notes without any links caused a ArgumentNullException when retrieving GPU information. See issue #159

[1.16.2] - 2023-01-26

Fixed

  • Release notes without an image tag caused a NullReferenceException when retrieving GPU information. See issue #151

Changed

  • Changed the URL of the update URL to show all versions because hotfixes updates wont show the full changelog for minor version update

[1.16.1] - 2023-01-21

Fixed

  • Hotfix for navigate to GitHub prompt causing exception

[1.16.0] - 2023-01-21

This update migrated from the discontinued .NET Framework to .NET 7. TNUC will from this point forward require the .NET 7 Desktop Runtime x86. Windows versions below 10 are not supported by it. There might also be new bugs with this move so please report them if you find any. Thanks to .NET single file publish the false positive trojan is no longer an issue.

Added

  • --config-override=<path> command line argument. <path> is absolute file path
  • Support for local GPU metadata files gpu-data.json and os-data.json. They must be in the working directory, and used in special cases where GitHub is a blocked domain
  • Added Scoop environment variable to list for possible 7-Zip installations, see #97

Changed

  • Migrated from discontinued .NET Framework to .NET 7. TNUC will from this point forward require the .NET 7 Desktop Runtime x86
  • Improved error handling for NVIDIA API and metadata repo
  • Improved libary detection code
  • Remove unwanted image tags and URLs from release description

[1.15.4] - 2022-12-27

Happy new years everyone. Here is another minor update that wont change much for most people

Fixed

  • Some GPUs such as 970M download URLs begin with HTTP and not HTTPS which broke the code. See issue #139

Changed

  • Update regex to filter "COLLECTORS EDITION" GPUs. See issue #140

[1.15.3] - 2022-12-15

Merry Christmas! Here is a early gift from me.

Added

  • DCH driver migration, if user currently has non-DCH drivers and operating system supports it. They were discontinued after version 472.12

Fixed

  • Adjustment to GPU name to match metadata in nvidia-data repo for Super GPU variants

[1.15.2] - 2022-11-26

Fixed

  • Some notebooks recognized as desktop

[1.15.1] - 2022-11-20

Fixed

  • GPU metadata not found on GPUs with "Max-Q" in name, and "Super" GPU variants

Changed

  • Reimplemented proper way of getting release PDF. If not found then the button will be greyed out

[1.15.0] - 2022-11-19

Changed

  • Now querying NVIDIA API to properly get the latest GPU driver for your card. Much lower risk of code stopping to work if they change their website, URL format or whatever. Thanks to ZenitH-AT for his NVIDIA research and data repo. This new query code is based of his nvidia-update project. This also means that most GPUs are now supported. Still need to write code to get driver for GPUs that don't have a driver installed and named generic in device manager
  • Minor code cleanup
  • No more DLLs needed with the executable, as they are now embedded

Removed

  • Ditched HAP as it's no longer needed. DLLs will be packaged in the EXE for the future (such as JSON package)
  • --ignore-missing-gpu command line argument. A replacement is coming in the future, it was removed because the old implementation would download drivers for GTX 970 (hardcoded). Replacement code coming soon

[1.14.7] - 2022-11-06

Fixed

  • NVIDIA changed their website code, breaking TNUC. I've fixed it for now but a complete rewrite is needed to use their API... See issue #114

Changed

  • Bumped to .NET Framework 4.8

[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

  • DCH driver support

[1.14.4] - 2021-09-04

Added

  • Missing "Press any key to exit" where applicable

Fixed

  • HAP being verified and downloaded to the current directory, and not the TNUC binary directory
  • Nvidia URL response was not the latest driver version

[1.14.3] - 2021-06-23

Fixed

  • Fixed a wrong assumption in the driver version fetch code. The code now reads it from right to left as it's always five digits (right?)

[1.14.2] - 2020-08-18

Fixed

  • Nvidia made a minor URL adjustment on their website

Changed

  • Driver downloads are now being done with HTTPS protocol

[1.14.1] - 2020-05-15

Fixed

  • Not launching extracted drivers when using minimal installer

[1.14.0] - 2020-05-15

I am back, sorry for being inactive the past years. I've been very busy with GTA related projects for years until recently where I got dropped out, and now focusing on my own side projects. I hope you all enjoy this new version!

Added

  • Download selection form, you can now select the download server. Hopefully this resolves issues with slow downloads
  • Compare HAP versions, making sure downloaded one is the correct one (which also prevents further errors)
  • We now run the NVIDIA installer with the /noreboot if the application is running quiet to prevent random reboots
  • Support for DCH drivers thanks to Osspial

Changed

  • Updated HAP to v1.11.23
  • Download size in bytes are now properly grouped
  • Use string interpolation where available
  • Minor code improvements
  • Improved tooltips on the driver dialog
  • Disabled keyboard shortcuts in driver dialog

Fixed

  • Missing icon files for the forms
  • Minor typo
  • You can no longer navigate to other websites from the release description
  • Driver installer no longer hardcoded to run quiet if minimal installer is used
  • Replaced /noeula argument with /nosplash argument when minimal installer isn't used, which caused Gf Experience to install

[1.13.0] - 2018-06-06

Added

  • QuickEdit is now disabled, no more accidentally stalling the application

Changed

  • Minor message when hash doesn't match
  • Updated HAP to v1.8.4

Fixed

  • Minimal installer not extracting new required EULA files #41 - thanks cywq

[1.12.0] - 2018-03-09

Added

  • Implemented checks for the MD5 hash for the HAP dll file. This is to make so that people don't use a wrong version of HAP, since TNUC only previously checkes for the file name. Now we are also checking the hash which means that we are comparing the entire file. This should fix all the dll hell trouble, sorry for the late fix :/

Changed

  • Moved class files
  • Updated HAP to v1.7.1

Fixed

  • An issue where the file is still being used by TNUC after the drivers have been downloaded. This was the cause of #26, thanks a lot indivisible for fixing the issue, credits to him!

[1.11.0] - 2018-02-09

Added

  • --ignore-missing-gpu argument, will ignore the fact that no compatible gpu were found

Changed

  • Tool tips in the driver dialog
  • Updated legal message

Fixed

  • Possible fix for 7-Zip extraction error
  • Fixed update checker by updating to .NET 4.6.1 and HAP v1.6.16, thanks @dragondaud

[1.10.0] - 2017-10-24

Added

  • Implemented a much better dialog for chosing directory
  • Support for alternative locations for 7-Zip (Scoop, x86 install on amd64 systems, MSI installer and last resort)
  • Check against vendor ID if the gpu drivers aren't installed
  • Missing text

Fixed

  • Driver installer always run quietly, now only skipping eula
  • Tiny text on none dpi-displays in the driver dialog

[1.9.0] - 2017-09-25

Added

  • New fancy dialog when a new driver is available, with a much better GUI solution and better release notes preview
  • Support for 7-Zip, and an improved libary handling system
  • --confirm-dl argument. It will automaticly download and install new drivers! (uses minimal installer)
  • --config-here argument. It uses the working directory as the path for the config
  • Implemented check for driver file size

Changed

  • Updated HtmlAgilityPack to the latest version
  • Replaced the GPU Type system with now assuming the type depending on the gpu name
  • Changed back to the correct folder browser dialog
  • A lot of cleanup (yet again) and refactoring
  • Code improvements

Removed

  • You no longer have to select your gpu

[1.8.0] - 2017-06-28

Added

  • Inform user to select a empty folder if using the minimal installer.
  • Automatic download of HtmlAgilityPack.dll if not found.
  • Network connection check.
  • GUI progress bar that shows up upon the driver download, if the user has selected the quiet mode.

Changed

  • Went back to using the SaveFileDialog.
  • Method renames to match CA1709.
  • A lot of cleanup.

[1.7.0] - 2017-04-29

Added

  • Added hiding un-supported GPUs in the SelectGPU form which is enabled by default.
  • Option to create a minimal installer of the drivers, so we don't install telemetry and other things we don't need. Requires WinRAR for now.
  • No longer downloads driver if it exists.

Changed

  • Improved the driver description fetcher and the download message box.
  • Now following the CA1709 standard by Microsoft, and "migrated" to VS2017.
  • Minor changes.

Removed

  • CTRL-C is no longer ignored.

[1.6.0] - 2017-02-03

Added

  • Added fetching driver description.
  • Added a new way to fetch current GPU version, by getting the GPU information provided by Win32_VideoController. No longer based on files which is an improvement.

Fixed

  • Fixed a bug where the config wasn't set correctly in the development enviroment.
  • Fixed the date fetched from the NVIDIA servers, with an much improved system.

[1.5.0] - 2016-11-16

Started focusing on cleaning up code that doesn't make sence, more to come.

Added

  • Added a last resort release notes link creator if none is displayed on Nvidias' website.
  • A date has been added when a new update is available to show how long ago the latest driver was released with full date, and added the version number of new gpu driver.

Changed

  • Values fetched from the nvidia website now run through the .Trim() method for various reasons.
  • A lot of cleanup and minor changes, for example all version numbers are now strings and not ints - it was a pain to read them and is now much better.

Removed

  • Removed old, unused code.

Fixed

  • Trying to open the .pdf release notes when no pdf reader is available will no longer crash the application.
  • Fixed so that nothing happens before the intro, for example using the --version argument - and possible overlaps.

[1.4.1] - 2016-10-23

Added

Changed

  • Changed the target file to get the current driver cause v375.57 removed nvvsvc.exe.
  • CTRL+C inputs are now ignored.

Fixed

  • Fixed a issue related to using the --quiet command argument to run a silent window.

[1.4.0] - 2016-10-12

Long time no see, or that's what they say at least. I have been busy being a typical student, I am trying to keep up dev but only have so much spare time to spare programming. As you see, the versions have been spaced a lot. I haven't made the same amount of changes in the code either lately as I used to do (when I had a lot of free time), but that doesn't mean that I am abandoning this project.

Might start pushing out beta versions if people are interested in that kind of stuff, thing is that I am really wondering if people are even using this application, so it might be for... nothing. And in that case, wouldn't this entire project be for nothing..? I don't have a clue of the userbase.

Whatever, a new version out lads.

Added

  • Added the argument --force-dl for a force download of gpu drivers even if the drivers are up-to-date.
  • Option to view release PDF.

Changed

  • Command line argument handler has been improved, and the argument for erasing local config file has been changed to --erase-config.
  • Some code has been moved around.
  • The default download folder is now the users Downloads folder instead of the temp folder.
  • A lot of minor code improvements.

Fixed

  • Some Process.Start() calls will no longer risk breaking the application.

[1.3.0] - 2016-08-09

Added

  • Instead of just launching web browser where user has to load the NVIDA website in order to download the driver, the application now does it for you. Using SaveFileDialog to choose GPU driver save file.
  • Basic documentation started.

Changed

  • Changes around config system, for example the key Desktop GPU has been renamed to GPU Type.
  • Code 10% more bullet proof.
  • Updated HTMLAgilityPack to v1.4.9.5, and therefore upped .NET framework target to 4.5.
  • All released builds are now set to the "Release" build type in VS for better performance.

Fixed

  • Repairing a config key does no longer skip the request.

[1.2.0] - 2016-07-10

Added

  • Missing author in assembly information.
  • Support for mobile NVIDIA GPUs.
  • New argument - --eraseConfig, erases configuration file.

Changed

  • Minor cleanup and improvements.
  • Complete re-write of config system, had a great time doing so and had to be done - old system was wanky. Moved to .xml format powered by the .NET framework.
  • Now following the Semantic Versioning 2.0.0 standard, http://semver.org/spec/v2.0.0.html.
  • Improved update system.
  • Improved command line argument handler.

Fixed

  • Solved issue where quiet mode wouldn't show any message boxes.

[1.1.0.0] - 2016-05-31

Added

  • Check for required DLL file.
  • Basic documentation.
  • Language specific downloads.
  • --debug command line argument used for debugging purposes.
  • --? command line argument as help menu.

Changed

  • Major cleanup / improved code.
  • Improved command argument system.

[1.0.0.0] - 2016-05-20

The application is finally in version 1! Everything seems to work fine so I decided to release it as stable.

Added

  • Now using HtmlAgilityPack.
  • Get remote version.
  • Get remote driver link.

Changed

  • Minor cleanup.
  • All GPU driver versions are now integers instead of being both a int and string.

Fixed

  • Icon modified yet again; fixed material design and more.

[0.2.0.0] - 2016-05-15

Added

  • Added GPLv3 message.
  • Added CHANGELOG.
  • Added LICENSE.
  • Emulate remote version via configuration file.

Changed

Fixed

  • Windows version detector fixed.
  • Fixed using -quiet command line argument where application would not end.

[0.1.0.0] - 2016-05-14 [YANKED]

Initial public release. Was yanked after the release of v0.2.0.0 because of the missing license (which is in the changelog for v0.2.0.0).