Skip to content

Commit 4ca692d

Browse files
committed
v2.3.0-beta.1: experimental xaero's integration
1 parent 35a9f26 commit 4ca692d

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

build.gradle

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ plugins {
77
}
88

99
String mod_version = new groovy.json.JsonSlurper().parse(file('src/main/resources/fabric.mod.json')).version
10-
String release_title = null
11-
String changeLog = null
10+
String release_title = "Experimental Xaero's integration"
11+
String changeLog = "Tried porting the VoxelMap integrations over to Xaero's. Teleportation can be a bit funky but otherwise it works as intended."
1212

1313
String mc_version = "1.17.1"
1414
String mc_version_major = "1.17"
@@ -73,6 +73,7 @@ task modrinth(type: com.modrinth.minotaur.TaskModrinthUpload) {
7373
token = System.getenv().MODRINTH_TOKEN
7474
projectId = "QYTT62S0"
7575
versionNumber = version
76+
versionType = "beta"
7677
versionName = release_title
7778
changelog = changeLog
7879
uploadFile = file("${project.buildDir}/libs/${archivesBaseName}-${version}.jar")

src/main/resources/fabric.mod.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"schemaVersion": 1,
33
"id": "emcutils",
4-
"version": "2.3.0-XAERO.16",
4+
"version": "2.3.0-beta.1",
55
"name": "Empire Minecraft Utilities",
66
"description": "A collection of various utilities for the Empire Minecraft server.",
77
"authors": [
@@ -38,7 +38,9 @@
3838
"minecraft": "~1.17.1"
3939
},
4040
"suggests": {
41-
"modmenu": "*",
42-
"voxelmap": "*"
41+
"modmenu": ">=2.0.9",
42+
"voxelmap": ">=1.10.15",
43+
"xaeroworldmap": ">=1.17.0",
44+
"xaerominimap": ">=21.16.0"
4345
}
4446
}

0 commit comments

Comments
 (0)