Archiviert
13
0

Update some version stuff

Dieser Commit ist enthalten in:
Dan Mulloy 2014-11-28 22:36:47 -05:00
Ursprung bd8f2dcc41
Commit b9818cace7
3 geänderte Dateien mit 21 neuen und 13 gelöschten Zeilen

3
.gitignore vendored
Datei anzeigen

@ -163,3 +163,6 @@ pip-log.txt
# Mac crap
.DS_Store
# Maven
logs/

Datei anzeigen

@ -87,12 +87,12 @@ public class ProtocolLibrary extends JavaPlugin {
/**
* The maximum version ProtocolLib has been tested with,
*/
public static final String MAXIMUM_MINECRAFT_VERSION = "1.7.10";
public static final String MAXIMUM_MINECRAFT_VERSION = "1.8";
/**
* The date (with ISO 8601 or YYYY-MM-DD) when the most recent version was released.
*/
public static final String MINECRAFT_LAST_RELEASE_DATE = "2013-12-10";
public static final String MINECRAFT_LAST_RELEASE_DATE = "2014-09-02";
// Different commands
private enum ProtocolCommand {

Datei anzeigen

@ -43,6 +43,11 @@ public class MinecraftVersion implements Comparable<MinecraftVersion>, Serializa
*/
private static final String VERSION_PATTERN = ".*\\(.*MC.\\s*([a-zA-z0-9\\-\\.]+)\\s*\\)";
/**
* Version 1.8 - the "bountiful" update.
*/
public static final MinecraftVersion BOUNTIFUL_UPDATE = new MinecraftVersion("1.8");
/**
* Version 1.7.8 - the update that changed the skin format (and distribution - R.I.P. player disguise)
*/