From e406efd5fa5f6d408df87a0bcffdb5697bd272d3 Mon Sep 17 00:00:00 2001 From: Leo Izen Date: Thu, 28 Sep 2017 15:33:31 -0400 Subject: [PATCH] Add Minecraft 1.12.2 support --- build.sh | 14 +++++++------- resources/mcmod.info | 2 +- .../thebombzen/mods/thebombzenapi/Constants.java | 8 ++++---- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/build.sh b/build.sh index e8dd6c8..e36c208 100755 --- a/build.sh +++ b/build.sh @@ -1,13 +1,13 @@ #!/bin/sh set -e -LONGNAME=ThebombzenAPI -LONGNAMELC=thebombzenapi -SHORTNAME=API -VERS=2.9.1 -MC_VERS=1.12.1 -MDK=1.12.1-14.22.1.2478 -ARCHIVE=$LONGNAME-v$VERS-mc$MC_VERS.jar +LONGNAME="ThebombzenAPI" +LONGNAMELC="thebombzenapi" +SHORTNAME="API" +VERS="2.9.2" +MC_VERS="1.12.2" +MDK="1.12.2-14.23.0.2493" +ARCHIVE="${LONGNAME}-v${VERS}-mc${MC_VERS}.jar" CURRDIR="$PWD" diff --git a/resources/mcmod.info b/resources/mcmod.info index b5f8143..4e3ae00 100644 --- a/resources/mcmod.info +++ b/resources/mcmod.info @@ -3,7 +3,7 @@ "modid": "thebombzenapi", "name": "ThebombzenAPI", "description": "ThebombzenAPI provides common code among Thebombzen's mods.", - "version": "2.9.1", + "version": "2.9.2", "credits": "Thebombzen" } ] diff --git a/src/com/thebombzen/mods/thebombzenapi/Constants.java b/src/com/thebombzen/mods/thebombzenapi/Constants.java index 28420b2..9bb4e41 100644 --- a/src/com/thebombzen/mods/thebombzenapi/Constants.java +++ b/src/com/thebombzen/mods/thebombzenapi/Constants.java @@ -10,16 +10,16 @@ public interface Constants { /** * The current version of ThebombzenAPI. */ - public static final String VERSION = "2.9.1"; + public static final String VERSION = "2.9.2"; /** - * The version of Minecraft this was built for. + * The human-readable version of Minecraft this was built for. */ - public static final String SUPPORTED_MC_VERSIONS = "1.9.4 to 1.12.1"; + public static final String SUPPORTED_MC_VERSIONS = "1.9.4 to 1.12.2"; /** * The versions of Minecraft this should be installed in. */ - public static final String[] INSTALL_MC_VERSIONS = {"1.12.1", "1.11.2", "1.10.2", "1.9.4"}; + public static final String[] INSTALL_MC_VERSIONS = {"1.12.2", "1.12.1", "1.11.2", "1.10.2", "1.9.4"}; }