diff --git a/Flow.Launcher.Infrastructure/Constant.cs b/Flow.Launcher.Infrastructure/Constant.cs
index 283ab7703..081dd9909 100644
--- a/Flow.Launcher.Infrastructure/Constant.cs
+++ b/Flow.Launcher.Infrastructure/Constant.cs
@@ -40,5 +40,7 @@ namespace Flow.Launcher.Infrastructure
public const string Logs = "Logs";
public const string Website = "https://flow-launcher.github.io";
+ public const string GitHub = "https://github.com/Flow-Launcher/Flow.Launcher";
+ public const string Docs = "https://flow-launcher.github.io/docs";
}
}
diff --git a/Flow.Launcher/Languages/en.xaml b/Flow.Launcher/Languages/en.xaml
index 6ccc8010e..6cd198d0b 100644
--- a/Flow.Launcher/Languages/en.xaml
+++ b/Flow.Launcher/Languages/en.xaml
@@ -130,6 +130,8 @@
About
Website
+ Github
+ Docs
Version
You have activated Flow Launcher {0} times
Check for Updates
@@ -141,6 +143,9 @@
Release Notes
Usage Tips
+ DevTools
+ Setting Folder
+ Log Folder
Select File Manager
diff --git a/Flow.Launcher/SettingWindow.xaml b/Flow.Launcher/SettingWindow.xaml
index 1524a2940..0df6233d3 100644
--- a/Flow.Launcher/SettingWindow.xaml
+++ b/Flow.Launcher/SettingWindow.xaml
@@ -2348,11 +2348,21 @@
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
@@ -2366,7 +2376,7 @@
-
+
@@ -2380,11 +2390,21 @@
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
@@ -2394,7 +2414,7 @@
-
+
-
+ Content="{DynamicResource settingfolder}" />
+
diff --git a/Flow.Launcher/ViewModel/SettingWindowViewModel.cs b/Flow.Launcher/ViewModel/SettingWindowViewModel.cs
index e09bbe04b..7853fed9d 100644
--- a/Flow.Launcher/ViewModel/SettingWindowViewModel.cs
+++ b/Flow.Launcher/ViewModel/SettingWindowViewModel.cs
@@ -518,6 +518,8 @@ namespace Flow.Launcher.ViewModel
public string Website => Constant.Website;
public string ReleaseNotes => _updater.GitHubRepository + @"/releases/latest";
public string Documentation => Constant.Documentation;
+ public string Docs => Constant.Docs;
+ public string Github => Constant.GitHub;
public static string Version => Constant.Version;
public string ActivatedTimes => string.Format(_translater.GetTranslation("about_activate_times"), Settings.ActivateTimes);
#endregion