]> git.seodisparate.com - TurnBasedMinecraftMod/commitdiff
Updated mod to use forge 1.19.2-43.1.1 1.21.0
authorStephen Seo <seo.disparate@gmail.com>
Tue, 23 Aug 2022 04:55:09 +0000 (13:55 +0900)
committerStephen Seo <seo.disparate@gmail.com>
Tue, 23 Aug 2022 04:55:09 +0000 (13:55 +0900)
Changelog.md
build.gradle
src/main/java/com/burnedkirby/TurnBasedMinecraft/common/TurnBasedMinecraftMod.java
src/main/resources/META-INF/mods.toml
src/main/resources/mcmod.info

index 2dacfa7b3306dfb93248f3c1bcf0f7a106e8df17..eff583de214f9d288fab9fd62468ec6beb0f1b86 100644 (file)
@@ -1,5 +1,9 @@
 # Upcoming changes
 
+# Version 1.21.0
+
+Updated mod to use forge-1.19.2-43.1.1
+
 # Version 1.20
 
 Implemented ignoring specific damage sources while in battle (like lava or
index 47e38ac060b25540eb80211d87ba5f55904441c9..4f3bc817dc010cabf12ede877ccb64ca817e0dff 100644 (file)
@@ -14,7 +14,7 @@ apply plugin: 'net.minecraftforge.gradle'
 //apply plugin: 'eclipse'
 //apply plugin: 'maven-publish'
 
-version = "1.20.0"
+version = "1.21.0"
 group = "com.burnedkirby.TurnBasedMinecraft"
 archivesBaseName = "TurnBasedMinecraft"
 
@@ -27,7 +27,7 @@ minecraft {
     // stable_#            Stables are built at the discretion of the MCP team.
     // 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'
+    mappings channel: 'official', version: '1.19.2'
     // makeObfSourceJar = false // an Srg named sources jar is made by default. uncomment this to disable.
 
     // 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 then 'net.minecraft' it is assumed
     // that the dep is a ForgeGradle 'patcher' dependency. And it's 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-41.1.0'
+    minecraft 'net.minecraftforge:forge:1.19.2-43.1.1'
 
     // Real mod deobf dependency examples - these get remapped to your current mappings
     // compileOnly fg.deobf("mezz.jei:jei-${mc_version}:${jei_version}:api") // Adds JEI API as a compile dependency
index fc70a521fac26089ab1e3bd3c8742da6fb23453f..6df888c24924261a4f67b19fd2ecb9de01a23062 100644 (file)
@@ -39,7 +39,7 @@ import org.apache.logging.log4j.Logger;
 public class TurnBasedMinecraftMod {
     public static final String MODID = "com_burnedkirby_turnbasedminecraft";
     public static final String NAME = "Turn Based Minecraft Mod";
-    public static final String VERSION = "1.20.0";
+    public static final String VERSION = "1.21.0";
     public static final String CONFIG_FILENAME = "TBM_Config.toml";
     public static final String DEFAULT_CONFIG_FILENAME = "TBM_Config_DEFAULT.toml";
     public static final String CONFIG_DIRECTORY = "config/TurnBasedMinecraft/";
index 53b47db9c496b088ee564cc3c69ed73bcbd99935..a6250053d6d80f9f6bd6f63c7ba4a662a82dad2f 100644 (file)
@@ -15,7 +15,7 @@ license="MIT"
 # The modid of the mod
 modId="com_burnedkirby_turnbasedminecraft" #mandatory
 # The version number of the mod - there's a few well known ${} variables useable here or just hardcode it
-version="1.20.0" #mandatory
+version="1.21.0" #mandatory
  # A display name for the mod
 displayName="TurnBasedMinecraftMod" #mandatory
 # A URL to query for updates for this mod. See the JSON update specification <here>
@@ -48,6 +48,6 @@ Implements turn-based-battle in Minecraft.
 [[dependencies.com_burnedkirby_turnbasedminecraft]]
     modId="minecraft"
     mandatory=true
-    versionRange="[1.19,1.20)"
+    versionRange="[1.19.2,1.20)"
     ordering="NONE"
     side="BOTH"
index 7ac331b6c7fc0c0871bb732fdb67ff1124cf62f4..94b3ceda32c0c5f0184a9c867c2a4da10df461c4 100644 (file)
@@ -3,7 +3,7 @@
   "modid": "com_burnedkirby_turnbasedminecraft",
   "name": "Turn Based Minecraft",
   "description": "Changes battles to be turn-based.",
-  "version": "1.20.0",
+  "version": "1.21.0",
   "mcversion": "1.18.2",
   "url": "",
   "updateUrl": "",