fix manifest JSON schema's update key pattern
This commit is contained in:
parent
3431f486a2
commit
25a9f54ecf
|
@ -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.
|
||||
|
||||
|
|
|
@ -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."
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue