mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
PluginsManager: remove IAsyncReloadable
no point for it, anymore
This commit is contained in:
parent
bc5a9710b3
commit
d6bca894ff
1 changed files with 1 additions and 6 deletions
|
|
@ -12,7 +12,7 @@ using System.Windows;
|
||||||
|
|
||||||
namespace Flow.Launcher.Plugin.PluginsManager
|
namespace Flow.Launcher.Plugin.PluginsManager
|
||||||
{
|
{
|
||||||
public class Main : ISettingProvider, IAsyncPlugin, IContextMenu, IPluginI18n, IAsyncReloadable
|
public class Main : ISettingProvider, IAsyncPlugin, IContextMenu, IPluginI18n
|
||||||
{
|
{
|
||||||
internal PluginInitContext Context { get; set; }
|
internal PluginInitContext Context { get; set; }
|
||||||
|
|
||||||
|
|
@ -76,10 +76,5 @@ namespace Flow.Launcher.Plugin.PluginsManager
|
||||||
{
|
{
|
||||||
return Context.API.GetTranslation("plugin_pluginsmanager_plugin_description");
|
return Context.API.GetTranslation("plugin_pluginsmanager_plugin_description");
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task ReloadDataAsync()
|
|
||||||
{
|
|
||||||
await pluginManager.UpdateManifestAsync();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Loading…
Reference in a new issue