Skip to content

Commit

Permalink
Version bumps and marked as supporting 1.21.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Adubbz committed Aug 24, 2024
1 parent c9446b7 commit 6190eb7
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
3 changes: 2 additions & 1 deletion Fabric/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ curseforge {

releaseType = release_channel
addGameVersion minecraft_version
addGameVersion '1.21.1'
addGameVersion 'Fabric'

mainArtifact(remapJar) {
Expand All @@ -91,7 +92,7 @@ modrinth {
versionName = mod_version + " for Fabric " + minecraft_version
versionType = release_channel // can be release, beta, or alpha
uploadFile = remapJar
gameVersions = [minecraft_version]
gameVersions = [minecraft_version, '1.21.1']
loaders = ['fabric']

if (changelog_file.exists()) {
Expand Down
3 changes: 2 additions & 1 deletion Forge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ curseforge {

releaseType = release_channel
addGameVersion minecraft_version
addGameVersion '1.21.1'

mainArtifact(jar) {
displayName = "TerraBlender Forge ${version}"
Expand All @@ -109,7 +110,7 @@ modrinth {
versionName = mod_version + " for Forge " + minecraft_version
versionType = release_channel // can be release, beta, or alpha
uploadFile = jar
gameVersions = [minecraft_version]
gameVersions = [minecraft_version, '1.21.1']
loaders = ['forge']

if (changelog_file.exists()) {
Expand Down
3 changes: 2 additions & 1 deletion NeoForge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ curseforge {

releaseType = release_channel
addGameVersion minecraft_version
addGameVersion '1.21.1'
addGameVersion 'NeoForge' // NeoForge isn't auto-detected and must be manually specified

mainArtifact(jar) {
Expand All @@ -87,7 +88,7 @@ modrinth {
versionName = mod_version + " for NeoForge " + minecraft_version
versionType = release_channel // can be release, beta, or alpha
uploadFile = jar
gameVersions = [minecraft_version]
gameVersions = [minecraft_version, '1.21.1']
loaders = ['neoforge']

if (changelog_file.exists()) {
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ common_client_run_name=Common Client
common_server_run_name=Common Server

# Forge
forge_version=51.0.4
forge_version=51.0.33

# NeoForge
neoforge_version=21.0.0-beta
neoforge_version=21.0.167

# Fabric
fabric_version=0.100.1+1.21
fabric_version=0.102.0+1.21
fabric_loader_version=0.15.11

# Mod options
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down

0 comments on commit 6190eb7

Please sign in to comment.