Updated protocol version to support 1.6.4

This commit is contained in:
Matt Bell 2013-09-26 15:34:10 -07:00
parent 8b7abe27e7
commit 5e75cdf75d
3 changed files with 8 additions and 4 deletions

View file

@ -4,7 +4,7 @@ Parse and serialize minecraft packets, plus authentication and encryption.
## Features
* Supports Minecraft version 1.6.2
* Supports Minecraft version 1.6.4
* Parses all packets and emits events with packet fields as JavaScript
objects.
* Send a packet by supplying fields as a JavaScript object.
@ -293,6 +293,10 @@ NODE_DEBUG="minecraft-protocol" node [...]
## History
### 0.11.6
* Updated protocol version to support 1.6.4 (thanks [Matt Bell](https://github.com/mappum))
### 0.11.5
* Fix handling of some conditional fields (thanks [Florian Wesch](https://github.com/dividuum))

View file

@ -1469,8 +1469,8 @@ function parsePacket(buffer, isServer) {
}
module.exports = {
version: 74,
minecraftVersion: '1.6.2',
version: 78,
minecraftVersion: '1.6.4',
sessionVersion: 13,
parsePacket: parsePacket,
createPacketBuffer: createPacketBuffer,

View file

@ -1,6 +1,6 @@
{
"name": "minecraft-protocol",
"version": "0.11.5",
"version": "0.11.6",
"description": "Parse and serialize minecraft packets, plus authentication and encryption.",
"main": "index.js",
"repository": {