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; }