Skip to content

Commit

Permalink
Neoforge 21.3.9 (add ANTLR)
Browse files Browse the repository at this point in the history
  • Loading branch information
IMS212 committed Nov 2, 2024
1 parent ec3e738 commit 91e407f
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 8 deletions.
8 changes: 4 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ plugins {
id("fabric-loom") version("1.8.10") apply(false)
}

val MINECRAFT_VERSION by extra { "1.21.2" }
val NEOFORGE_VERSION by extra { "21.2.0-beta" }
val FABRIC_LOADER_VERSION by extra { "0.16.7" }
val FABRIC_API_VERSION by extra { "0.106.0+1.21.2" }
val MINECRAFT_VERSION by extra { "1.21.3" }
val NEOFORGE_VERSION by extra { "21.3.9-beta" }
val FABRIC_LOADER_VERSION by extra { "0.16.9" }
val FABRIC_API_VERSION by extra { "0.107.0+1.21.3" }

// This value can be set to null to disable Parchment.
// TODO: Re-add Parchment
Expand Down
2 changes: 1 addition & 1 deletion common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ dependencies {

modCompileOnly("net.fabricmc.fabric-api:fabric-renderer-api-v1:3.2.9+1172e897d7")

modImplementation("maven.modrinth", "sodium", "mc1.21.2-0.6.0-beta.3-fabric")
modImplementation("maven.modrinth", "sodium", "mc1.21.3-0.6.0-beta.4-fabric")
modCompileOnly("org.antlr:antlr4-runtime:4.13.1")
modCompileOnly("io.github.douira:glsl-transformer:2.0.1")
modCompileOnly("org.anarres:jcpp:1.4.14")
Expand Down
2 changes: 1 addition & 1 deletion fabric/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ dependencies {
addRuntimeFabricModule("fabric-rendering-fluids-v1")
addRuntimeFabricModule("fabric-resource-loader-v0")

modImplementation("maven.modrinth", "sodium", "mc1.21.2-0.6.0-beta.3-fabric")
modImplementation("maven.modrinth", "sodium", "mc1.21.3-0.6.0-beta.4-fabric")
implementAndInclude("org.antlr:antlr4-runtime:4.13.1")
implementAndInclude("io.github.douira:glsl-transformer:2.0.1")
implementAndInclude("org.anarres:jcpp:1.4.14")
Expand Down
3 changes: 2 additions & 1 deletion neoforge/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -126,9 +126,10 @@ dependencies {
runtimeOnly("org.sinytra.forgified-fabric-api:fabric-rendering-data-attachment-v1:0.3.48+73761d2e19")
runtimeOnly("org.sinytra.forgified-fabric-api:fabric-block-view-api-v2:1.0.10+9afaaf8c19")

implementation("maven.modrinth", "sodium", "mc1.21.2-0.6.0-beta.3-neoforge")
implementation("maven.modrinth", "sodium", "mc1.21.3-0.6.0-beta.4-neoforge")
includeAdditional("io.github.douira:glsl-transformer:2.0.1")
includeAdditional("org.anarres:jcpp:1.4.14")
includeAdditional("org.antlr:antlr4-runtime:4.13.1")
}

java.toolchain.languageVersion = JavaLanguageVersion.of(21)
9 changes: 8 additions & 1 deletion neoforge/src/main/resources/META-INF/neoforge.mods.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,14 @@ Iris is a modern shaders mod for Minecraft intended to be compatible with existi
[[dependencies.iris]]
modId = "minecraft"
type = "required"
versionRange = "[1.21.2-rc1,)"
versionRange = "[1.21.3,)"
ordering = "NONE"
side = "CLIENT"

[[dependencies.iris]]
modId = "neoforge"
type = "required"
versionRange = "[21.3.9-beta,)"
ordering = "NONE"
side = "CLIENT"

Expand Down

0 comments on commit 91e407f

Please sign in to comment.