From 036a3761eae5ae3ffed41e1a0ef5636fd96e8df5 Mon Sep 17 00:00:00 2001 From: Jack251970 <1160210343@qq.com> Date: Fri, 27 Feb 2026 19:05:25 +0800 Subject: [PATCH] Remove log for plugin version mismatch in PluginManager Logging when a plugin's minimum Flow Launcher version is not met has been removed. The method now returns false without logging any informational message. --- Flow.Launcher.Core/Plugin/PluginManager.cs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Flow.Launcher.Core/Plugin/PluginManager.cs b/Flow.Launcher.Core/Plugin/PluginManager.cs index b2eeac9a5..e11cae269 100644 --- a/Flow.Launcher.Core/Plugin/PluginManager.cs +++ b/Flow.Launcher.Core/Plugin/PluginManager.cs @@ -1078,6 +1078,7 @@ namespace Flow.Launcher.Core.Plugin internal static bool IsMinimumAppVersionSatisfied(string pluginName, string minimumAppVersion) { + // If the minimum app version is not specified in plugin.json, this plugin is compatible with all app versions if (string.IsNullOrEmpty(minimumAppVersion)) return true; @@ -1093,10 +1094,6 @@ namespace Flow.Launcher.Core.Plugin if (appVersion >= minimumVersion) return true; - PublicApi.Instance.LogInfo(ClassName, - $"Plugin {pluginName} requires minimum Flow Launcher version {minimumAppVersion}, " - + $"but current version is {Constant.Version}."); - return false; }