mirror of
https://github.com/PrismarineJS/node-minecraft-protocol.git
synced 2025-05-17 16:50:24 -04:00
Updated protocol version to support 1.6.4
This commit is contained in:
parent
8b7abe27e7
commit
5e75cdf75d
3 changed files with 8 additions and 4 deletions
|
@ -4,7 +4,7 @@ Parse and serialize minecraft packets, plus authentication and encryption.
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
* Supports Minecraft version 1.6.2
|
* Supports Minecraft version 1.6.4
|
||||||
* Parses all packets and emits events with packet fields as JavaScript
|
* Parses all packets and emits events with packet fields as JavaScript
|
||||||
objects.
|
objects.
|
||||||
* Send a packet by supplying fields as a JavaScript object.
|
* Send a packet by supplying fields as a JavaScript object.
|
||||||
|
@ -293,6 +293,10 @@ NODE_DEBUG="minecraft-protocol" node [...]
|
||||||
|
|
||||||
## History
|
## History
|
||||||
|
|
||||||
|
### 0.11.6
|
||||||
|
|
||||||
|
* Updated protocol version to support 1.6.4 (thanks [Matt Bell](https://github.com/mappum))
|
||||||
|
|
||||||
### 0.11.5
|
### 0.11.5
|
||||||
|
|
||||||
* Fix handling of some conditional fields (thanks [Florian Wesch](https://github.com/dividuum))
|
* Fix handling of some conditional fields (thanks [Florian Wesch](https://github.com/dividuum))
|
||||||
|
|
|
@ -1469,8 +1469,8 @@ function parsePacket(buffer, isServer) {
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
version: 74,
|
version: 78,
|
||||||
minecraftVersion: '1.6.2',
|
minecraftVersion: '1.6.4',
|
||||||
sessionVersion: 13,
|
sessionVersion: 13,
|
||||||
parsePacket: parsePacket,
|
parsePacket: parsePacket,
|
||||||
createPacketBuffer: createPacketBuffer,
|
createPacketBuffer: createPacketBuffer,
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "minecraft-protocol",
|
"name": "minecraft-protocol",
|
||||||
"version": "0.11.5",
|
"version": "0.11.6",
|
||||||
"description": "Parse and serialize minecraft packets, plus authentication and encryption.",
|
"description": "Parse and serialize minecraft packets, plus authentication and encryption.",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue