From daf96c29e097dc4c9587007a9a0ba1fe80c5688d Mon Sep 17 00:00:00 2001 From: H4ckerxx44 Date: Tue, 26 Dec 2023 21:11:11 +0100 Subject: [PATCH] feat: port to 1.20.1 --- build.gradle | 6 +++--- gradle.properties | 6 +++--- src/main/resources/META-INF/mods.toml | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/build.gradle b/build.gradle index d9bf49e..6e359ea 100644 --- a/build.gradle +++ b/build.gradle @@ -16,7 +16,7 @@ plugins { apply plugin: 'org.spongepowered.mixin' group = 'dev.felnull' -version = '1.1' +version = '1.2' java { archivesBaseName = 'mekanismtweaks' @@ -37,7 +37,7 @@ minecraft { // // Use non-default mappings at your own risk. They may not always work. // Simply re-run your setup task after changing the mappings to update your workspace. - mappings channel: 'official', version: '1.19.2' + mappings channel: 'official', version: '1.20.1' // accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg') @@ -151,7 +151,7 @@ dependencies { // Specify the version of Minecraft to use. If this is any group other than 'net.minecraft' it is assumed // that the dep is a ForgeGradle 'patcher' dependency, and its patches will be applied. // The userdev artifact is a special name and will get all sorts of transformations applied to it. - minecraft 'net.minecraftforge:forge:1.19.2-43.2.6' + minecraft 'net.minecraftforge:forge:1.20.1-47.2.0' implementation fg.deobf("mekanism:Mekanism:${minecraft_version}-${mekanism_version}:all") runtimeOnly(fg.deobf("mezz.jei:jei-${minecraft_version}-forge:${jei_version}")) // Real mod deobf dependency examples - these get remapped to your current mappings diff --git a/gradle.properties b/gradle.properties index 69d4467..0f17118 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ org.gradle.jvmargs=-Xmx3G org.gradle.daemon=false -minecraft_version=1.19.2 -mekanism_version=10.3.8.477 -jei_version=11.3.0.260 \ No newline at end of file +minecraft_version=1.20.1 +mekanism_version=10.4.0.14 +jei_version=15.2.0.27 \ No newline at end of file diff --git a/src/main/resources/META-INF/mods.toml b/src/main/resources/META-INF/mods.toml index a8743a1..3d2092b 100644 --- a/src/main/resources/META-INF/mods.toml +++ b/src/main/resources/META-INF/mods.toml @@ -6,7 +6,7 @@ # The name of the mod loader type to load - for regular FML @Mod mods it should be javafml modLoader = "javafml" #mandatory # A version range to match for said mod loader - for regular FML @Mod it will be the forge version -loaderVersion = "[43,)" #mandatory This is typically bumped every Minecraft version by Forge. See our download page for lists of versions. +loaderVersion = "[47,)" #mandatory This is typically bumped every Minecraft version by Forge. See our download page for lists of versions. # The license for you mod. This is mandatory metadata and allows for easier comprehension of your redistributive properties. # Review your options at https://choosealicense.com/. All rights reserved is the default copyright stance, and is thus the default here. license = "All Rights Reserved" @@ -51,7 +51,7 @@ modId = "forge" #mandatory # Does this dependency have to exist - if not, ordering below must be specified mandatory = true #mandatory # The version range of the dependency -versionRange = "[43,)" #mandatory +versionRange = "[47,)" #mandatory # An ordering relationship for the dependency - BEFORE or AFTER required if the relationship is not mandatory ordering = "NONE" # Side this dependency is applied on - BOTH, CLIENT or SERVER @@ -61,6 +61,6 @@ side = "BOTH" modId = "minecraft" mandatory = true # This version range declares a minimum of the current minecraft version up to but not including the next major version -versionRange = "[1.19.2,1.20)" +versionRange = "[1.20.1,1.21)" ordering = "NONE" side = "BOTH"