diff --git a/src/Views/About.axaml b/src/Views/About.axaml index e6839617c..596af1f58 100644 --- a/src/Views/About.axaml +++ b/src/Views/About.axaml @@ -45,7 +45,9 @@ - + diff --git a/src/Views/About.axaml.cs b/src/Views/About.axaml.cs index 5fdfd5b51..cda951f9e 100644 --- a/src/Views/About.axaml.cs +++ b/src/Views/About.axaml.cs @@ -20,6 +20,12 @@ public About() TxtCopyright.Text = copyright.Copyright; } + private void OnVisitGithubRelease(object _, RoutedEventArgs e) + { + Native.OS.OpenBrowser($"https://github.com/sourcegit-scm/sourcegit/releases/tag/v{TxtVersion.Text}"); + e.Handled = true; + } + private void OnVisitWebsite(object _, RoutedEventArgs e) { Native.OS.OpenBrowser("https://sourcegit-scm.github.io/");