Update some version stuff
Dieser Commit ist enthalten in:
Ursprung
bd8f2dcc41
Commit
b9818cace7
3
.gitignore
vendored
3
.gitignore
vendored
@ -163,3 +163,6 @@ pip-log.txt
|
||||
|
||||
# Mac crap
|
||||
.DS_Store
|
||||
|
||||
# Maven
|
||||
logs/
|
||||
|
@ -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 {
|
||||
|
@ -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)
|
||||
*/
|
||||
|
In neuem Issue referenzieren
Einen Benutzer sperren