Skip to content

Commit

Permalink
Various build script fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Gaz492 committed Aug 4, 2023
1 parent 073725a commit b797939
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}
Expand Down
8 changes: 4 additions & 4 deletions forge/src/main/resources/META-INF/mods.toml
Original file line number Diff line number Diff line change
@@ -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.
'''
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Project
mod_version=4.0.3
mod_version=4.0.4
group=dev.wuffs.bcc

# Common
Expand Down

0 comments on commit b797939

Please sign in to comment.