17w15a support

This commit is contained in:
Romain Beaumont 2017-04-13 14:07:33 +02:00
parent 160aec16cb
commit 730aab3c92
No known key found for this signature in database
GPG Key ID: DB60E388B3BCF286
3 changed files with 4 additions and 3 deletions

View File

@ -8,7 +8,8 @@ Parse and serialize minecraft packets, plus authentication and encryption.
## Features ## Features
* Supports Minecraft PC version 1.7.10, 1.8.8, 1.9 (15w40b, 1.9, 1.9.1-pre2, 1.9.2, 1.9.4), 1.10 (16w20a, 1.10-pre1, 1.10, 1.10.1, 1.10.2), and 1.11 (16w35a, 1.11, 1.11.2) * Supports Minecraft PC version 1.7.10, 1.8.8, 1.9 (15w40b, 1.9, 1.9.1-pre2, 1.9.2, 1.9.4),
1.10 (16w20a, 1.10-pre1, 1.10, 1.10.1, 1.10.2), 1.11 (16w35a, 1.11, 1.11.2), and 1.12 (17w15a)
* 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.

View File

@ -41,7 +41,7 @@
"endian-toggle": "^0.0.0", "endian-toggle": "^0.0.0",
"lodash.get": "^4.1.2", "lodash.get": "^4.1.2",
"lodash.merge": "^4.3.0", "lodash.merge": "^4.3.0",
"minecraft-data": "^2.11.0", "minecraft-data": "^2.14.0",
"prismarine-nbt": "^1.0.0", "prismarine-nbt": "^1.0.0",
"protodef": "^1.3.0", "protodef": "^1.3.0",
"readable-stream": "^2.0.5", "readable-stream": "^2.0.5",

View File

@ -2,5 +2,5 @@
module.exports={ module.exports={
defaultVersion:'1.8', defaultVersion:'1.8',
supportedVersions:['1.7','1.8','1.9','1.10','1.11.2'] supportedVersions:['1.7','1.8','1.9','1.10','1.11.2','17w15a']
}; };