fix manifest JSON schema's update key pattern

This commit is contained in:
Jesse Plamondon-Willard 2022-01-29 20:43:45 -05:00
parent 3431f486a2
commit 25a9f54ecf
No known key found for this signature in database
GPG Key ID: CF8B1456B3E29F49
2 changed files with 4 additions and 1 deletions

View File

@ -11,6 +11,9 @@
* For console commands:
* Fixed `player_add` with Journal Scraps and Secret Notes.
* For the web UI:
* Fixed JSON validator warning for update keys without a subkey.
## 3.13.4
Released 16 January 2022 for Stardew Valley 1.5.6 or later.

View File

@ -103,7 +103,7 @@
"type": "array",
"items": {
"type": "string",
"pattern": "^(?i)(Chucklefish:\\d+|Nexus:\\d+|GitHub:[A-Za-z0-9_\\-]+/[A-Za-z0-9_\\-]+|ModDrop:\\d+)(?: *@ *[a-zA-Z0-9_]+ *)$",
"pattern": "^(?i)(Chucklefish:\\d+|Nexus:\\d+|GitHub:[A-Za-z0-9_\\-]+/[A-Za-z0-9_\\-]+|ModDrop:\\d+)(?: *@ *[a-zA-Z0-9_]+ *)?$",
"@errorMessages": {
"pattern": "Invalid update key; see https://stardewvalleywiki.com/Modding:Modder_Guide/APIs/Manifest#Update_checks for more info."
}