Merge branch 'update_allow_plugindisabled_default' into dev

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

View file

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

View file

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

View file

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