From 2cb7c8f1fa8c99002d7df740aef83183fa81354e Mon Sep 17 00:00:00 2001 From: ElPumpo Date: Thu, 26 Jan 2023 09:05:59 +0100 Subject: [PATCH] Changed the URL of the update URL to show all versions because hotfixes updates wont show the full changelog for minor version update --- CHANGELOG.md | 3 +++ TinyNvidiaUpdateChecker/MainConsole.cs | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d38975..aa4795d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### 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 diff --git a/TinyNvidiaUpdateChecker/MainConsole.cs b/TinyNvidiaUpdateChecker/MainConsole.cs index 4889b91..bde6448 100644 --- a/TinyNvidiaUpdateChecker/MainConsole.cs +++ b/TinyNvidiaUpdateChecker/MainConsole.cs @@ -272,7 +272,7 @@ private static void SearchForUpdates() DialogResult dialog = MessageBox.Show("There is a new client update available to download, do you want to be navigate to the official GitHub download section?", "TinyNvidiaUpdateChecker", MessageBoxButtons.YesNo, MessageBoxIcon.Question); if (dialog == DialogResult.Yes) { - Process.Start(new ProcessStartInfo(updateUrl) { UseShellExecute = true }); + Process.Start(new ProcessStartInfo(updateUrl[..^7]) { UseShellExecute = true }); } } }