Skip to content

Commit

Permalink
Formally move to 1.21.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Adubbz committed Aug 25, 2024
1 parent 6190eb7 commit 3d87bb5
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 11 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,4 @@ build
# other
eclipse
run
runs
3 changes: 1 addition & 2 deletions Fabric/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ curseforge {

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

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

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

releaseType = release_channel
addGameVersion minecraft_version
addGameVersion '1.21.1'

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

if (changelog_file.exists()) {
Expand Down
3 changes: 1 addition & 2 deletions NeoForge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ 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 @@ -88,7 +87,7 @@ modrinth {
versionName = mod_version + " for NeoForge " + minecraft_version
versionType = release_channel // can be release, beta, or alpha
uploadFile = jar
gameVersions = [minecraft_version, '1.21.1']
gameVersions = [minecraft_version]
loaders = ['neoforge']

if (changelog_file.exists()) {
Expand Down
10 changes: 5 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,20 @@ group=com.github.glitchfiend
release_channel=beta

# Common
minecraft_version=1.21
minecraft_version=1.21.1
common_runs_enabled=false
common_client_run_name=Common Client
common_server_run_name=Common Server

# Forge
forge_version=51.0.33
forge_version=52.0.8

# NeoForge
neoforge_version=21.0.167
neoforge_version=21.1.23

# Fabric
fabric_version=0.102.0+1.21
fabric_loader_version=0.15.11
fabric_version=0.102.1+1.21.1
fabric_loader_version=0.16.2

# Mod options
mod_name=TerraBlender
Expand Down

0 comments on commit 3d87bb5

Please sign in to comment.