Skip to content

Commit

Permalink
Update 1.21.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ZsoltMolnarrr committed Sep 7, 2024
1 parent 7667f02 commit 4c9358f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
3 changes: 2 additions & 1 deletion fabric/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ if(project.hasProperty('release_type')) {
changelogType = 'markdown'
releaseType = release_type
addGameVersion "${rootProject.minecraft_version}"
addGameVersion "1.21"
addGameVersion "Fabric"

relations {
Expand All @@ -120,7 +121,7 @@ if(project.hasProperty('release_type')) {
versionNumber = "${version}-fabric" // You don't need to set this manually. Will fail if Modrinth has this version already
versionType = release_type // This is the default -- can also be `beta` or `alpha`
uploadFile = remapJar // With Loom, this MUST be set to `remapJar` instead of `jar`!
gameVersions = ["${rootProject.minecraft_version}"] // Must be an array, even with only one version
gameVersions = ["${rootProject.minecraft_version}", "1.21"] // Must be an array, even with only one version
loaders = ["fabric"] // Must also be an array - no need to specify this if you're using Loom or ForgeGradle
changelog = changelog_last_section()
dependencies { // A special DSL for creating dependencies
Expand Down
12 changes: 6 additions & 6 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ archives_name = combat_roll
enabled_platforms = fabric,neoforge

# Minecraft properties
minecraft_version = 1.21
yarn_mappings = 1.21+build.1
minecraft_version = 1.21.1
yarn_mappings = 1.21.1+build.3

# Dependencies
fabric_loader_version = 0.16.2
fabric_api_version = 0.102.0+1.21
neoforge_version = 21.0.110-beta
fabric_loader_version = 0.16.3
fabric_api_version = 0.103.0+1.21.1
neoforge_version = 21.1.1
yarn_mappings_patch_neoforge_version = 1.21+build.4

cloth_config_version=15.0.130
Expand All @@ -24,4 +24,4 @@ tiny_config_version=2.3.2

# Compatibility
mod_menu_version=11.0.0
better_combat_version=1.8.0+1.20.2
better_combat_version=2.0.0+1.21.1
4 changes: 2 additions & 2 deletions neoforge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ if(project.hasProperty('release_type')) {
changelogType = 'markdown'
releaseType = release_type
addGameVersion "${rootProject.minecraft_version}"
addGameVersion "1.20.4"
addGameVersion "1.21"
addGameVersion "NeoForge"

relations {
Expand All @@ -114,7 +114,7 @@ if(project.hasProperty('release_type')) {
versionNumber = "${version}-neoforge" // You don't need to set this manually. Will fail if Modrinth has this version already
versionType = release_type // This is the default -- can also be `beta` or `alpha`
uploadFile = remapJar // With Loom, this MUST be set to `remapJar` instead of `jar`!
gameVersions = ["${rootProject.minecraft_version}"] // Must be an array, even with only one version
gameVersions = ["${rootProject.minecraft_version}", "1.21"] // Must be an array, even with only one version
loaders = ["neoforge"] // Must also be an array - no need to specify this if you're using Loom or ForgeGradle
changelog = changelog_last_section()
dependencies { // A special DSL for creating dependencies
Expand Down

0 comments on commit 4c9358f

Please sign in to comment.