From f4e0c6cee1f2979e55ab4b4d4b4dc465849eb933 Mon Sep 17 00:00:00 2001 From: Jakob Date: Fri, 11 Aug 2023 20:19:36 +0200 Subject: [PATCH 1/4] bump version --- EnvyUpdate/Properties/AssemblyInfo.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/EnvyUpdate/Properties/AssemblyInfo.cs b/EnvyUpdate/Properties/AssemblyInfo.cs index 322a88d..f1849fe 100644 --- a/EnvyUpdate/Properties/AssemblyInfo.cs +++ b/EnvyUpdate/Properties/AssemblyInfo.cs @@ -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.21")] +[assembly: AssemblyFileVersion("2.21")] From 0ad39d31327f18f56eb66e04b9c320003f14fefb Mon Sep 17 00:00:00 2001 From: fyr77 Date: Thu, 28 Sep 2023 22:59:34 +0200 Subject: [PATCH 2/4] add v2 info --- README.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 15c718d..9efd391 100644 --- a/README.md +++ b/README.md @@ -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! From 5ff8479d8037503ed460010699b839103dc48133 Mon Sep 17 00:00:00 2001 From: fyr77 Date: Fri, 23 Feb 2024 20:36:05 +0100 Subject: [PATCH 3/4] fix non-gtx detection --- EnvyUpdate/Util.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EnvyUpdate/Util.cs b/EnvyUpdate/Util.cs index c2f6711..c1ec102 100644 --- a/EnvyUpdate/Util.cs +++ b/EnvyUpdate/Util.cs @@ -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(); From 0699cd29405cee108404c3841a4ebfd28c2635c3 Mon Sep 17 00:00:00 2001 From: fyr77 Date: Fri, 23 Feb 2024 20:48:22 +0100 Subject: [PATCH 4/4] bump version to 2.22 --- EnvyUpdate/Properties/AssemblyInfo.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/EnvyUpdate/Properties/AssemblyInfo.cs b/EnvyUpdate/Properties/AssemblyInfo.cs index f1849fe..6131dab 100644 --- a/EnvyUpdate/Properties/AssemblyInfo.cs +++ b/EnvyUpdate/Properties/AssemblyInfo.cs @@ -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.21")] -[assembly: AssemblyFileVersion("2.21")] +[assembly: AssemblyVersion("2.22")] +[assembly: AssemblyFileVersion("2.22")]