diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 6939294..0c30497 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -8,8 +8,8 @@ assignees: '' --- **Version** - - Mod Version [e.g. 1.21.1] - - Minecraft Version [e.g. 1.2.3] + - Mod Version [e.g. 1.1.0] + - Minecraft Version [e.g. 1.21.2] **Describe the bug** A clear and concise description of what the bug is. diff --git a/build.gradle b/build.gradle index b6541b1..76acdf8 100644 --- a/build.gradle +++ b/build.gradle @@ -1,17 +1,9 @@ -//plugins { -// id 'net.fabricmc.fabric-loom' version '1.17-SNAPSHOT' -// id 'maven-publish' -//} - plugins { id 'net.fabricmc.fabric-loom' id 'com.replaymod.preprocess' id 'maven-publish' } -//version = project.mod_version -//group = project.maven_group - def isSnapshot = providers.environmentVariable("SNAPSHOT_BUILD").map { it.toBoolean() }.orElse(false).get() def buildNumber = System.getenv('BUILD_NUMBER') ?: 'dev' @@ -33,7 +25,6 @@ loom { } } - repositories { maven { name "Pietr Space Releases" @@ -42,7 +33,6 @@ repositories { } dependencies { - // To change the versions see the gradle.properties file minecraft "com.mojang:minecraft:${project.minecraft_version}" implementation "net.fabricmc:fabric-loader:${project.loader_version}" diff --git a/gradle.properties b/gradle.properties index 9fa5d02..d12076d 100644 --- a/gradle.properties +++ b/gradle.properties @@ -8,4 +8,4 @@ loader_version=0.19.3 # Mod Properties mod_version=2.0.0 maven_group=nl.devpieter -archives_base_name=Utilize \ No newline at end of file +archives_base_name=utilize \ No newline at end of file diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 6734d73..31ff07a 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -27,6 +27,6 @@ "depends": { "fabricloader": ">=${loader_version}", "fabric-api": "*", - "minecraft": "${minecraft_version}" + "minecraft": ">=${minecraft_version} <=${max_minecraft_version}" } }