Skip to content

Commit

Permalink
feat: 1.19.x support
Browse files Browse the repository at this point in the history
  • Loading branch information
wiidotmom committed Jun 11, 2022
1 parent b379f02 commit c2976ce
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 13 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id "architectury-plugin" version "3.4-SNAPSHOT"
id "dev.architectury.loom" version "0.11.0-SNAPSHOT" apply false
id "dev.architectury.loom" version "0.12.0-SNAPSHOT" apply false
}

architectury {
Expand Down
2 changes: 1 addition & 1 deletion fabric/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ dependencies {
shadowCommon(project(path: ":common", configuration: "transformProductionFabric")) { transitive false }

modImplementation("me.shedaniel.cloth:cloth-config-fabric:${rootProject.cloth_version}") { exclude module: "fabric-api" }
modImplementation("com.terraformersmc:modmenu:3.+")
modImplementation("com.terraformersmc:modmenu:${rootProject.modmenu_version}")
}

processResources {
Expand Down
6 changes: 3 additions & 3 deletions fabric/src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@
"takeitslow-common.mixins.json"
],
"depends": {
"minecraft": ">=1.18",
"minecraft": ">=1.19",
"java": ">=17",
"cloth-config2": ">=6.0.0"
"cloth-config2": ">=7.0.0"
},
"suggests": {
"modmenu": ">=3.0.0"
"modmenu": ">=4.0.0"
}
}
6 changes: 3 additions & 3 deletions 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 = "[39,)"
loaderVersion = "[41,)"
#issueTrackerURL = ""
license = "MIT"

Expand All @@ -16,14 +16,14 @@ Who needs sprinting anyways?
[[dependencies.takeitslow]]
modId = "forge"
mandatory = true
versionRange = "[39,)"
versionRange = "[41,)"
ordering = "NONE"
side = "BOTH"

[[dependencies.takeitslow]]
modId = "minecraft"
mandatory = true
versionRange = "[1.18,)"
versionRange = "[1.19,)"
ordering = "NONE"
side = "BOTH"

Expand Down
11 changes: 6 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
org.gradle.jvmargs=-Xmx2048M

minecraft_version=1.18.2
minecraft_version=1.19
enabled_platforms=fabric,forge

archives_base_name=take-it-slow
mod_version=1.0.1
mod_version=1.0.2
maven_group=dev.igalaxy.takeitslow

architectury_version=4.2.50
architectury_version=5.6.22

fabric_loader_version=0.14.0
fabric_loader_version=0.14.7

forge_version=1.18.2-40.1.0
forge_version=1.19-41.0.17

cloth_version = 6.+
modmenu_version = 4.+



0 comments on commit c2976ce

Please sign in to comment.