diff --git a/src/Resources/Locales/en_US.axaml b/src/Resources/Locales/en_US.axaml index 5aee1ab1..22a1cde2 100644 --- a/src/Resources/Locales/en_US.axaml +++ b/src/Resources/Locales/en_US.axaml @@ -2,6 +2,7 @@ About About SourceGit • Build with + • Chart is rendered by © 2024 sourcegit-scm • TextEditor from • Monospace fonts come from diff --git a/src/Resources/Locales/zh_CN.axaml b/src/Resources/Locales/zh_CN.axaml index 89b04ade..b95a85e8 100644 --- a/src/Resources/Locales/zh_CN.axaml +++ b/src/Resources/Locales/zh_CN.axaml @@ -5,6 +5,7 @@ 关于软件 关于本软件 • 项目依赖于 + • 图表绘制组件来自 © 2024 sourcegit-scm • 文本编辑器使用 • 等宽字体来自于 diff --git a/src/Resources/Locales/zh_TW.axaml b/src/Resources/Locales/zh_TW.axaml index d5817d11..2e0fcd3f 100644 --- a/src/Resources/Locales/zh_TW.axaml +++ b/src/Resources/Locales/zh_TW.axaml @@ -5,6 +5,7 @@ 關於 關於 SourceGit • 專案依賴於 + • 圖表繪製元件來自 © 2024 sourcegit-scm • 文字編輯器使用 • 等寬字型來自於 diff --git a/src/Views/About.axaml b/src/Views/About.axaml index 6f65fc8e..159a34a9 100644 --- a/src/Views/About.axaml +++ b/src/Views/About.axaml @@ -49,7 +49,7 @@ HorizontalAlignment="Center" VerticalAlignment="Center"/> - + @@ -74,6 +74,11 @@ + + + + + diff --git a/src/Views/About.axaml.cs b/src/Views/About.axaml.cs index 97b85ac8..4f7f953f 100644 --- a/src/Views/About.axaml.cs +++ b/src/Views/About.axaml.cs @@ -44,6 +44,12 @@ namespace SourceGit.Views e.Handled = true; } + private void OnVisitLiveCharts2(object _, PointerPressedEventArgs e) + { + Native.OS.OpenBrowser("https://livecharts.dev/"); + e.Handled = true; + } + private void OnVisitSourceCode(object _, PointerPressedEventArgs e) { Native.OS.OpenBrowser("https://github.com/sourcegit-scm/sourcegit");