fix: 将支持的manifest版本从3更改为1

This commit is contained in:
墨梓柒
2025-06-19 23:48:17 +08:00
parent 2bc0451f62
commit 250baa0172

View File

@@ -151,7 +151,7 @@ class ManifestValidator:
# 建议填写的字段(会给出警告但不会导致验证失败)
RECOMMENDED_FIELDS = ["license", "keywords", "categories"]
SUPPORTED_MANIFEST_VERSIONS = [3]
SUPPORTED_MANIFEST_VERSIONS = [1]
def __init__(self):
self.validation_errors = []