Update Minecraft version compatibility and add Quilt mod configuration
This commit is contained in:
parent
f88227e8a8
commit
523a69c325
4 changed files with 43 additions and 17 deletions
gradle.properties
src/main
|
@ -3,8 +3,8 @@ org.gradle.jvmargs=-Xmx1G
|
||||||
org.gradle.parallel=true
|
org.gradle.parallel=true
|
||||||
# Fabric Properties
|
# Fabric Properties
|
||||||
# check these on https://fabricmc.net/develop
|
# check these on https://fabricmc.net/develop
|
||||||
minecraft_version=1.21.4
|
minecraft_version=1.20
|
||||||
yarn_mappings=1.21.4+build.8
|
yarn_mappings=1.20+build.1
|
||||||
loader_version=0.16.10
|
loader_version=0.16.10
|
||||||
# Mod Properties
|
# Mod Properties
|
||||||
mod_version=2.0.0
|
mod_version=2.0.0
|
||||||
|
|
|
@ -1,9 +0,0 @@
|
||||||
package arzumify.polyenergy;
|
|
||||||
|
|
||||||
import net.fabricmc.api.ModInitializer;
|
|
||||||
|
|
||||||
public class Polyenergy implements ModInitializer {
|
|
||||||
@Override
|
|
||||||
public void onInitialize() {
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -14,14 +14,9 @@
|
||||||
"license": "GPL-3.0",
|
"license": "GPL-3.0",
|
||||||
"icon": "assets/polyenergy/icon-scaled.png",
|
"icon": "assets/polyenergy/icon-scaled.png",
|
||||||
"environment": "*",
|
"environment": "*",
|
||||||
"entrypoints": {
|
|
||||||
"main": [
|
|
||||||
"arzumify.polyenergy.Polyenergy"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"depends": {
|
"depends": {
|
||||||
"fabricloader": ">=0.16.10",
|
"fabricloader": ">=0.16.10",
|
||||||
"minecraft": "~1.21.4",
|
"minecraft": ">1.20",
|
||||||
"java": ">=21",
|
"java": ">=21",
|
||||||
"fabric-api": "*"
|
"fabric-api": "*"
|
||||||
}
|
}
|
||||||
|
|
40
src/main/resources/quilt.mod.json
Normal file
40
src/main/resources/quilt.mod.json
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
{
|
||||||
|
"schema_version": 1,
|
||||||
|
"quilt_loader": {
|
||||||
|
"group": "${group}",
|
||||||
|
"id": "polyenergy",
|
||||||
|
"version": "${version}",
|
||||||
|
"metadata": {
|
||||||
|
"name": "Polyenergy",
|
||||||
|
"description": "A dead-simple serverside energy api",
|
||||||
|
"contributors": {
|
||||||
|
"Arzumify": "Owner"
|
||||||
|
},
|
||||||
|
"contact": {
|
||||||
|
"homepage": "https://git.ailur.dev/arzumify/polyenergy/",
|
||||||
|
"sources": "https://git.ailur.dev/arzumify/polyenergy",
|
||||||
|
"issues": "https://git.ailur.dev/arzumify/polyenergy/issues"
|
||||||
|
},
|
||||||
|
"icon": "assets/polyenergy/icon-scaled.png",
|
||||||
|
"license": "GPL-3.0"
|
||||||
|
},
|
||||||
|
"intermediate_mappings": "net.fabricmc:intermediary",
|
||||||
|
"repositories": [
|
||||||
|
"https://maven.ailur.dev/"
|
||||||
|
],
|
||||||
|
"depends": [
|
||||||
|
{
|
||||||
|
"id": "quilt_loader",
|
||||||
|
"versions": ">=0.19.1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "quilted_fabric_api",
|
||||||
|
"versions": ">=7.0.2"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "minecraft",
|
||||||
|
"versions": ">=1.20"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue