Compare commits

...
This repository has been archived on 2025-07-21. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.

4 commits
master ... v2

Author SHA1 Message Date
0699cd2940 bump version to 2.22 2024-02-23 20:48:22 +01:00
5ff8479d80 fix non-gtx detection 2024-02-23 20:42:15 +01:00
0ad39d3132 add v2 info 2023-09-28 22:59:34 +02:00
Jakob
f4e0c6cee1 bump version 2023-08-11 20:19:36 +02:00
3 changed files with 5 additions and 7 deletions

View file

@ -49,5 +49,5 @@ using System.Windows;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.20")]
[assembly: AssemblyFileVersion("2.20")]
[assembly: AssemblyVersion("2.22")]
[assembly: AssemblyFileVersion("2.22")]

View file

@ -335,7 +335,7 @@ namespace EnvyUpdate
{
GPUName = obj["VideoProcessor"].ToString().ToLower();
// Remove any 3GB, 6GB or similar from name. We don't need to know the VRAM to get results.
GPUName = Regex.Match(GPUName, "(geforce )((.tx )|(mx))?\\w*\\d*( ti)?").Value;
GPUName = Regex.Match(GPUName, "(geforce )((.t.? )|(mx ))?\\w*\\d*( ti)?").Value;
}
else
GPUName = obj["VideoProcessor"].ToString();

View file

@ -2,9 +2,7 @@
# Important Information
Nvidia has discontinued non-DCH drivers. This means only Windows 10 and Windows 11 can get the most recent driver versions.
If you are running Standard (non-DCH) drivers right now, EnvyUpdate will **NOT** display newer driver versions until you have manually updated to DCH drivers.
This is the old "v2" branch of EnvyUpdate. New features will not be added here, but bugs will be fixed. For the newest features and additions, please download the latest release built from the "master" branch.
# EnvyUpdate
A small portable update checker application for Nvidia GPUs
@ -15,7 +13,7 @@ If you are running Standard (non-DCH) drivers right now, EnvyUpdate will **NOT**
## How to use
Download the [latest release](https://github.com/fyr77/EnvyUpdate/releases/latest/download/EnvyUpdate.exe) (or as a [.zip](https://github.com/fyr77/EnvyUpdate/releases/latest/download/EnvyUpdate.zip)) and run it. Windows SmartScreen Messages can be safely ignored. They only happen because this project is not digitally signed.
Download the [latest 2.x release](https://github.com/fyr77/EnvyUpdate/releases/tag/2.21) and run it. Windows SmartScreen Messages can be safely ignored. They only happen because this project is not digitally signed.
The application itself does not update itself. If you notice any bugs or issues, be sure to check for a new version on GitHub!