Skip to content

Commit

Permalink
Port to 1.21.2 final, disable Neo for release
Browse files Browse the repository at this point in the history
  • Loading branch information
IMS212 committed Oct 22, 2024
1 parent 86073a8 commit f909678
Show file tree
Hide file tree
Showing 4 changed files with 10 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,17 +4,17 @@ plugins {
id("fabric-loom") version("1.8.10") apply(false)
}

val MINECRAFT_VERSION by extra { "1.21.2-rc1" }
val MINECRAFT_VERSION by extra { "1.21.2" }
val NEOFORGE_VERSION by extra { "21.2.0-alpha.1.21.2-rc1.20241017.223717" }
val FABRIC_LOADER_VERSION by extra { "0.16.5" }
val FABRIC_API_VERSION by extra { "0.105.3+1.21.2" }
val FABRIC_LOADER_VERSION by extra { "0.16.7" }
val FABRIC_API_VERSION by extra { "0.106.0+1.21.2" }

// This value can be set to null to disable Parchment.
// TODO: Re-add Parchment
val PARCHMENT_VERSION by extra { null }

// https://semver.org/
val MOD_VERSION by extra { "1.8.0-beta.5" }
val MOD_VERSION by extra { "1.8.0-beta.6" }

allprojects {
apply(plugin = "java")
Expand Down
3 changes: 1 addition & 2 deletions common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -110,10 +110,9 @@ sourceSets {
}

loom {
noIntermediateMappings()
mixin {
defaultRefmapName = "iris.refmap.json"
useLegacyMixinAp = true
useLegacyMixinAp = false
}

accessWidenerPath = file("src/main/resources/iris.accesswidener")
Expand Down
5 changes: 4 additions & 1 deletion fabric/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,10 @@ loom {
accessWidenerPath.set(project(":common").file("src/main/resources/iris.accesswidener"))

@Suppress("UnstableApiUsage")
mixin { defaultRefmapName.set("iris-fabric.refmap.json") }
mixin {
defaultRefmapName.set("iris-fabric.refmap.json")
useLegacyMixinAp = false
}

runs {
named("client") {
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ pluginManagement {
}
}

include("common", "fabric", "neoforge")
include("common", "fabric")

0 comments on commit f909678

Please sign in to comment.