From e5ff95aa0d8e9309082ac87b329950211c1a775c Mon Sep 17 00:00:00 2001 From: Ruben Taelman Date: Tue, 23 Aug 2016 18:54:46 +0200 Subject: [PATCH] Bump mod version --- build.properties | 4 +-- resources/changelog/1.10.2-0.10.9.txt | 27 +++++++++++++++++++ .../java/org/cyclops/evilcraft/Reference.java | 2 +- 3 files changed, 30 insertions(+), 3 deletions(-) create mode 100644 resources/changelog/1.10.2-0.10.9.txt diff --git a/build.properties b/build.properties index 41b0afde7e..c4996ee513 100644 --- a/build.properties +++ b/build.properties @@ -1,8 +1,8 @@ -mod_version=0.10.8 +mod_version=0.10.9 minecraft_version=1.10.2 forge_version=12.18.1.2049 mcp_mappings_version=snapshot_20160701 -cyclopscore_version=0.7.5-392 +cyclopscore_version=0.7.6-394 release_type=release waila_version=1.7.0-B3_1.9.4 diff --git a/resources/changelog/1.10.2-0.10.9.txt b/resources/changelog/1.10.2-0.10.9.txt new file mode 100644 index 0000000000..6c898b9a1c --- /dev/null +++ b/resources/changelog/1.10.2-0.10.9.txt @@ -0,0 +1,27 @@ +As always, don't forget to backup your world before updating! +Requires CyclopsCore version 0.7.6 or higher. + +Additions: +* Add werewolf villager localization, Closes #462 +* Add option to change dark temple loot chest spawning, Closes #466 +* Create ja_JP.lang for Minecraft 1.10, thanks to neconeco2! +* Mention in infobook that you can break Hardened Blood and get Blood +* Add Vengeance enchantment to Vengeance Pickaxe, Closes #255 + This performs the spawning of Vengeance Spirits, and it comes by default when crafting the Vengeance Pickaxe. + This is also seen as a bad enchant that can be applied when using the Blood Chest, and removed using the Purifier. +* Add TCon Coagulated Blood compat recipe + +Changes: +* Balance loot chest spawn rates, Closes #460 +* Only allow right click tank draining when shifting. This is simply to ensure consistency and avoid confusion. +* Change Vengeance Pickaxe fortune level to 5 + +Fixes: +* Fix machines not accepting fluid items when inner tank is full, Closes #459 +* Fix bottom fluid rendering for the Dark Tank, Closes #461 +* Fix fluid filling/draining sound not always playing, Closes #463 +* Fix null entity renderer registration, Closes #467 +* Fix broken TCon tools not repairing +* Fix Broom right click interaction with machines +* Fix TCon tool repair cost being too high +* Fix Inventory Tweaks error when sorting Exalted Crafter diff --git a/src/main/java/org/cyclops/evilcraft/Reference.java b/src/main/java/org/cyclops/evilcraft/Reference.java index 920b0ecad7..6c1b59c98e 100644 --- a/src/main/java/org/cyclops/evilcraft/Reference.java +++ b/src/main/java/org/cyclops/evilcraft/Reference.java @@ -76,7 +76,7 @@ public class Reference { public static final String MOD_FORGE_VERSION_MIN = "12.18.1.2046"; public static final String MOD_CYCLOPSCORE = "cyclopscore"; public static final String MOD_CYCLOPSCORE_VERSION = "@CYCLOPSCORE_VERSION@"; - public static final String MOD_CYCLOPSCORE_VERSION_MIN = "0.7.5"; + public static final String MOD_CYCLOPSCORE_VERSION_MIN = "0.7.6"; public static final String MOD_THERMALEXPANSION = "ThermalExpansion"; public static final String MOD_WAILA = "Waila"; public static final String MOD_FMP = "ForgeMultipart";