Fixed the "System.ComponentModel.Win32Exception: An error occurred in sending the command to the application" error in the about-box link code.
1.1 --- a/GUI/AboutBox.cs Sat May 01 12:12:37 2010 +0000
1.2 +++ b/GUI/AboutBox.cs Sat May 01 15:55:19 2010 +0000
1.3 @@ -56,7 +56,9 @@
1.4
1.5 private void linkLabel1_LinkClicked(object sender,
1.6 LinkLabelLinkClickedEventArgs e) {
1.7 - Process.Start(new ProcessStartInfo(e.Link.LinkData.ToString()));
1.8 + try {
1.9 + Process.Start(new ProcessStartInfo(e.Link.LinkData.ToString()));
1.10 + } catch { }
1.11 }
1.12
1.13 }
2.1 --- a/Properties/AssemblyInfo.cs Sat May 01 12:12:37 2010 +0000
2.2 +++ b/Properties/AssemblyInfo.cs Sat May 01 15:55:19 2010 +0000
2.3 @@ -69,5 +69,5 @@
2.4 // You can specify all the values or you can default the Build and Revision Numbers
2.5 // by using the '*' as shown below:
2.6 // [assembly: AssemblyVersion("1.0.*")]
2.7 -[assembly: AssemblyVersion("0.1.33.0")]
2.8 -[assembly: AssemblyFileVersion("0.1.33.0")]
2.9 +[assembly: AssemblyVersion("0.1.34.0")]
2.10 +[assembly: AssemblyFileVersion("0.1.34.0")]