From 4402741a97d7d3717f8331f84c671d7748d8dc17 Mon Sep 17 00:00:00 2001 From: Ben C Date: Tue, 5 Dec 2023 10:53:19 -0500 Subject: [PATCH] Add Donate Link Option To Manifest --- schemas/manifest_schema.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/schemas/manifest_schema.json b/schemas/manifest_schema.json index ca5f86130..696bbcc07 100644 --- a/schemas/manifest_schema.json +++ b/schemas/manifest_schema.json @@ -166,6 +166,11 @@ "description": "Description of the warning to show in the body of the dialog" } } + }, + "donateLink": { + "type": "string", + "description": "Provide a link for donations. This will appear as a button in the mod manager", + "pattern": "(?:^https://(?:www\\.)?patreon\\.com/\\w+$)|(?:^https://(?:www\\.)?paypal\\.me/\\w+$)" } } -} \ No newline at end of file +}