From c82b9a9b5356f09f70224fa25810c7b278fc4a58 Mon Sep 17 00:00:00 2001 From: DB p Date: Mon, 6 Dec 2021 07:20:41 +0900 Subject: [PATCH 1/2] remove subtitle ContextMenuPluginInfo --- Flow.Launcher/ViewModel/MainViewModel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Flow.Launcher/ViewModel/MainViewModel.cs b/Flow.Launcher/ViewModel/MainViewModel.cs index e92ffbe0d..6af396bcc 100644 --- a/Flow.Launcher/ViewModel/MainViewModel.cs +++ b/Flow.Launcher/ViewModel/MainViewModel.cs @@ -682,7 +682,7 @@ namespace Flow.Launcher.ViewModel var plugin = translator.GetTranslation("plugin"); var title = $"{plugin}: {metadata.Name}"; var icon = metadata.IcoPath; - var subtitle = $"{author}: {metadata.Author}, {website}: {metadata.Website} {version}: {metadata.Version}"; + var subtitle = ""; var menu = new Result { From 263e097678efeb944a55b00e341bc22debb48f23 Mon Sep 17 00:00:00 2001 From: DB p Date: Mon, 6 Dec 2021 19:10:34 +0900 Subject: [PATCH 2/2] Add "by author" in subtitle --- Flow.Launcher/Languages/en.xaml | 2 +- Flow.Launcher/ViewModel/MainViewModel.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Flow.Launcher/Languages/en.xaml b/Flow.Launcher/Languages/en.xaml index 926ed558b..afbca7761 100644 --- a/Flow.Launcher/Languages/en.xaml +++ b/Flow.Launcher/Languages/en.xaml @@ -62,7 +62,7 @@ New Priority Priority Plugin Directory - Author: + by Init time: Query time: | Version diff --git a/Flow.Launcher/ViewModel/MainViewModel.cs b/Flow.Launcher/ViewModel/MainViewModel.cs index 6af396bcc..187ba63ec 100644 --- a/Flow.Launcher/ViewModel/MainViewModel.cs +++ b/Flow.Launcher/ViewModel/MainViewModel.cs @@ -682,7 +682,7 @@ namespace Flow.Launcher.ViewModel var plugin = translator.GetTranslation("plugin"); var title = $"{plugin}: {metadata.Name}"; var icon = metadata.IcoPath; - var subtitle = ""; + var subtitle = $"{author} {metadata.Author}"; var menu = new Result {