diff --git a/src/Files.App/Dialogs/ReleaseNotesDialog.xaml b/src/Files.App/Dialogs/ReleaseNotesDialog.xaml index 109966681635..0099aee78583 100644 --- a/src/Files.App/Dialogs/ReleaseNotesDialog.xaml +++ b/src/Files.App/Dialogs/ReleaseNotesDialog.xaml @@ -69,7 +69,9 @@ HorizontalScrollMode="Auto" VerticalScrollMode="Auto"> diff --git a/src/Files.App/Dialogs/ReleaseNotesDialog.xaml.cs b/src/Files.App/Dialogs/ReleaseNotesDialog.xaml.cs index 9035234e02c6..d5aae7b549ea 100644 --- a/src/Files.App/Dialogs/ReleaseNotesDialog.xaml.cs +++ b/src/Files.App/Dialogs/ReleaseNotesDialog.xaml.cs @@ -3,6 +3,7 @@ using Microsoft.UI.Xaml; using Microsoft.UI.Xaml.Controls; +using Windows.System; namespace Files.App.Dialogs { @@ -58,5 +59,11 @@ private ContentDialog SetContentDialogRoot(ContentDialog contentDialog) return contentDialog; } + + private async void ReleaseNotesMarkdownTextBlock_LinkClicked(object sender, CommunityToolkit.WinUI.UI.Controls.LinkClickedEventArgs e) + { + if (Uri.TryCreate(e.Link, UriKind.Absolute, out Uri? link)) + await Launcher.LaunchUriAsync(link); + } } }