Skip to content

Commit

Permalink
⬆️ Update mod to Minecraft 1.21.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Autovw committed Aug 9, 2024
1 parent b6093b4 commit 7552b90
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion Fabric/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ dependencies {
modImplementation "net.fabricmc.fabric-api:fabric-api:${fabric_api_version}"
modImplementation "curse.maven:detailab-506898:${detailab_fabric_version}"
//modRuntimeOnly "curse.maven:catalogue-667377:${catalogue_fabric_version}"
modRuntimeOnly "curse.maven:configured-457570:${configured_fabric_version}"
//modRuntimeOnly "curse.maven:configured-457570:${configured_fabric_version}"
modRuntimeOnly "curse.maven:jei-238222:${jei_fabric_version}"
implementation project(":Common")
}
Expand Down
2 changes: 1 addition & 1 deletion Fabric/src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"depends": {
"fabricloader": ">=0.15.11",
"fabric-api": "*",
"minecraft": "1.21",
"minecraft": "1.21.1",
"java": ">=21"
},
"suggests": {
Expand Down
2 changes: 1 addition & 1 deletion Forge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ dependencies {
compileOnly project(path: ':Common')

//runtimeOnly fg.deobf("curse.maven:catalogue-459701:${catalogue_forge_version}")
runtimeOnly "curse.maven:configured-457570:${configured_forge_version}"
//runtimeOnly "curse.maven:configured-457570:${configured_forge_version}"
runtimeOnly "curse.maven:jei-238222:${jei_forge_version}"
//implementation fg.deobf("curse.maven:detailarmorbar-520755:${detailab_forge_version}")

Expand Down
6 changes: 3 additions & 3 deletions Forge/src/main/resources/META-INF/mods.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
modLoader="javafml"
loaderVersion="[51,)"
loaderVersion="[52,)"
license="GNU General Public License v3.0"
issueTrackerURL="https://github.com/Autovw/AdvancedNetherite/issues"

Expand All @@ -20,13 +20,13 @@ Visit the GitHub Wiki for more information on everything this mod adds.
[[dependencies.advancednetherite]]
modId="forge"
mandatory=true
versionRange="[51.0.5,)"
versionRange="[52.0.1,)"
ordering="NONE"
side="BOTH"
[[dependencies.advancednetherite]]
modId="minecraft"
mandatory=true
versionRange="[1.21]"
versionRange="[1.21.1]"
ordering="NONE"
side="BOTH"
[[dependencies.advancednetherite]]
Expand Down
4 changes: 2 additions & 2 deletions NeoForge/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id 'idea'
id 'java-library'
id 'net.neoforged.gradle.userdev' version '7.0.142'
id 'net.neoforged.gradle.userdev' version '7.0.157'
}

group = 'com.autovw.advancednetherite'
Expand Down Expand Up @@ -69,7 +69,7 @@ dependencies {
compileOnly project(path: ':Common')

//runtimeOnly "curse.maven:catalogue-459701:${catalogue_neoforge_version}"
runtimeOnly "curse.maven:configured-457570:${configured_neoforge_version}"
//runtimeOnly "curse.maven:configured-457570:${configured_neoforge_version}"
runtimeOnly "curse.maven:jei-238222:${jei_neoforge_version}"
}

Expand Down
4 changes: 2 additions & 2 deletions NeoForge/src/main/resources/META-INF/neoforge.mods.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ Visit the GitHub Wiki for more information on everything this mod adds.
# 'required' requires the mod to exist, 'optional' does not
# 'incompatible' will prevent the game from loading when the mod exists, and 'discouraged' will show a warning
type="required"
versionRange="[21.0.74,)"
versionRange="[21.1.1,)"
ordering="NONE"
side="BOTH"
[[dependencies.advancednetherite]]
modId="minecraft"
type="required"
versionRange="[1.21]"
versionRange="[1.21.1]"
ordering="NONE"
side="BOTH"

Expand Down
12 changes: 6 additions & 6 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Sets default memory used for gradle commands. Can be overridden by user or command line properties.
# This is required to provide enough memory for the Minecraft decompilation process.
org.gradle.jvmargs=-Xmx8G
org.gradle.jvmargs=-Xmx6G
org.gradle.daemon=false

# Mod
Expand All @@ -10,17 +10,17 @@ mod_name=Advanced Netherite
mod_author=Autovw

# Minecraft
minecraft_version=1.21
minecraft_version=1.21.1

# Forge
forge_version=51.0.22
forge_version=52.0.1

# NeoForge
neoforge_version=21.0.76-beta
neoforge_version=21.1.2

# Fabric
fabric_loader_version=0.15.11
fabric_api_version=0.100.6+1.21
fabric_api_version=0.102.0+1.21.1

# Forge mod dependencies
detailab_forge_version=3920487
Expand All @@ -34,7 +34,7 @@ configured_neoforge_version=5441232
jei_neoforge_version=5466551

# Fabric mod dependencies
detailab_fabric_version=5424464
detailab_fabric_version=5608108
catalogue_fabric_version=5303331
configured_fabric_version=5441234
jei_fabric_version=5466549
Expand Down

0 comments on commit 7552b90

Please sign in to comment.