From b9da0cd7a058a6647e9b4d49a32320c487836c2a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Jun 2024 17:06:47 +0000 Subject: [PATCH 1/2] --- updated-dependencies: - dependency-name: VirtualizingWrapPanel dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Flow.Launcher/Flow.Launcher.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Flow.Launcher/Flow.Launcher.csproj b/Flow.Launcher/Flow.Launcher.csproj index 6e7ed58d788..68043c49d3b 100644 --- a/Flow.Launcher/Flow.Launcher.csproj +++ b/Flow.Launcher/Flow.Launcher.csproj @@ -95,7 +95,7 @@ - + From 5993119c66df8c0d2868e3e9c1861793fc769d31 Mon Sep 17 00:00:00 2001 From: Hongtao Zhang Date: Wed, 19 Jun 2024 13:05:10 -0500 Subject: [PATCH 2/2] add semantic version and fix the changed orientation behavior --- Flow.Launcher/Flow.Launcher.csproj | 1 + Flow.Launcher/SettingPages/Views/SettingsPanePluginStore.xaml | 3 --- Flow.Launcher/ViewModel/PluginStoreItemViewModel.cs | 2 ++ 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Flow.Launcher/Flow.Launcher.csproj b/Flow.Launcher/Flow.Launcher.csproj index 68043c49d3b..05bda49efdd 100644 --- a/Flow.Launcher/Flow.Launcher.csproj +++ b/Flow.Launcher/Flow.Launcher.csproj @@ -95,6 +95,7 @@ + diff --git a/Flow.Launcher/SettingPages/Views/SettingsPanePluginStore.xaml b/Flow.Launcher/SettingPages/Views/SettingsPanePluginStore.xaml index 40d76a47105..89d25377b77 100644 --- a/Flow.Launcher/SettingPages/Views/SettingsPanePluginStore.xaml +++ b/Flow.Launcher/SettingPages/Views/SettingsPanePluginStore.xaml @@ -119,8 +119,6 @@ ScrollViewer.HorizontalScrollBarVisibility="Disabled" SelectionMode="Single" Style="{DynamicResource StoreListStyle}" - VirtualizingPanel.CacheLength="1,1" - VirtualizingPanel.CacheLengthUnit="Page" VirtualizingPanel.IsVirtualizingWhenGrouping="True" VirtualizingPanel.ScrollUnit="Pixel"> @@ -130,7 +128,6 @@ Margin="0,0,0,10" ItemSize="216,184" MouseWheelDelta="48" - Orientation="Vertical" ScrollLineDelta="16" SpacingMode="None" StretchItems="True" /> diff --git a/Flow.Launcher/ViewModel/PluginStoreItemViewModel.cs b/Flow.Launcher/ViewModel/PluginStoreItemViewModel.cs index 513d0443fe4..38b5bec6561 100644 --- a/Flow.Launcher/ViewModel/PluginStoreItemViewModel.cs +++ b/Flow.Launcher/ViewModel/PluginStoreItemViewModel.cs @@ -4,6 +4,8 @@ using Flow.Launcher.Core.ExternalPlugins; using Flow.Launcher.Core.Plugin; using Flow.Launcher.Plugin; +using SemanticVersioning; +using Version = SemanticVersioning.Version; namespace Flow.Launcher.ViewModel {