From c0702f24528f3296ac66b299b89544765afbf9ff 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 18:06:59 +0100 Subject: [PATCH 1/8] add pokermon --- mods/InertSteak@Pokermon/description.md | 2 ++ mods/InertSteak@Pokermon/meta.json | 8 ++++++++ 2 files changed, 10 insertions(+) create mode 100644 mods/InertSteak@Pokermon/description.md create mode 100644 mods/InertSteak@Pokermon/meta.json diff --git a/mods/InertSteak@Pokermon/description.md b/mods/InertSteak@Pokermon/description.md new file mode 100644 index 00000000..a0f38446 --- /dev/null +++ b/mods/InertSteak@Pokermon/description.md @@ -0,0 +1,2 @@ +# What is Pokermon? +Pokermon is a full content mod for Balatro, adding content based on Pokemon. There are now 200(!!) Jokers that have been added alongside many other custom additions. There is also an option to only play with Pokemon Jokers if you want to focus on the new content. (Option defaults to off) diff --git a/mods/InertSteak@Pokermon/meta.json b/mods/InertSteak@Pokermon/meta.json new file mode 100644 index 00000000..e44e66fa --- /dev/null +++ b/mods/InertSteak@Pokermon/meta.json @@ -0,0 +1,8 @@ +{ + "title": "Pokermon", + "mod-loader": "steamodded", + "category": "Gameplay", + "author": "InertSteak", + "repo":"https://github.com/InertSteak/Pokermon", + "downloadURL": "https://github.com/InertSteak/Pokermon/archive/refs/tags/2.1.0b.tar.gz", +} From f6374b5c9ee94bb54735cd269116e7bdbdd03899 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 18:16:56 +0100 Subject: [PATCH 2/8] fix --- .github/workflows/check-mod.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/check-mod.yml b/.github/workflows/check-mod.yml index 8d9114a8..5ed5e359 100644 --- a/.github/workflows/check-mod.yml +++ b/.github/workflows/check-mod.yml @@ -49,9 +49,9 @@ jobs: WIDTH=$(echo "$DIMENSIONS" | cut -dx -f1) HEIGHT=$(echo "$DIMENSIONS" | cut -dx -f2) - # If thumbnail exceeds 1920x500, exit with error + # Check if dimensions exceed 1920x500 if [ "$WIDTH" -gt 1920 ] || [ "$HEIGHT" -gt 500 ]; then - echo "Error: Thumbnail in $MOD_DIR exceeds the 1920×500 recommended size." + echo "Error: Thumbnail in $MOD_DIR exceeds the recommended size of 1920×500." exit 1 fi fi @@ -64,9 +64,9 @@ jobs: VALIDATE_JSON: true GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - name: Validate Meta.json Against Schema - uses: ajv-validator/ajv-cli-action@v1 + - name: Validate meta.json Against Schema + uses: dsanders11/json-schema-validate-action@v1 with: schema: "./schema/meta.schema.json" - files: "mods/*/meta.json" + file: "mods/*/meta.json" From 9ba8715e822dd8d8536aad3aee2ffc286c15909a 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 18:19:14 +0100 Subject: [PATCH 3/8] fix (again) --- .github/workflows/check-mod.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check-mod.yml b/.github/workflows/check-mod.yml index 5ed5e359..2edbc5f6 100644 --- a/.github/workflows/check-mod.yml +++ b/.github/workflows/check-mod.yml @@ -65,7 +65,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Validate meta.json Against Schema - uses: dsanders11/json-schema-validate-action@v1 + uses: dsanders11/json-schema-validate-action@v1.2.0 with: schema: "./schema/meta.schema.json" file: "mods/*/meta.json" From d5aecb42a863b7e6f2b2e7a06065aeb894822930 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 18:22:27 +0100 Subject: [PATCH 4/8] try --- mods/InertSteak@Pokermon/description.md | 1 + 1 file changed, 1 insertion(+) diff --git a/mods/InertSteak@Pokermon/description.md b/mods/InertSteak@Pokermon/description.md index a0f38446..b8aca2fd 100644 --- a/mods/InertSteak@Pokermon/description.md +++ b/mods/InertSteak@Pokermon/description.md @@ -1,2 +1,3 @@ # What is Pokermon? Pokermon is a full content mod for Balatro, adding content based on Pokemon. There are now 200(!!) Jokers that have been added alongside many other custom additions. There is also an option to only play with Pokemon Jokers if you want to focus on the new content. (Option defaults to off) +> by InertSteak From 280f0c4e5739373a23852c6d88245f03da95d38c 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 18:25:03 +0100 Subject: [PATCH 5/8] fix (again) but again --- mods/InertSteak@Pokermon/meta.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/InertSteak@Pokermon/meta.json b/mods/InertSteak@Pokermon/meta.json index e44e66fa..c0604b1b 100644 --- a/mods/InertSteak@Pokermon/meta.json +++ b/mods/InertSteak@Pokermon/meta.json @@ -4,5 +4,5 @@ "category": "Gameplay", "author": "InertSteak", "repo":"https://github.com/InertSteak/Pokermon", - "downloadURL": "https://github.com/InertSteak/Pokermon/archive/refs/tags/2.1.0b.tar.gz", + "downloadURL": "https://github.com/InertSteak/Pokermon/archive/refs/tags/2.1.0b.tar.gz" } From 69df51013ea133d1b8acfe8f789f4fae2049964c 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 18:31:03 +0100 Subject: [PATCH 6/8] again but again --- .github/workflows/check-mod.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/check-mod.yml b/.github/workflows/check-mod.yml index 2edbc5f6..eeb96207 100644 --- a/.github/workflows/check-mod.yml +++ b/.github/workflows/check-mod.yml @@ -68,5 +68,5 @@ jobs: uses: dsanders11/json-schema-validate-action@v1.2.0 with: schema: "./schema/meta.schema.json" - file: "mods/*/meta.json" - + files: | + mods/*/meta.json From 0cb012a72b226d3a74eb5492f7a2b0d0e48bf8d9 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 18:31:56 +0100 Subject: [PATCH 7/8] happy? --- .github/workflows/check-mod.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/check-mod.yml b/.github/workflows/check-mod.yml index eeb96207..ddcf523a 100644 --- a/.github/workflows/check-mod.yml +++ b/.github/workflows/check-mod.yml @@ -70,3 +70,4 @@ jobs: schema: "./schema/meta.schema.json" files: | mods/*/meta.json + From 817cfa60cba27aa60d0bd5c3fc9a6bf33c251f45 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 18:39:22 +0100 Subject: [PATCH 8/8] try again --- {.github/workflows/schema => schema}/meta.schema.json | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {.github/workflows/schema => schema}/meta.schema.json (100%) diff --git a/.github/workflows/schema/meta.schema.json b/schema/meta.schema.json similarity index 100% rename from .github/workflows/schema/meta.schema.json rename to schema/meta.schema.json