Skip to content

Commit

Permalink
Port to Minecraft 1.19.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Darkhax committed Aug 20, 2022
1 parent 16b9b0e commit 38240a0
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 19 deletions.
12 changes: 1 addition & 11 deletions Fabric/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -78,17 +78,7 @@ project.publishing {

artifactId project.archivesBaseName

// Base mod archive.
artifact(remapJar) {

builtBy remapJar
}

// Adds the soruces as an artifact.
artifact(sourcesJar) {

builtBy remapSourcesJar
}
from(components["java"])
}
}

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 @@ -28,7 +28,7 @@
"${mod_id}.mixins.json"
],
"depends": {
"fabricloader": ">=0.14.8",
"fabricloader": ">=0.14.9",
"fabric": "*",
"minecraft": "1.19.x",
"java": ">=17"
Expand Down
2 changes: 1 addition & 1 deletion 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 = "[42,)"
loaderVersion = "[43,)"
license = "${mod_license}"
issueTrackerURL = "${mod_issues}"

Expand Down
10 changes: 5 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
# Project
version=14.0
version=15.0
group=net.darkhax.openloader

# Common
minecraft_version=1.19.1
minecraft_version=1.19.2

# Forge
forge_version=42.0.0
forge_version=43.1.1

# Fabric
fabric_version=0.58.5+1.19.1
fabric_loader_version=0.14.8
fabric_version=0.60.0+1.19.2
fabric_loader_version=0.14.9

# Mod options
mod_name=OpenLoader
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 38240a0

Please sign in to comment.