From 4b0d018cb6f85a95bfbb99d82fbc7f73690fa20f Mon Sep 17 00:00:00 2001 From: Breezebuilder Date: Sat, 15 Mar 2025 05:56:19 +1100 Subject: [PATCH] Mark `requires-talisman` as a required parameter in schema and docs Balatro Mod Manager appears to reject mods without this parameter, so should be required for the sake of compatibility with all versions of BMM --- README.md | 4 ++-- schema/meta.schema.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 50e25599..0d879418 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ This file stores essential metadata in JSON format. **Make sure you adhere to th "categories": ["Content"], "author": "Joe Mama", "repo": "https://github.com/joemama/extended-cards", - "downloadURL": "https://github.com/joemama/extended-cards/releases/latest/extended-cards.tar.gz", + "downloadURL": "https://github.com/joemama/extended-cards/releases/latest/extended-cards.zip", "folderName": "ExtendedCards", "version": "1.0.0", "automatic-version-check": true @@ -44,7 +44,7 @@ This file stores essential metadata in JSON format. **Make sure you adhere to th ``` - **title**: The name of your mod. - **requires-steamodded**: If your mod requires the [Steamodded](https://github.com/Steamodded/smods) mod loader, set this to `true`. -- *requires-talisman*: (*Optional*) If your mod requires the [Talisman](https://github.com/MathIsFun0/Talisman) mod, set this to `true`. +- **requires-talisman**: If your mod requires the [Talisman](https://github.com/MathIsFun0/Talisman) mod, set this to `true`. - **categories**: Must contain at least one of `Content`, `Joker`, `Quality of Life`, `Technical`, `Miscellaneous`, `Resource Packs` or `API`. - **author**: Your chosen username or handle. - **repo**: A link to your mod's repository. diff --git a/schema/meta.schema.json b/schema/meta.schema.json index 0bfdd878..3529a1b6 100644 --- a/schema/meta.schema.json +++ b/schema/meta.schema.json @@ -43,6 +43,6 @@ "type": "boolean" } }, - "required": ["title", "requires-steamodded", "categories", "author", "repo", "downloadURL"] + "required": ["title", "requires-steamodded", "requires-talisman", "categories", "author", "repo", "downloadURL"] }