diff --git a/Flow.Launcher.Infrastructure/Constant.cs b/Flow.Launcher.Infrastructure/Constant.cs
index 5ace463768d..b0eebd2df5d 100644
--- a/Flow.Launcher.Infrastructure/Constant.cs
+++ b/Flow.Launcher.Infrastructure/Constant.cs
@@ -45,6 +45,7 @@ public static class Constant
public const string Logs = "Logs";
public const string Website = "https://flowlauncher.com";
+ public const string SponsorPage = "https://github.com/sponsors/Flow-Launcher";
public const string GitHub = "https://github.com/Flow-Launcher/Flow.Launcher";
public const string Docs = "https://flowlauncher.com/docs";
}
diff --git a/Flow.Launcher/Languages/en.xaml b/Flow.Launcher/Languages/en.xaml
index 89e886c6171..5836df5232b 100644
--- a/Flow.Launcher/Languages/en.xaml
+++ b/Flow.Launcher/Languages/en.xaml
@@ -191,6 +191,7 @@
IconsYou have activated Flow Launcher {0} timesCheck for Updates
+ Become A SponsorNew version {0} is available, would you like to restart Flow Launcher to use the update?Check updates failed, please check your connection and proxy settings to api.github.com.
diff --git a/Flow.Launcher/SettingWindow.xaml b/Flow.Launcher/SettingWindow.xaml
index c3473a1675b..2c0e4db2591 100644
--- a/Flow.Launcher/SettingWindow.xaml
+++ b/Flow.Launcher/SettingWindow.xaml
@@ -1,4 +1,4 @@
-
-
+
+
+
+
+
diff --git a/Flow.Launcher/SettingWindow.xaml.cs b/Flow.Launcher/SettingWindow.xaml.cs
index 9ceb9789df0..70758540d69 100644
--- a/Flow.Launcher/SettingWindow.xaml.cs
+++ b/Flow.Launcher/SettingWindow.xaml.cs
@@ -10,7 +10,9 @@
using ModernWpf;
using ModernWpf.Controls;
using System;
+using System.Diagnostics;
using System.IO;
+using System.Security.Policy;
using System.Windows;
using System.Windows.Data;
using System.Windows.Forms;
diff --git a/Flow.Launcher/ViewModel/SettingWindowViewModel.cs b/Flow.Launcher/ViewModel/SettingWindowViewModel.cs
index 60dc95e2ef9..0c25dcc857b 100644
--- a/Flow.Launcher/ViewModel/SettingWindowViewModel.cs
+++ b/Flow.Launcher/ViewModel/SettingWindowViewModel.cs
@@ -799,6 +799,7 @@ public bool ShortcutExists(string key)
#region about
public string Website => Constant.Website;
+ public string SponsorPage => Constant.SponsorPage;
public string ReleaseNotes => _updater.GitHubRepository + @"/releases/latest";
public string Documentation => Constant.Documentation;
public string Docs => Constant.Docs;