From 54e519f9b85595499033bc976cd22d19a4a43942 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=96=2E=20Efe=20D=2E?= <67526259+skyline69@users.noreply.github.com> Date: Wed, 1 Jan 2025 20:12:05 +0100 Subject: [PATCH] changed categories --- README.md | 6 +++--- mods/InertSteak@Pokermon/meta.json | 4 ++-- schema/meta.schema.json | 7 +++---- 3 files changed, 8 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 6219094b..287096b2 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ This file stores essential metadata in JSON format. **Make sure you adhere to th ```json { "title": "Extended Cards", - "mod-loader": "steamodded", + "requires-steamodded": true, "category": "Gameplay", "author": "Joe Mama", "repo": "https://github.com/joemama/extended-cards", @@ -39,8 +39,8 @@ This file stores essential metadata in JSON format. **Make sure you adhere to th ``` - **title**: The name of your mod. -- **mod-loader**: Must be either `steamodded` or `lovely-only`. -- **category**: Must be one of `Gameplay`, `UI`, or `Card Mods`. +- **requires-steamodded**: If your mod requires the Steamodded mod loader, set this to `true`. +- **category**: Must be 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. - **downloadURL**: A direct link to the latest version of your released mod. (Can be same as `repo` if no separate download link exists.) diff --git a/mods/InertSteak@Pokermon/meta.json b/mods/InertSteak@Pokermon/meta.json index c0604b1b..23ed4c45 100644 --- a/mods/InertSteak@Pokermon/meta.json +++ b/mods/InertSteak@Pokermon/meta.json @@ -1,7 +1,7 @@ { "title": "Pokermon", - "mod-loader": "steamodded", - "category": "Gameplay", + "requires-steamodded": true, + "category": "Content", "author": "InertSteak", "repo":"https://github.com/InertSteak/Pokermon", "downloadURL": "https://github.com/InertSteak/Pokermon/archive/refs/tags/2.1.0b.tar.gz" diff --git a/schema/meta.schema.json b/schema/meta.schema.json index 70990589..c43f5b6f 100644 --- a/schema/meta.schema.json +++ b/schema/meta.schema.json @@ -6,13 +6,12 @@ "title": { "type": "string" }, - "mod-loader": { - "type": "string", - "enum": ["steamodded", "lovely-only"] + "requires-steamodded": { + "type": "boolean", }, "category": { "type": "string", - "enum": ["Gameplay", "UI", "Card Mods"] + "enum": ["Content", "Joker", "Quality of Life", "Technical", "Miscellaneous", "Resource Packs", "API"] }, "author": { "type": "string"