Bump version to 5.7.0 due to Vaygrim's request, closes #808
This commit is contained in:
parent
ea7a421d7b
commit
9aef5beed3
9 changed files with 13 additions and 13 deletions
|
@ -2,5 +2,5 @@ dir.development=./
|
|||
dir.mcp=${dir.development}forge/mcp
|
||||
version.minecraft=1.6.4
|
||||
version.mod.major=5
|
||||
version.mod.minor=6
|
||||
version.mod.minor=7
|
||||
version.mod.revis=0
|
||||
|
|
|
@ -129,7 +129,7 @@ import cpw.mods.fml.common.registry.GameRegistry;
|
|||
* @author AidanBrady
|
||||
*
|
||||
*/
|
||||
@Mod(modid = "Mekanism", name = "Mekanism", version = "5.6.0")
|
||||
@Mod(modid = "Mekanism", name = "Mekanism", version = "5.7.0")
|
||||
@NetworkMod(channels = {"MEK"}, clientSideRequired = true, serverSideRequired = false, packetHandler = PacketHandler.class)
|
||||
public class Mekanism
|
||||
{
|
||||
|
@ -154,7 +154,7 @@ public class Mekanism
|
|||
public static Configuration configuration;
|
||||
|
||||
/** Mekanism version number */
|
||||
public static Version versionNumber = new Version(5, 6, 0);
|
||||
public static Version versionNumber = new Version(5, 7, 0);
|
||||
|
||||
/** Map of Teleporters */
|
||||
public static Map<Teleporter.Code, ArrayList<Object3D>> teleporters = new HashMap<Teleporter.Code, ArrayList<Object3D>>();
|
||||
|
|
|
@ -29,7 +29,7 @@ import cpw.mods.fml.common.network.NetworkMod;
|
|||
import cpw.mods.fml.common.network.NetworkRegistry;
|
||||
import cpw.mods.fml.common.registry.GameRegistry;
|
||||
|
||||
@Mod(modid = "MekanismGenerators", name = "MekanismGenerators", version = "5.6.0", dependencies = "required-after:Mekanism")
|
||||
@Mod(modid = "MekanismGenerators", name = "MekanismGenerators", version = "5.7.0", dependencies = "required-after:Mekanism")
|
||||
@NetworkMod(clientSideRequired = true, serverSideRequired = false)
|
||||
public class MekanismGenerators implements IModule
|
||||
{
|
||||
|
@ -40,7 +40,7 @@ public class MekanismGenerators implements IModule
|
|||
public static MekanismGenerators instance;
|
||||
|
||||
/** MekanismGenerators version number */
|
||||
public static Version versionNumber = new Version(5, 6, 0);
|
||||
public static Version versionNumber = new Version(5, 7, 0);
|
||||
|
||||
//Items
|
||||
public static Item BioFuel;
|
||||
|
|
|
@ -29,7 +29,7 @@ import cpw.mods.fml.common.network.NetworkMod;
|
|||
import cpw.mods.fml.common.network.NetworkRegistry;
|
||||
import cpw.mods.fml.common.registry.GameRegistry;
|
||||
|
||||
@Mod(modid = "MekanismInduction", name = "MekanismInduction", version = "5.6.0", dependencies = "required-after:Mekanism;after:MekanismGenerators;after:ForgeMultipart")
|
||||
@Mod(modid = "MekanismInduction", name = "MekanismInduction", version = "5.7.0", dependencies = "required-after:Mekanism;after:MekanismGenerators;after:ForgeMultipart")
|
||||
@NetworkMod(clientSideRequired = true, serverSideRequired = false)
|
||||
public class MekanismInduction implements IModule
|
||||
{
|
||||
|
@ -40,7 +40,7 @@ public class MekanismInduction implements IModule
|
|||
public static InductionCommonProxy proxy;
|
||||
|
||||
/** MekanismInduction version number */
|
||||
public static Version versionNumber = new Version(5, 6, 0);
|
||||
public static Version versionNumber = new Version(5, 7, 0);
|
||||
|
||||
/**
|
||||
* Settings
|
||||
|
|
|
@ -32,7 +32,7 @@ import cpw.mods.fml.common.network.NetworkMod;
|
|||
import cpw.mods.fml.common.registry.GameRegistry;
|
||||
import cpw.mods.fml.common.registry.LanguageRegistry;
|
||||
|
||||
@Mod(modid = "MekanismTools", name = "MekanismTools", version = "5.6.0", dependencies = "required-after:Mekanism")
|
||||
@Mod(modid = "MekanismTools", name = "MekanismTools", version = "5.7.0", dependencies = "required-after:Mekanism")
|
||||
@NetworkMod(clientSideRequired = true, serverSideRequired = false)
|
||||
public class MekanismTools implements IModule
|
||||
{
|
||||
|
@ -40,7 +40,7 @@ public class MekanismTools implements IModule
|
|||
public static MekanismTools instance;
|
||||
|
||||
/** MekanismTools version number */
|
||||
public static Version versionNumber = new Version(5, 6, 0);
|
||||
public static Version versionNumber = new Version(5, 7, 0);
|
||||
|
||||
//Enums: Tools
|
||||
public static EnumToolMaterial toolOBSIDIAN = EnumHelper.addToolMaterial("OBSIDIAN", 3, 2500, 20F, 10, 100);
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
"modid": "Mekanism",
|
||||
"name": "Mekanism",
|
||||
"description": "Energy, Armor, Tools, Weapons, Machines, Magic.",
|
||||
"version": "5.6.0",
|
||||
"version": "5.7.0",
|
||||
"mcversion": "1.6.4",
|
||||
"updateUrl": "",
|
||||
"authors": [
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
"modid": "MekanismGenerators",
|
||||
"name": "MekanismGenerators",
|
||||
"description": "Generators module of Mekanism.",
|
||||
"version": "5.6.0",
|
||||
"version": "5.7.0",
|
||||
"mcversion": "1.6.4",
|
||||
"updateUrl": "",
|
||||
"authors": [
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
"modid": "MekanismInduction",
|
||||
"name": "MekanismInduction",
|
||||
"description": "Induction module of Mekanism.",
|
||||
"version": "5.6.0",
|
||||
"version": "5.7.0",
|
||||
"mcversion": "1.6.4",
|
||||
"updateUrl": "",
|
||||
"authors": [
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
"modid": "MekanismTools",
|
||||
"name": "MekanismTools",
|
||||
"description": "Tools module for Mekanism.",
|
||||
"version": "5.6.0",
|
||||
"version": "5.7.0",
|
||||
"mcversion": "1.6.4",
|
||||
"updateUrl": "",
|
||||
"authors": [
|
||||
|
|
Loading…
Reference in a new issue