diff --git a/Flow.Launcher/Languages/en.xaml b/Flow.Launcher/Languages/en.xaml index 11ab73662..fc26774c4 100644 --- a/Flow.Launcher/Languages/en.xaml +++ b/Flow.Launcher/Languages/en.xaml @@ -280,6 +280,9 @@ Clear Logs Are you sure you want to delete all logs? Wizard + User Data Location + Installed plugins and user settings are saved in the User data folder. This location may vary depending on whether you are in portable mode or not. + Open Folder Select File Manager diff --git a/Flow.Launcher/Resources/CustomControlTemplate.xaml b/Flow.Launcher/Resources/CustomControlTemplate.xaml index b3a26ab0a..cb93daf27 100644 --- a/Flow.Launcher/Resources/CustomControlTemplate.xaml +++ b/Flow.Launcher/Resources/CustomControlTemplate.xaml @@ -1702,6 +1702,21 @@ + + 0:0:0.033 0:0:0.367 @@ -1716,7 +1731,7 @@ - + diff --git a/Flow.Launcher/SettingPages/ViewModels/SettingsPaneAboutViewModel.cs b/Flow.Launcher/SettingPages/ViewModels/SettingsPaneAboutViewModel.cs index b6563d3e5..0ed2090f1 100644 --- a/Flow.Launcher/SettingPages/ViewModels/SettingsPaneAboutViewModel.cs +++ b/Flow.Launcher/SettingPages/ViewModels/SettingsPaneAboutViewModel.cs @@ -80,6 +80,15 @@ public partial class SettingsPaneAboutViewModel : BaseModel PluginManager.API.OpenDirectory(Path.Combine(DataLocation.DataDirectory(), Constant.Settings)); } + [RelayCommand] + private void OpenParentOfSettingsFolder(object parameter) + { + string settingsFolderPath = Path.Combine(DataLocation.DataDirectory(), Constant.Settings); + string parentFolderPath = Path.GetDirectoryName(settingsFolderPath); + PluginManager.API.OpenDirectory(parentFolderPath); + } + + [RelayCommand] private void OpenLogsFolder() { diff --git a/Flow.Launcher/SettingPages/Views/SettingsPaneAbout.xaml b/Flow.Launcher/SettingPages/Views/SettingsPaneAbout.xaml index e7e1b8757..e33fee02b 100644 --- a/Flow.Launcher/SettingPages/Views/SettingsPaneAbout.xaml +++ b/Flow.Launcher/SettingPages/Views/SettingsPaneAbout.xaml @@ -26,7 +26,6 @@ Text="{DynamicResource about}" TextAlignment="left" /> - + + + +