diff --git a/src/Models/Version.cs b/src/Models/Version.cs
index 04ba541a..d0744b68 100644
--- a/src/Models/Version.cs
+++ b/src/Models/Version.cs
@@ -15,7 +15,7 @@ using System.Text;
namespace SourceGit.Models {
///
- /// Gitee开放API中Release信息格式
+ /// Github开放API中Release信息格式
///
public class Version {
[JsonPropertyName("id")]
diff --git a/src/Views/About.xaml b/src/Views/About.xaml
index 27839fba..f078bdde 100644
--- a/src/Views/About.xaml
+++ b/src/Views/About.xaml
@@ -114,7 +114,7 @@
-
+
diff --git a/src/Views/Upgrade.xaml.cs b/src/Views/Upgrade.xaml.cs
index c0d80c0c..eefd3a50 100644
--- a/src/Views/Upgrade.xaml.cs
+++ b/src/Views/Upgrade.xaml.cs
@@ -15,7 +15,7 @@ namespace SourceGit.Views {
}
private void Download(object sender, RoutedEventArgs e) {
- var url = $"https://gitee.com/sourcegit/sourcegit/releases/{Version.TagName}";
+ var url = $"https://github.com/sourcegit-scm/sourcegit/releases/{Version.TagName}";
#if NET48
Process.Start(url);
#else