From 7a318fed47adeffa2e40f04bef1d98019fdf1d95 Mon Sep 17 00:00:00 2001 From: Jeremy Date: Thu, 8 Jul 2021 07:45:15 +1000 Subject: [PATCH] move plugins into Interfaces folder --- Flow.Launcher.Plugin/{ => Interfaces}/IAsyncPlugin.cs | 0 Flow.Launcher.Plugin/{ => Interfaces}/IAsyncReloadable.cs | 0 Flow.Launcher.Plugin/{ => Interfaces}/IContextMenu.cs | 0 Flow.Launcher.Plugin/{ => Interfaces}/IPlugin.cs | 0 Flow.Launcher.Plugin/{ => Interfaces}/IPluginI18n.cs | 0 Flow.Launcher.Plugin/{ => Interfaces}/IPublicAPI.cs | 0 Flow.Launcher.Plugin/{ => Interfaces}/IReloadable.cs | 0 Flow.Launcher.Plugin/{ => Interfaces}/IResultUpdated.cs | 0 Flow.Launcher.Plugin/{ => Interfaces}/ISavable.cs | 0 Flow.Launcher.Plugin/{ => Interfaces}/ISettingProvider.cs | 0 Flow.Launcher.Plugin/README.md | 2 +- 11 files changed, 1 insertion(+), 1 deletion(-) rename Flow.Launcher.Plugin/{ => Interfaces}/IAsyncPlugin.cs (100%) rename Flow.Launcher.Plugin/{ => Interfaces}/IAsyncReloadable.cs (100%) rename Flow.Launcher.Plugin/{ => Interfaces}/IContextMenu.cs (100%) rename Flow.Launcher.Plugin/{ => Interfaces}/IPlugin.cs (100%) rename Flow.Launcher.Plugin/{ => Interfaces}/IPluginI18n.cs (100%) rename Flow.Launcher.Plugin/{ => Interfaces}/IPublicAPI.cs (100%) rename Flow.Launcher.Plugin/{ => Interfaces}/IReloadable.cs (100%) rename Flow.Launcher.Plugin/{ => Interfaces}/IResultUpdated.cs (100%) rename Flow.Launcher.Plugin/{ => Interfaces}/ISavable.cs (100%) rename Flow.Launcher.Plugin/{ => Interfaces}/ISettingProvider.cs (100%) diff --git a/Flow.Launcher.Plugin/IAsyncPlugin.cs b/Flow.Launcher.Plugin/Interfaces/IAsyncPlugin.cs similarity index 100% rename from Flow.Launcher.Plugin/IAsyncPlugin.cs rename to Flow.Launcher.Plugin/Interfaces/IAsyncPlugin.cs diff --git a/Flow.Launcher.Plugin/IAsyncReloadable.cs b/Flow.Launcher.Plugin/Interfaces/IAsyncReloadable.cs similarity index 100% rename from Flow.Launcher.Plugin/IAsyncReloadable.cs rename to Flow.Launcher.Plugin/Interfaces/IAsyncReloadable.cs diff --git a/Flow.Launcher.Plugin/IContextMenu.cs b/Flow.Launcher.Plugin/Interfaces/IContextMenu.cs similarity index 100% rename from Flow.Launcher.Plugin/IContextMenu.cs rename to Flow.Launcher.Plugin/Interfaces/IContextMenu.cs diff --git a/Flow.Launcher.Plugin/IPlugin.cs b/Flow.Launcher.Plugin/Interfaces/IPlugin.cs similarity index 100% rename from Flow.Launcher.Plugin/IPlugin.cs rename to Flow.Launcher.Plugin/Interfaces/IPlugin.cs diff --git a/Flow.Launcher.Plugin/IPluginI18n.cs b/Flow.Launcher.Plugin/Interfaces/IPluginI18n.cs similarity index 100% rename from Flow.Launcher.Plugin/IPluginI18n.cs rename to Flow.Launcher.Plugin/Interfaces/IPluginI18n.cs diff --git a/Flow.Launcher.Plugin/IPublicAPI.cs b/Flow.Launcher.Plugin/Interfaces/IPublicAPI.cs similarity index 100% rename from Flow.Launcher.Plugin/IPublicAPI.cs rename to Flow.Launcher.Plugin/Interfaces/IPublicAPI.cs diff --git a/Flow.Launcher.Plugin/IReloadable.cs b/Flow.Launcher.Plugin/Interfaces/IReloadable.cs similarity index 100% rename from Flow.Launcher.Plugin/IReloadable.cs rename to Flow.Launcher.Plugin/Interfaces/IReloadable.cs diff --git a/Flow.Launcher.Plugin/IResultUpdated.cs b/Flow.Launcher.Plugin/Interfaces/IResultUpdated.cs similarity index 100% rename from Flow.Launcher.Plugin/IResultUpdated.cs rename to Flow.Launcher.Plugin/Interfaces/IResultUpdated.cs diff --git a/Flow.Launcher.Plugin/ISavable.cs b/Flow.Launcher.Plugin/Interfaces/ISavable.cs similarity index 100% rename from Flow.Launcher.Plugin/ISavable.cs rename to Flow.Launcher.Plugin/Interfaces/ISavable.cs diff --git a/Flow.Launcher.Plugin/ISettingProvider.cs b/Flow.Launcher.Plugin/Interfaces/ISettingProvider.cs similarity index 100% rename from Flow.Launcher.Plugin/ISettingProvider.cs rename to Flow.Launcher.Plugin/Interfaces/ISettingProvider.cs diff --git a/Flow.Launcher.Plugin/README.md b/Flow.Launcher.Plugin/README.md index 3b4d1598a..5c5b7c3ed 100644 --- a/Flow.Launcher.Plugin/README.md +++ b/Flow.Launcher.Plugin/README.md @@ -3,4 +3,4 @@ * Defines base objects and interfaces for plugins * Plugin authors making C# plugins should reference this DLL via nuget -* Contains base commands used by all plugins +* Contains commands and models that can be used by plugins