Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.21 #6

Merged
merged 8 commits into from
Jun 14, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ repositories {
maven { url = "https://maven.quiltmc.org/repository/release/" }
maven { url = "https://maven.terraformersmc.com/releases/" }
maven { url = "https://repo.sleeping.town/" }

flatDir { dirs 'lib' }
ix0rai marked this conversation as resolved.
Show resolved Hide resolved
}

configurations {
Expand All @@ -22,11 +24,12 @@ dependencies {
minecraft("com.mojang:minecraft:${project.minecraft_version}")
mappings("org.quiltmc:quilt-mappings:${project.minecraft_version}+build.${project.quilt_mappings}:intermediary-v2")
modImplementation("net.fabricmc:fabric-loader:${project.loader_version}")
modImplementation("net.fabricmc.fabric-api:fabric-api:${project.fabric_version}")
// modImplementation("com.terraformersmc:modmenu:${project.modmenu_version}")
modImplementation("com.terraformersmc:modmenu:${project.modmenu_version}")

implementation("folk.sisby:kaleido-config:0.3.1+1.3.1")
include("folk.sisby:kaleido-config:0.3.1+1.3.1")

modRuntimeOnly("net.fabricmc.fabric-api:fabric-api:${project.fabric_version}")
}

processResources {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ minecraft_version=1.21-pre1
quilt_mappings=1
loader_version=0.15.11
fabric_version=0.99.4+1.21
modmenu_version=10.0.0-beta.1
modmenu_version=unknown

mod_version = 1.0.4+mc1.21
maven_group = io.ix0rai
Expand Down
20 changes: 0 additions & 20 deletions src/main/java/io/ix0rai/ramel/RamelClient.java

This file was deleted.

2 changes: 0 additions & 2 deletions src/main/java/io/ix0rai/ramel/client/RamelModMenu.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/*
package io.ix0rai.ramel.client;

import com.terraformersmc.modmenu.api.ConfigScreenFactory;
Expand All @@ -13,4 +12,3 @@ public ConfigScreenFactory<?> getModConfigScreenFactory() {
return RamelConfigScreen::new;
}
}
*/
4 changes: 0 additions & 4 deletions src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@
"icon": "assets/ramel/icon.png",
"environment": "*",
"entrypoints": {
"client": [
"io.ix0rai.ramel.RamelClient"
],
"modmenu": [
"io.ix0rai.ramel.client.RamelModMenu"
]
Expand All @@ -32,7 +29,6 @@

"depends": {
"fabricloader": ">=0.15.6",
"fabric-api": "*",
"minecraft": ">=1.21-"
},

Expand Down
Loading