Build 1.4-19

This commit is contained in:
malte0811 2017-08-14 18:52:33 +02:00
parent baa091b9a4
commit e500ba0a7c
3 changed files with 24 additions and 2 deletions

View File

@ -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.

View File

@ -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

View File

@ -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}";