Merge branch 'update_allow_plugindisabled_default' into dev

This commit is contained in:
Jeremy Wu
2019-10-25 13:12:34 +11:00
3 changed files with 5 additions and 3 deletions

View File

@@ -8,5 +8,6 @@
"Language":"csharp", "Language":"csharp",
"Website":"https://github.com/Wox-launcher/Wox", "Website":"https://github.com/Wox-launcher/Wox",
"ExecuteFileName":"HelloWorldCSharp.dll", "ExecuteFileName":"HelloWorldCSharp.dll",
"IcoPath":"app.png" "IcoPath":"app.png",
"Disabled": true
} }

View File

@@ -8,5 +8,6 @@
"Language":"csharp", "Language":"csharp",
"Website":"http://www.wox.one", "Website":"http://www.wox.one",
"IcoPath":"Images\\find.png", "IcoPath":"Images\\find.png",
"ExecuteFileName":"Wox.Plugin.Everything.dll" "ExecuteFileName":"Wox.Plugin.Everything.dll",
"Disabled": true
} }

View File

@@ -29,7 +29,7 @@ namespace Wox.Infrastructure.UserSettings
ID = metadata.ID, ID = metadata.ID,
Name = metadata.Name, Name = metadata.Name,
ActionKeywords = metadata.ActionKeywords, ActionKeywords = metadata.ActionKeywords,
Disabled = false Disabled = metadata.Disabled
}; };
} }
} }