From 208fc0611edcd857568bc5a775a6f696426b8820 Mon Sep 17 00:00:00 2001 From: malte0811 Date: Sun, 18 Nov 2018 18:05:38 +0100 Subject: [PATCH] Build 1.7-32 --- build.gradle | 2 +- changelog.json | 11 ++++++----- changelog.md | 5 +++++ .../malte0811/industrialwires/IndustrialWires.java | 2 +- 4 files changed, 13 insertions(+), 7 deletions(-) diff --git a/build.gradle b/build.gradle index 8a1844e..20e0ba4 100644 --- a/build.gradle +++ b/build.gradle @@ -1,7 +1,7 @@ import groovy.json.JsonOutput def mainVersion = "1.7" -def buildNumber = "31" +def buildNumber = "32" // For those who want the bleeding edge buildscript { diff --git a/changelog.json b/changelog.json index 28e37ee..89e1e92 100644 --- a/changelog.json +++ b/changelog.json @@ -5,8 +5,8 @@ "1.10.2-recommended": "1.4-18", "1.11.2-latest": "1.5-19", "1.11.2-recommended": "1.5-19", - "1.12.2-latest": "1.7-31", - "1.12.2-recommended": "1.7-31" + "1.12.2-latest": "1.7-32", + "1.12.2-recommended": "1.7-32" }, "1.10.2": { "1.1-3": " - fixed incompatibility with IE build 48\n - reduced the amount of calls to core IE classes to make such incompatibilities less likely\n - fixed localization of the creative tab", @@ -39,8 +39,9 @@ "1.7-26": " - Added Mechanical Multiblocks (energy storage and EU<->FE conversion)\n - There will be an explanation video for these once I have time to make one\n - Fixed the small mechanical converter blowing up tin wires\n - Fixed wires not joining their outputs correctly\n - Fixed wire connectors not breaking when the block they're on is broken", "1.7-27": " - Fixed panel components causing issues on dedicated servers\n - Added an automatic update checker (Using the Forge update JSON)", "1.7-28": " - Added the Redstone Controller: Others, it allows control panels to interface with Project:Red and Charset wires\n - Rewrote the control panel redstone code\n - Added localization for IW's multiblocks\n - Fixed issues with zero-length mechanical multiblocks", - "1.7-29": " - The wires can now transmit FE as well as EU, but not both at once\n - Fixed the Marx generator not charging beyond a quite low voltage", - "1.7-30": " - Fixed crashes when IC2 isn't installed\n - Fixed connectors allowing too much power output\n - Added a config option for some of the wires' properties\n - Updated chinese translation (thanks @DepletedPrism)", - "1.7-31": " - Fixed accidental conversion from FE to EU\n - Fixed connectors not blowing up as intended\n " + "1.7-29": " - The wires can now transmit FE as well as EU, but not both at once\n - Fixed the Marx generator not charging beyond a quite low voltage", + "1.7-30": " - Fixed crashes when IC2 isn't installed\n - Fixed connectors allowing too much power output\n - Added a config option for some of the wires' properties\n - Updated chinese translation (thanks @DepletedPrism)", + "1.7-31": " - Fixed accidental conversion from FE to EU\n - Fixed connectors not blowing up as intended\n ", + "1.7-32": " - Fixed connectors not rendering properly without IC2\n - Fixed parts of the mechanical multiblocks not rendering when Optifine is installed\n - Changed some values for the mechanical multiblock sound" } } \ No newline at end of file diff --git a/changelog.md b/changelog.md index d28901a..53d6420 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ ###Minecraft 1.12.2 +####Version 1.7-32 + - Fixed connectors not rendering properly without IC2 + - Fixed parts of the mechanical multiblocks not rendering when Optifine is installed + - Changed some values for the mechanical multiblock sound + ####Version 1.7-31 - Fixed accidental conversion from FE to EU - Fixed connectors not blowing up as intended diff --git a/src/main/java/malte0811/industrialwires/IndustrialWires.java b/src/main/java/malte0811/industrialwires/IndustrialWires.java index 41e6cc1..a65ef38 100644 --- a/src/main/java/malte0811/industrialwires/IndustrialWires.java +++ b/src/main/java/malte0811/industrialwires/IndustrialWires.java @@ -81,7 +81,7 @@ package malte0811.industrialwires; import static malte0811.industrialwires.mech_mb.MechMBPart.EXAMPLE_MECHMB_LOC; import static malte0811.industrialwires.wires.MixedWireType.*; -@Mod(modid = IndustrialWires.MODID, version = IndustrialWires.VERSION, dependencies = "required-after:immersiveengineering@[0.12-77,);after:ic2;required-after:forge@[14.23.3.2694,)", + @Mod(modid = IndustrialWires.MODID, version = IndustrialWires.VERSION, dependencies = "required-after:immersiveengineering@[0.12-86,);after:ic2;required-after:forge@[14.23.3.2694,)", certificateFingerprint = "7e11c175d1e24007afec7498a1616bef0000027d", updateJSON = "https://raw.githubusercontent.com/malte0811/IndustrialWires/MC1.12/changelog.json") @Mod.EventBusSubscriber