Skip to content

Commit

Permalink
Merge pull request #575 from ow-mods/fix-manifest-schema
Browse files Browse the repository at this point in the history
Fix typos
  • Loading branch information
xen-42 authored Apr 17, 2024
2 parents 1945a68 + f62e8fb commit 362b7e6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,8 @@
"everytime",
"overridable",
"Untarget"
],
"githubPullRequests.ignoredPullRequestBranches": [
"master"
]
}
6 changes: 3 additions & 3 deletions schemas/manifest_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
"minGameVersion": {
"type": "string",
"description": "The minimum version of the game that this mod is compatible with",
"default": ""
"default": "",
"pattern": "^\\d+\\.\\d+\\.\\d+\\.\\d+$",
"examples": [
"1.0.0",
Expand All @@ -103,7 +103,7 @@
"maxGameVersion": {
"type": "string",
"description": "The maximum version of the game that this mod is compatible with",
"default": ""
"default": "",
"pattern": "^\\d+\\.\\d+\\.\\d+\\.\\d+$",
"examples": [
"1.0.0",
Expand All @@ -119,7 +119,7 @@
"incompatibleVendors": {
"type": "array",
"description": "The vendors this mod does not work on",
"default": []
"default": [],
"items": {
"type": "string",
"enum": [
Expand Down

0 comments on commit 362b7e6

Please sign in to comment.