Skip to content

Commit 38240a0

Browse files
committed
Port to Minecraft 1.19.2
1 parent 16b9b0e commit 38240a0

File tree

5 files changed

+9
-19
lines changed

5 files changed

+9
-19
lines changed

Fabric/build.gradle

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -78,17 +78,7 @@ project.publishing {
7878

7979
artifactId project.archivesBaseName
8080

81-
// Base mod archive.
82-
artifact(remapJar) {
83-
84-
builtBy remapJar
85-
}
86-
87-
// Adds the soruces as an artifact.
88-
artifact(sourcesJar) {
89-
90-
builtBy remapSourcesJar
91-
}
81+
from(components["java"])
9282
}
9383
}
9484

Fabric/src/main/resources/fabric.mod.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"${mod_id}.mixins.json"
2929
],
3030
"depends": {
31-
"fabricloader": ">=0.14.8",
31+
"fabricloader": ">=0.14.9",
3232
"fabric": "*",
3333
"minecraft": "1.19.x",
3434
"java": ">=17"

Forge/src/main/resources/META-INF/mods.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
modLoader = "javafml"
2-
loaderVersion = "[42,)"
2+
loaderVersion = "[43,)"
33
license = "${mod_license}"
44
issueTrackerURL = "${mod_issues}"
55

gradle.properties

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
# Project
2-
version=14.0
2+
version=15.0
33
group=net.darkhax.openloader
44

55
# Common
6-
minecraft_version=1.19.1
6+
minecraft_version=1.19.2
77

88
# Forge
9-
forge_version=42.0.0
9+
forge_version=43.1.1
1010

1111
# Fabric
12-
fabric_version=0.58.5+1.19.1
13-
fabric_loader_version=0.14.8
12+
fabric_version=0.60.0+1.19.2
13+
fabric_loader_version=0.14.9
1414

1515
# Mod options
1616
mod_name=OpenLoader
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)