Skip to content

Commit 633a956

Browse files
committed
v1.16.1 Hotfix for navigate to GitHub prompt causing exception
Thanks UseShellExecute False
1 parent 0228610 commit 633a956

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

7+
## [1.16.1] - 2023-01-21
8+
### Fixed
9+
- Hotfix for navigate to GitHub prompt causing exception
10+
711
## [1.16.0] - 2023-01-21
812
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.
913

TinyNvidiaUpdateChecker/MainConsole.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ private static void SearchForUpdates()
269269
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);
270270

271271
if (dialog == DialogResult.Yes) {
272-
Process.Start(updateUrl);
272+
Process.Start(new ProcessStartInfo(updateUrl) { UseShellExecute = true });
273273
}
274274
}
275275
}

TinyNvidiaUpdateChecker/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@
1919
// Minor Version
2020
// Patch
2121
// Following the Semantic Versioning 2.0.0 standard; see http://semver.org/spec/v2.0.0.html.
22-
[assembly: AssemblyVersion("1.16.0")]
23-
[assembly: AssemblyFileVersion("1.16.0")]
22+
[assembly: AssemblyVersion("1.16.1")]
23+
[assembly: AssemblyFileVersion("1.16.1")]

0 commit comments

Comments
 (0)