diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e0494b5..3301e79 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -62,7 +62,7 @@ jobs: appID: ${{ secrets.RELEASE_APP_ID }} appPrivateKey: ${{ secrets.RELEASE_APP_PK }} files: | - rainbow:build/libs/Rainbow.jar + rainbow:client/build/libs/Rainbow.jar releaseEnabled: false saveMetadata: true releaseProject: 'rainbow' diff --git a/datagen/src/main/resources/fabric.mod.json b/datagen/src/main/resources/fabric.mod.json index 95fa4bd..14354a6 100644 --- a/datagen/src/main/resources/fabric.mod.json +++ b/datagen/src/main/resources/fabric.mod.json @@ -3,7 +3,7 @@ "id": "rainbow-datagen", "version": "${version}", "name": "Rainbow", - "description": "Rainbow is a mod to generate Geyser item mappings and bedrock resourcepacks for use with Geyser's custom item API (v2)", + "description": "Rainbow's datagen module", "authors": [ "GeyserMC contributors" ], @@ -22,12 +22,5 @@ "fabricloader": ">=${loader_version}", "fabric-api": "*", "minecraft": "${supported_versions}" - }, - "custom": { - "modmenu": { - "links": { - "modmenu.discord": "https://discord.gg/GeyserMC" - } - } } } diff --git a/rainbow/src/main/resources/fabric.mod.json b/rainbow/src/main/resources/fabric.mod.json index a672300..cc183ed 100644 --- a/rainbow/src/main/resources/fabric.mod.json +++ b/rainbow/src/main/resources/fabric.mod.json @@ -2,8 +2,8 @@ "schemaVersion": 1, "id": "rainbow", "version": "${version}", - "name": "Rainbow", - "description": "Rainbow is a mod to generate Geyser item mappings and bedrock resourcepacks for use with Geyser's custom item API (v2)", + "name": "Rainbow-core", + "description": "The core module of Rainbow", "authors": [ "GeyserMC contributors" ], @@ -24,9 +24,11 @@ }, "custom": { "modmenu": { + "badges": ["library"], "links": { "modmenu.discord": "https://discord.gg/GeyserMC" - } + }, + "parent": "rainbow-client" } } }