update schema for Content Patcher 1.29.0

This commit is contained in:
Jesse Plamondon-Willard 2023-03-30 19:20:46 -04:00
parent c2e9aad698
commit 2e618672aa
No known key found for this signature in database
GPG Key ID: CF8B1456B3E29F49
2 changed files with 5 additions and 2 deletions

View File

@ -21,6 +21,9 @@
* Adjusted `ModContentManager.HandleUnknownFileType` to let mods patch it. * Adjusted `ModContentManager.HandleUnknownFileType` to let mods patch it.
* Fixed `Context.IsWorldReady` being editable by mods. * Fixed `Context.IsWorldReady` being editable by mods.
* For the web UI:
* Updated the JSON validator/schema for Content Patcher 1.29.0.
## 3.18.2 ## 3.18.2
Released 09 January 2023 for Stardew Valley 1.5.6 or later. Released 09 January 2023 for Stardew Valley 1.5.6 or later.

View File

@ -14,9 +14,9 @@
"title": "Format version", "title": "Format version",
"description": "The format version. You should always use the latest version to enable the latest features, avoid obsolete behavior, and reduce load times.", "description": "The format version. You should always use the latest version to enable the latest features, avoid obsolete behavior, and reduce load times.",
"type": "string", "type": "string",
"pattern": "^1\\.28\\.[0-9]+$", "pattern": "^1\\.29\\.[0-9]+$",
"@errorMessages": { "@errorMessages": {
"pattern": "Incorrect value '@value'. You should always use the latest format version (currently 1.28.0) to enable the latest features, avoid obsolete behavior, and reduce load times." "pattern": "Incorrect value '@value'. You should always use the latest format version (currently 1.29.0) to enable the latest features, avoid obsolete behavior, and reduce load times."
} }
}, },
"ConfigSchema": { "ConfigSchema": {