diff --git a/Flow.Launcher/SettingWindow.xaml b/Flow.Launcher/SettingWindow.xaml index bd4cca0bb..74798235a 100644 --- a/Flow.Launcher/SettingWindow.xaml +++ b/Flow.Launcher/SettingWindow.xaml @@ -1625,7 +1625,7 @@ + Text="{Binding Description, Mode=OneWay}" /> @@ -1687,7 +1687,7 @@ Foreground="{DynamicResource Color04B}" NavigateUri="{Binding Website}" RequestNavigate="OnRequestNavigate"> - + diff --git a/Flow.Launcher/ViewModel/PluginStoreItemViewModel.cs b/Flow.Launcher/ViewModel/PluginStoreItemViewModel.cs index 94b435f1a..606511738 100644 --- a/Flow.Launcher/ViewModel/PluginStoreItemViewModel.cs +++ b/Flow.Launcher/ViewModel/PluginStoreItemViewModel.cs @@ -16,12 +16,16 @@ namespace Flow.Launcher.ViewModel public string Name => _plugin.Name; public string Description => _plugin.Description; + public string IcoPath => _plugin.IcoPath; public string Author => _plugin.Author; + public string Website => _plugin.Website; + public string Language => _plugin.Language; + public string UrlDownload => _plugin.UrlDownload; + public string UrlSourceCode => _plugin.UrlSourceCode; public string Version => _plugin.Version; - public bool LabelNew => _plugin.LatestReleaseDate-DateTime.Now < TimeSpan.FromDays(7); public bool LabelInstalled => PluginManager.GetPluginForId(_plugin.ID) != null; - public bool LabelUpdated => _plugin.DateAdded -DateTime.Now < TimeSpan.FromDays(7); + public bool LabelUpdated => _plugin.DateAdded -DateTime.Now < TimeSpan.FromDays(5) && !LabelNew; } }