diff --git a/build.properties b/build.properties index 636d45d9..840ff26e 100644 --- a/build.properties +++ b/build.properties @@ -1,10 +1,10 @@ -mod_version=1.7.1 +mod_version=1.7.2 minecraft_version=1.12.2 forge_version=14.23.5.2768 mcp_mappings_version=snapshot_20180814 -cyclopscore_version=1.2.1-946 +cyclopscore_version=1.3.0-949 release_type=release fingerprint=bd0353b3e8a2810d60dd584e256e364bc3bedd44 ironchest_version=7.0.9.796 -commoncapabilities_version=1.12.2-2.3.0-289 +commoncapabilities_version=1.12.2-2.4.0-292 diff --git a/resources/changelog/1.12.2-1.7.2.txt b/resources/changelog/1.12.2-1.7.2.txt new file mode 100644 index 00000000..fd36e3ea --- /dev/null +++ b/resources/changelog/1.12.2-1.7.2.txt @@ -0,0 +1,6 @@ +As always, don't forget to backup your world before updating! +Requires CyclopsCore version 1.3.0 or higher. + +Fixes: +* Fix Integrated Crafting not working with jobs with 64+ items + Closes CyclopsMC/IntegratedCrafting#27 diff --git a/src/main/java/org/cyclops/colossalchests/Reference.java b/src/main/java/org/cyclops/colossalchests/Reference.java index 05243a55..e13d7d2d 100644 --- a/src/main/java/org/cyclops/colossalchests/Reference.java +++ b/src/main/java/org/cyclops/colossalchests/Reference.java @@ -36,11 +36,14 @@ public class Reference { public static final String MOD_FORGE_VERSION_MIN = "14.23.5.2768"; public static final String MOD_CYCLOPSCORE = "cyclopscore"; public static final String MOD_CYCLOPSCORE_VERSION = "@CYCLOPSCORE_VERSION@"; - public static final String MOD_CYCLOPSCORE_VERSION_MIN = "1.1.0"; + public static final String MOD_CYCLOPSCORE_VERSION_MIN = "1.3.0"; + public static final String MOD_COMMONCAPABILITIES = "commoncapabilities"; + public static final String MOD_COMMONCAPABILITIES_VERSION_MIN = "2.4.0"; public static final String MOD_IRONCHEST = "ironchest"; // Dependencies public static final String MOD_DEPENDENCIES = "required-after:" + MOD_FORGE + "@[" + MOD_FORGE_VERSION_MIN + ",);" + - "required-after:" + MOD_CYCLOPSCORE + "@[" + MOD_CYCLOPSCORE_VERSION_MIN + ",);"; + "required-after:" + MOD_CYCLOPSCORE + "@[" + MOD_CYCLOPSCORE_VERSION_MIN + ",);" + + "after:" + MOD_COMMONCAPABILITIES + "@[" + MOD_COMMONCAPABILITIES_VERSION_MIN + ",);"; }