This commit is contained in:
Morlok8k 2011-12-26 14:16:17 -08:00
parent 1cf57748fd
commit 012535fcd8
5 changed files with 11 additions and 6 deletions

5
README
View File

@ -1,4 +1,4 @@
Minecraft Land Generator version 1.6.0 Christmas 2011 Edition
Minecraft Land Generator version 1.6.01
Updated December 26, 2011
@ -22,7 +22,8 @@ It is also available at: http://jnbt.sourceforge.net/
Version History:
Morlok8k:
1.6.01
- small fix on caculating md5sum where old version didnt pad out to 32chars with zeros on the left side- no new functionality, md5 issue doesnt affect -update on old versions.
1.6.0
- NOW DOES NOT NEED ANY SCRIPT FILES!
- Added the ability to download files from the internet

View File

@ -20,3 +20,4 @@ BB0D2DA2ADEDD6F1ADC04D60A49ED6AC=1324892569000# MLG v1.6.0 Testing 62
7970DF7C263151CF86198D44159DABD8=1324893153000# MLG v1.6.0 Testing 64
6AF192F8233606270E1FFE39967E44D=1324894337000# MLG v1.6.0 Christmas 2011 Edition (Missing Source Code)
FF376B05316EE14CC391501F00533732=1324933509000# MLG v1.6.0 Christmas 2011 Edition
AEB596394C059751586921AB0E30FD1A=1324937756000# MLG v1.6.01

View File

@ -1,6 +1,6 @@
#Minecraft Land Generator Configuration File: Version: 1.6.0 Christmas 2011 Edition
#Minecraft Land Generator Configuration File: Version: 1.6.01
#Authors: Corrodias, Morlok8k, pr0f1x
#Auto-Generated: Monday, December 26, 2011 at 1:08 PM Pacific Standard Time
#Auto-Generated: Monday, December 26, 2011 at 2:16 PM 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

Binary file not shown.

View File

@ -52,7 +52,7 @@ import org.jnbt.Tag;
public class Main {
// Version Number!
private static final String VERSION = "1.6.0 Christmas 2011 Edition";
private static final String VERSION = "1.6.01";
private static final String AUTHORS = "Corrodias, Morlok8k, pr0f1x";
private static final String fileSeparator = System.getProperty("file.separator");
@ -934,6 +934,9 @@ public class Main {
+ newLine
+ "Version History:" + newLine
+ "Morlok8k:" + newLine
+ "1.6.01" + newLine
+ "- small fix on caculating md5sum where old version didnt pad out to 32chars with zeros on the left side"
+ "- no new functionality, md5 issue doesnt affect -update on old versions."
+ newLine
+ "1.6.0" + newLine
+ "- NOW DOES NOT NEED ANY SCRIPT FILES!" + newLine
@ -1515,7 +1518,7 @@ public class Main {
}
byte[] md5sum = digest.digest();
BigInteger bigInt = new BigInteger(1, md5sum);
String output = bigInt.toString(16);
String output = String.format("%1$032X", bigInt); //pad on left to 32 chars with 0's, also capitalize.
// out("MD5: " + output);
return output.toUpperCase(Locale.ENGLISH);
} catch (IOException e) {