diff --git a/CHANGELOG.md b/CHANGELOG.md index 48fa284..20ae740 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to this project will be documented in this file. +## [4.0.4] + +- Fixed version data not being replaced in mods.toml + +## [4.0.3] + +- Fixed various build script issues + ## [4.0.2] - Fixed CI not adding loader name to the display name on curseforge diff --git a/build.gradle b/build.gradle index b45b870..8f26afa 100644 --- a/build.gradle +++ b/build.gradle @@ -59,7 +59,7 @@ subprojects { } processResources { - filesMatching(['pack.mcmeta', 'fabric.mod.json', 'mods.toml', '*.mixins.json']) { + filesMatching(['pack.mcmeta', 'fabric.mod.json','META-INF/mods.toml', 'mods.toml', '*.mixins.json']) { expand project.properties } } diff --git a/forge/src/main/resources/META-INF/mods.toml b/forge/src/main/resources/META-INF/mods.toml index 79b12ea..fb46da2 100644 --- a/forge/src/main/resources/META-INF/mods.toml +++ b/forge/src/main/resources/META-INF/mods.toml @@ -1,11 +1,11 @@ modLoader="javafml" #mandatory -loaderVersion="[46,)" #mandatory This is typically bumped every Minecraft version by Forge. See our download page for lists of versions. +loaderVersion="[47,)" #mandatory This is typically bumped every Minecraft version by Forge. See our download page for lists of versions. license="All rights reserved" [[mods]] #mandatory -modId="bcc" #mandatory -version="${file.jarVersion}" #mandatory +modId="${mod_id}" #mandatory +version="${mod_version}" #mandatory displayName="Better Compatibility Checker" #mandatory -authors="Gaz" #optional +authors="${mod_author}" #optional description=''' A better compatibility checker for Minecraft. ''' \ No newline at end of file diff --git a/gradle.properties b/gradle.properties index 484b1c9..74b38b0 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ # Project -mod_version=4.0.3 +mod_version=4.0.4 group=dev.wuffs.bcc # Common