diff --git a/README b/README index 6ddb549..f76463a 100644 --- a/README +++ b/README @@ -1,6 +1,6 @@ -Minecraft Land Generator version 1.6.0 Testing 56 +Minecraft Land Generator version 1.6.0 Testing 57 -Updated December 25, 2011 +Updated December 26, 2011 Original Code by Corrodias November 2010 Enhanced Code by Morlok8k Feb. 2011 to Now (or at least to the date listed above!) diff --git a/bin/MLG-BuildID b/bin/MLG-BuildID index ef539df..22f3818 100644 --- a/bin/MLG-BuildID +++ b/bin/MLG-BuildID @@ -12,3 +12,4 @@ C446074C032FBDB8819FFD36D67B6BDE=1324240329000# MLG v1.6.0 Testing 41 E24C862A605E1F5AFD6AC476FA362575=1324881816000# MLG v1.6.0 Testing 54 D8C8AAD349579A6ED6F7BED144BC31F0=1324884237000# MLG v1.6.0 Testing 55 9FB4D286A823DAE4A0D2F2929A1A8A53=1324886386000# MLG v1.6.0 Testing 56 +DB54C9BB6333F0E45A6B0BE8016B8004=1324887349000# MLG v1.6.0 Testing 57 diff --git a/bin/MinecraftLandGenerator.conf b/bin/MinecraftLandGenerator.conf index a418213..c03f333 100644 --- a/bin/MinecraftLandGenerator.conf +++ b/bin/MinecraftLandGenerator.conf @@ -1,6 +1,6 @@ -#Minecraft Land Generator Configuration File: Version: 1.6.0 Testing 56 +#Minecraft Land Generator Configuration File: Version: 1.6.0 Testing 57 #Authors: Corrodias, Morlok8k, pr0f1x -#Auto-Generated: Monday, December 26, 2011 at 12:02 AM Pacific Standard Time +#Auto-Generated: Monday, December 26, 2011 at 12:19 AM Pacific Standard Time #Line to run server: Java=java -Djava.awt.headless=true -Djline.terminal=jline.UnsupportedTerminal -Duser.language=en -Xms1024m -Xmx1024m -Xincgc -jar minecraft_server.jar nogui diff --git a/bin/MinecraftLandGenerator.jar b/bin/MinecraftLandGenerator.jar index d57973d..a5ee60b 100755 Binary files a/bin/MinecraftLandGenerator.jar and b/bin/MinecraftLandGenerator.jar differ diff --git a/src/corrodias/minecraft/landgenerator/Main.java b/src/corrodias/minecraft/landgenerator/Main.java index e56ce77..ca324f7 100644 --- a/src/corrodias/minecraft/landgenerator/Main.java +++ b/src/corrodias/minecraft/landgenerator/Main.java @@ -51,7 +51,7 @@ import org.jnbt.Tag; public class Main { // Version Number! - private static final String VERSION = "1.6.0 Testing 56"; + private static final String VERSION = "1.6.0 Testing 57"; private static final String AUTHORS = "Corrodias, Morlok8k, pr0f1x"; private static final String fileSeparator = System.getProperty("file.separator"); @@ -1220,7 +1220,6 @@ public class Main { if (MLGFileName.equals(rsrcError)) { return; } } - //TODO: MLGFileNameShort MLGFileNameShort = MLGFileName.substring(MLGFileName.lastIndexOf(fileSeparator) + 1, MLGFileName.length()); @@ -1353,6 +1352,7 @@ public class Main { private void updateMLG() { buildID(true); //get latest BuildID file. + MLG_Last_Modified_Date = null; readBuildID(); Iterator e = timeStamps.iterator(); diff --git a/update_github.sh b/update_github.sh new file mode 100755 index 0000000..5870ce8 --- /dev/null +++ b/update_github.sh @@ -0,0 +1,21 @@ +#!/bin/sh + +## Minecraft Land Generator - Readme Extractor +## Morlok8k - Updated 11/4/2011 + +## Just a simple script to help me update my readme file on github. +## MLG will display the readme with the "-readme" argument + +cd ./bin/ +chmod a+x ./MinecraftLandGenerator.jar + +java -jar ./MinecraftLandGenerator.jar -conf + +cd .. +java -jar ./bin/MinecraftLandGenerator.jar -readme README + +rm ./MLG-BuildID + +git add . +git commit -a +git push origin master diff --git a/new_readme_file.sh b/update_github.sh~ similarity index 91% rename from new_readme_file.sh rename to update_github.sh~ index 4463e51..9576ebf 100755 --- a/new_readme_file.sh +++ b/update_github.sh~ @@ -16,4 +16,5 @@ java -jar ./bin/MinecraftLandGenerator.jar -readme README rm ./MLG-BuildID - +git commit -a +git push origin master