WUPS 0.7.0 support

This commit is contained in:
Maschell
2022-01-23 21:16:38 +01:00
parent 79eb5758b7
commit b49f561430
4 changed files with 11 additions and 8 deletions

View File

@@ -110,7 +110,7 @@ std::optional<std::shared_ptr<PluginMetaInformation>> PluginMetaInformationFacto
} else if (key == "storage_id") {
pluginInfo->setStorageId(value);
} else if (key == "wups") {
if (value != "0.6.1") {
if (value != "0.7.0") {
DEBUG_FUNCTION_LINE("Warning: Ignoring plugin - Unsupported WUPS version: %s.", value.c_str());
return std::nullopt;
}