Skip to content

Commit 5d0ee81

Browse files
committed
Update to 1.19.4
- Updated Gradle and dependencies - Updated mod metadata - Added quiltflower decompiler to workspace - Refactored to game changes
1 parent 7fa8f2f commit 5d0ee81

File tree

9 files changed

+294
-272
lines changed

9 files changed

+294
-272
lines changed

build.gradle.kts

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
import java.time.Instant
22

33
plugins {
4-
id(/*net.fabricmc.*/ "fabric-loom") version "1.0.17"
4+
id(/*net.fabricmc.*/ "fabric-loom") version "1.2.5"
5+
id("io.github.juuxel.loom-quiltflower") version "1.8.0"
56
id("net.nemerosa.versioning") version "3.0.0"
67
id("org.gradle.signing")
78
}
89

910
group = "dev.sapphic"
10-
version = "1.7.5+1.19.3"
11+
version = "1.7.6+1.19.4"
1112

1213
if ("CI" in System.getenv()) {
1314
version = "$version-${versioning.info.build}"
@@ -17,6 +18,10 @@ java {
1718
withSourcesJar()
1819
}
1920

21+
quiltflower {
22+
preferences.patternMatching(0)
23+
}
24+
2025
loom {
2126
accessWidenerPath.set(file(".accesswidener"))
2227

@@ -53,29 +58,29 @@ repositories {
5358
}
5459

5560
dependencies {
56-
minecraft("com.mojang:minecraft:1.19.3")
61+
minecraft("com.mojang:minecraft:1.19.4")
5762
mappings(loom.layered {
5863
officialMojangMappings {
5964
nameSyntheticMembers = true
6065
}
6166
})
6267

63-
modImplementation("net.fabricmc:fabric-loader:0.14.12")
68+
modImplementation("net.fabricmc:fabric-loader:0.14.19")
6469

65-
implementation("org.jetbrains:annotations:23.1.0")
66-
implementation("org.checkerframework:checker-qual:3.29.0")
70+
implementation("org.jetbrains:annotations:24.0.1")
71+
implementation("org.checkerframework:checker-qual:3.33.0")
6772

6873
fun fabricApiModule(moduleName: String): Dependency =
69-
fabricApi.module(moduleName, "0.72.0+1.19.3")
74+
fabricApi.module(moduleName, "0.80.0+1.19.4")
7075

7176
modImplementation(include(fabricApiModule("fabric-api-base"))!!)
7277
modImplementation(include(fabricApiModule("fabric-networking-api-v1"))!!)
7378
modImplementation(include(fabricApiModule("fabric-registry-sync-v0"))!!)
7479
modImplementation(include(fabricApiModule("fabric-resource-loader-v0"))!!)
7580

76-
modImplementation(include("com.jamieswhiteshirt:reach-entity-attributes:2.3.1")!!)
81+
modImplementation(include("com.jamieswhiteshirt:reach-entity-attributes:2.3.2")!!)
7782

78-
modRuntimeOnly("com.terraformersmc:modmenu:5.0.2")
83+
modRuntimeOnly("com.terraformersmc:modmenu:6.2.2")
7984
}
8085

8186
tasks {

gradle/wrapper/gradle-wrapper.jar

1.75 KB
Binary file not shown.
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionSha256Sum=db9c8211ed63f61f60292c69e80d89196f9eb36665e369e7f00ac4cc841c2219
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-all.zip
3+
distributionSha256Sum=5625a0ae20fe000d9225d000b36909c7a0e0e8dda61c19b12da769add847c975
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-all.zip
5+
networkTimeout=10000
56
zipStoreBase=GRADLE_USER_HOME
67
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)