From 28239c4a513ded1dfcc5c9a4845c171ef35b70e1 Mon Sep 17 00:00:00 2001 From: Jeremy Wu Date: Wed, 23 Oct 2019 16:18:21 +1100 Subject: [PATCH 1/3] Fix to allow plugin to start up disabled as default --- Wox.Infrastructure/UserSettings/PluginSettings.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Wox.Infrastructure/UserSettings/PluginSettings.cs b/Wox.Infrastructure/UserSettings/PluginSettings.cs index c80ee7e722..c47fe7c156 100644 --- a/Wox.Infrastructure/UserSettings/PluginSettings.cs +++ b/Wox.Infrastructure/UserSettings/PluginSettings.cs @@ -29,7 +29,7 @@ namespace Wox.Infrastructure.UserSettings ID = metadata.ID, Name = metadata.Name, ActionKeywords = metadata.ActionKeywords, - Disabled = false + Disabled = metadata.Disabled }; } } From aa4922840b85ad943210aa83386e3ab208b9a3c8 Mon Sep 17 00:00:00 2001 From: Jeremy Wu Date: Wed, 23 Oct 2019 16:18:55 +1100 Subject: [PATCH 2/3] Set Everything plugin as disabled by default --- Plugins/Wox.Plugin.Everything/plugin.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Plugins/Wox.Plugin.Everything/plugin.json b/Plugins/Wox.Plugin.Everything/plugin.json index d7970352c0..c19d9a80ff 100644 --- a/Plugins/Wox.Plugin.Everything/plugin.json +++ b/Plugins/Wox.Plugin.Everything/plugin.json @@ -8,5 +8,6 @@ "Language":"csharp", "Website":"http://www.wox.one", "IcoPath":"Images\\find.png", - "ExecuteFileName":"Wox.Plugin.Everything.dll" + "ExecuteFileName":"Wox.Plugin.Everything.dll", + "Disabled": true } From 6ec33db50e7bc6fec3f34267ddddadfb292c3f6c Mon Sep 17 00:00:00 2001 From: Jeremy Wu Date: Wed, 23 Oct 2019 16:19:22 +1100 Subject: [PATCH 3/3] Set HelloWorldCSharp plugin as disabled by default --- Plugins/HelloWorldCSharp/plugin.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Plugins/HelloWorldCSharp/plugin.json b/Plugins/HelloWorldCSharp/plugin.json index c50928684e..b7edbd6a9a 100644 --- a/Plugins/HelloWorldCSharp/plugin.json +++ b/Plugins/HelloWorldCSharp/plugin.json @@ -8,5 +8,6 @@ "Language":"csharp", "Website":"https://github.com/Wox-launcher/Wox", "ExecuteFileName":"HelloWorldCSharp.dll", - "IcoPath":"app.png" + "IcoPath":"app.png", + "Disabled": true } \ No newline at end of file