check for updates - initial implementation.

This commit is contained in:
morkt
2017-02-14 07:22:48 +04:00
parent 2df8145f83
commit 987d57a4db
11 changed files with 370 additions and 16 deletions

View File

@@ -189,20 +189,8 @@ namespace GARbro.GUI
private void Hyperlink_RequestNavigate (object sender, RequestNavigateEventArgs e)
{
try
{
if (e.Uri.IsAbsoluteUri)
{
Process.Start (new ProcessStartInfo (e.Uri.AbsoluteUri));
e.Handled = true;
}
else
throw new ApplicationException ("URI is not absolute");
}
catch (Exception X)
{
Trace.WriteLine ("Link navigation failed: "+X.Message, e.Uri.ToString());
}
if (App.NavigateUri (e.Uri))
e.Handled = true;
}
}