From e500ba0a7ce078733f03887b9a93235607b3150d Mon Sep 17 00:00:00 2001 From: malte0811 Date: Mon, 14 Aug 2017 18:52:33 +0200 Subject: [PATCH] Build 1.4-19 --- build.gradle | 19 ++++++++++++++++++- changelog.md | 4 ++++ .../industrialWires/IndustrialWires.java | 3 ++- 3 files changed, 24 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 8a66e2b..2b839b8 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,5 @@ def mainVersion = "1.5" -def buildNumber = "17" +def buildNumber = "19" // For those who want the bleeding edge buildscript { @@ -60,6 +60,23 @@ jar { } } +task signMain(type: SignJar) { + onlyIf { + project.hasProperty('keyStore') + } + dependsOn reobfJar + if (project.hasProperty('keyStore')) { + keyStore = project.keyStore + alias = project.storeAlias + storePass = project.storePass + keyPass = project.storePass + inputFile = jar.archivePath + outputFile = jar.archivePath + } +} + +build.dependsOn signMain + processResources { // this will ensure that this task is redone when the versions change. diff --git a/changelog.md b/changelog.md index 2469927..59a1711 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,7 @@ +#####Version 1.4-19 + - Fixed a crash with SpongeForge, chunk loading issues without + - Fixed some components resetting on chunk unload + #####Version 1.5-17 - Backported some fixes from 1.12 diff --git a/src/main/java/malte0811/industrialWires/IndustrialWires.java b/src/main/java/malte0811/industrialWires/IndustrialWires.java index 819d4cb..fbba068 100644 --- a/src/main/java/malte0811/industrialWires/IndustrialWires.java +++ b/src/main/java/malte0811/industrialWires/IndustrialWires.java @@ -48,7 +48,8 @@ import net.minecraftforge.fml.common.network.simpleimpl.SimpleNetworkWrapper; import net.minecraftforge.fml.common.registry.GameRegistry; import net.minecraftforge.fml.relauncher.Side; -@Mod(modid = IndustrialWires.MODID, version = IndustrialWires.VERSION, dependencies = "required-after:immersiveengineering@[0.10-58,);required-after:ic2") +@Mod(modid = IndustrialWires.MODID, version = IndustrialWires.VERSION, dependencies = "required-after:immersiveengineering@[0.10-58,);required-after:ic2", + certificateFingerprint = "7e11c175d1e24007afec7498a1616bef0000027d") public class IndustrialWires { public static final String MODID = "industrialwires"; public static final String VERSION = "${version}";