Skip to content

Commit

Permalink
Merge branch 'master' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
misternebula committed Mar 20, 2024
2 parents 9d34423 + e1de2cf commit 7d9cd55
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/content/pages/guides/patching.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ public class MyPatchClass {
```

!!! alert-info "How can we access that private field?"
OWML Publicizes all base-game assemblies for you, meaning you can get and set private fields and call private methods on base-game classes.
We publicize all base-game assemblies for you, meaning you can get and set private fields and call private methods on base-game classes. This is done in [the Outer Wilds game libs package](https://github.com/ow-mods/OuterWildsGameLibs){class="link-info"}

### Getting The Arguments Passed

Expand Down
15 changes: 14 additions & 1 deletion schemas/manifest_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,19 @@
"description": "Description of the warning to show in the body of the dialog"
}
}
},
"donateLink": {
"type": "string",
"description": "[DEPRECATED] Please use `donateLinks` instead.",
"pattern": "(?:^https://(?:www\\.)?patreon\\.com/\\w+$)|(?:^https://(?:www\\.)?paypal\\.me/\\w+$)"
},
"donateLinks": {
"type": "array",
"description": "Specify links to be displayed in the mod manager for the mod, currently `PayPal`, `Patreon`, `Buymeacoffee`, `CashApp`, and `Kofi` are available",
"items": {
"type": "string",
"pattern": "^https://(www\\.)?(github.com|outerwildsmods.com|paypal.me|patreon.com|buymeacoffee.com|cash.app|ko-fi.com)/"
}
}
}
}
}

0 comments on commit 7d9cd55

Please sign in to comment.