Skip to content

Commit

Permalink
Changed the URL of the update URL to show all versions because hotfix…
Browse files Browse the repository at this point in the history
…es updates wont show the full changelog for minor version update
  • Loading branch information
ElPumpo committed Jan 26, 2023
1 parent 966eb77 commit 2cb7c8f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion TinyNvidiaUpdateChecker/MainConsole.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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 });
}
}
}
Expand Down

0 comments on commit 2cb7c8f

Please sign in to comment.