Skip to content

Commit

Permalink
v2.3.0-beta.1: experimental xaero's integration
Browse files Browse the repository at this point in the history
  • Loading branch information
triphora committed Sep 4, 2021
1 parent 35a9f26 commit 4ca692d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
5 changes: 3 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ plugins {
}

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

String mc_version = "1.17.1"
String mc_version_major = "1.17"
Expand Down Expand Up @@ -73,6 +73,7 @@ task modrinth(type: com.modrinth.minotaur.TaskModrinthUpload) {
token = System.getenv().MODRINTH_TOKEN
projectId = "QYTT62S0"
versionNumber = version
versionType = "beta"
versionName = release_title
changelog = changeLog
uploadFile = file("${project.buildDir}/libs/${archivesBaseName}-${version}.jar")
Expand Down
8 changes: 5 additions & 3 deletions src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"schemaVersion": 1,
"id": "emcutils",
"version": "2.3.0-XAERO.16",
"version": "2.3.0-beta.1",
"name": "Empire Minecraft Utilities",
"description": "A collection of various utilities for the Empire Minecraft server.",
"authors": [
Expand Down Expand Up @@ -38,7 +38,9 @@
"minecraft": "~1.17.1"
},
"suggests": {
"modmenu": "*",
"voxelmap": "*"
"modmenu": ">=2.0.9",
"voxelmap": ">=1.10.15",
"xaeroworldmap": ">=1.17.0",
"xaerominimap": ">=21.16.0"
}
}

0 comments on commit 4ca692d

Please sign in to comment.