diff --git a/GUI/AboutBox.cs b/GUI/AboutBox.cs index 10ce652..ef6ea67 100644 --- a/GUI/AboutBox.cs +++ b/GUI/AboutBox.cs @@ -56,7 +56,9 @@ namespace OpenHardwareMonitor.GUI { private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { - Process.Start(new ProcessStartInfo(e.Link.LinkData.ToString())); + try { + Process.Start(new ProcessStartInfo(e.Link.LinkData.ToString())); + } catch { } } } diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs index d9acf30..c54485f 100644 --- a/Properties/AssemblyInfo.cs +++ b/Properties/AssemblyInfo.cs @@ -69,5 +69,5 @@ using System.Runtime.InteropServices; // 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("0.1.33.0")] -[assembly: AssemblyFileVersion("0.1.33.0")] +[assembly: AssemblyVersion("0.1.34.0")] +[assembly: AssemblyFileVersion("0.1.34.0")]