Skip to content

Commit

Permalink
Changed version # to include MC #
Browse files Browse the repository at this point in the history
This should improve traceablity between versions and reduce overlap.
  • Loading branch information
DarkGuardsman committed Jan 29, 2018
1 parent fbdf62a commit 332abcc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
10 changes: 3 additions & 7 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@
version_major=2
version_minor=16
version_revis=3
version_mc=1.12.2
archivebase=ICBM-classic
groupid=icbm-classic
org=builtbroken
voltz_engine_version=1.7.3.0
cofhlib_version=[1.7.10]1.0.2-160-dev
cofhcore_version=[1.7.10]3.0.2-262-dev
rars_version=[1.7.10]1.1.0-80-dev
texpansion_version=[1.7.10]4.0.0-176-dev
tfoundation_version=[1.7.10]1.0.0-81-dev
startGitRev=4d73d77
voltz_engine_version=1.12.2-1.7.3.0
startGitRev=fbdf62
8 changes: 5 additions & 3 deletions src/main/java/icbm/classic/ICBMClassic.java
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,10 @@
import java.util.Arrays;

/**
* Main class for ICBM core to run on. The core will need to be initialized by each ICBM module.
* Mod class for ICBM Classic, contains all loading code and references to objects crated by the mod.
*
* @author Calclavia
* @author DarkGuardsman
* Orginal author and creator of the mod: Calclavia
*/
@Mod(modid = ICBMClassic.DOMAIN, name = "ICBM-Classic", version = ICBMClassic.VERSION, dependencies = ICBMClassic.DEPENDENCIES)
@Mod.EventBusSubscriber
Expand All @@ -94,7 +95,8 @@ public final class ICBMClassic extends AbstractMod
public static final String MINOR_VERSION = "@MINOR@";
public static final String REVISION_VERSION = "@REVIS@";
public static final String BUILD_VERSION = "@BUILD@";
public static final String VERSION = MAJOR_VERSION + "." + MINOR_VERSION + "." + REVISION_VERSION + "." + BUILD_VERSION;
public static final String MC_VERSION = "@MC@";
public static final String VERSION = MC_VERSION + "-" + MAJOR_VERSION + "." + MINOR_VERSION + "." + REVISION_VERSION + "." + BUILD_VERSION;
public static final String DEPENDENCIES = "required-after:voltzengine;after:OpenComputers";

public static final int ENTITY_ID_PREFIX = 50;
Expand Down

0 comments on commit 332abcc

Please sign in to comment.