mirror of
https://github.com/PrismarineJS/node-minecraft-protocol.git
synced 2025-05-22 03:00:25 -04:00
Release 0.7.9
This commit is contained in:
parent
09a80dddd2
commit
cf73d4dad9
2 changed files with 25 additions and 15 deletions
38
README.md
38
README.md
|
@ -4,7 +4,7 @@ Parse and serialize minecraft packets, plus authentication and encryption.
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
* Supports Minecraft version 1.4.7
|
* Supports Minecraft version 1.5
|
||||||
* 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.
|
||||||
|
@ -175,7 +175,7 @@ correct data type.
|
||||||
✓ 0x12
|
✓ 0x12
|
||||||
✓ 0x13
|
✓ 0x13
|
||||||
✓ 0x14
|
✓ 0x14
|
||||||
✓ 0x16
|
✓ 0x16
|
||||||
✓ 0x17
|
✓ 0x17
|
||||||
✓ 0x18
|
✓ 0x18
|
||||||
✓ 0x19
|
✓ 0x19
|
||||||
|
@ -203,6 +203,7 @@ correct data type.
|
||||||
✓ 0x3c
|
✓ 0x3c
|
||||||
✓ 0x3d
|
✓ 0x3d
|
||||||
✓ 0x3e
|
✓ 0x3e
|
||||||
|
✓ 0x3f
|
||||||
✓ 0x46
|
✓ 0x46
|
||||||
✓ 0x47
|
✓ 0x47
|
||||||
✓ 0x64
|
✓ 0x64
|
||||||
|
@ -223,6 +224,10 @@ correct data type.
|
||||||
✓ 0xcb
|
✓ 0xcb
|
||||||
✓ 0xcc
|
✓ 0xcc
|
||||||
✓ 0xcd
|
✓ 0xcd
|
||||||
|
✓ 0xce
|
||||||
|
✓ 0xcf
|
||||||
|
✓ 0xd0
|
||||||
|
✓ 0xd1
|
||||||
✓ 0xfa
|
✓ 0xfa
|
||||||
✓ 0xfc
|
✓ 0xfc
|
||||||
✓ 0xfd
|
✓ 0xfd
|
||||||
|
@ -230,26 +235,31 @@ correct data type.
|
||||||
✓ 0xff
|
✓ 0xff
|
||||||
|
|
||||||
client
|
client
|
||||||
✓ pings the server
|
✓ pings the server (6653ms)
|
||||||
✓ connects successfully - online mode
|
✓ connects successfully - online mode (4041ms)
|
||||||
✓ connects successfully - offline mode
|
✓ connects successfully - offline mode (2663ms)
|
||||||
✓ gets kicked when no credentials supplied in online mode
|
✓ gets kicked when no credentials supplied in online mode (4678ms)
|
||||||
✓ does not crash for 10000ms
|
✓ does not crash for 10000ms (12492ms)
|
||||||
|
...............
|
||||||
mc-server
|
mc-server
|
||||||
✓ starts listening and shuts down cleanly
|
✓ starts listening and shuts down cleanly (44ms)
|
||||||
✓ kicks clients that do not log in
|
✓ kicks clients that do not log in (149ms)
|
||||||
✓ kicks clients that do not send keepalive packets
|
✓ kicks clients that do not send keepalive packets (153ms)
|
||||||
✓ responds to ping requests
|
✓ responds to ping requests
|
||||||
✓ clients can log in and chat
|
✓ clients can log in and chat (71ms)
|
||||||
✓ gives correct reason for kicking clients when shutting down
|
✓ kicks clients when invalid credentials (263ms)
|
||||||
|
✓ gives correct reason for kicking clients when shutting down (40ms)
|
||||||
|
|
||||||
|
|
||||||
85 tests complete
|
91 tests complete (50 seconds)
|
||||||
```
|
```
|
||||||
|
|
||||||
## History
|
## History
|
||||||
|
|
||||||
|
### 0.7.9
|
||||||
|
|
||||||
|
* support minecraft protocol 1.5 / protocol version 60 (thanks mappum)
|
||||||
|
|
||||||
### 0.7.8
|
### 0.7.8
|
||||||
|
|
||||||
* server: ability to change `motd` and `maxPlayers`
|
* server: ability to change `motd` and `maxPlayers`
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "minecraft-protocol",
|
"name": "minecraft-protocol",
|
||||||
"version": "0.7.8",
|
"version": "0.7.9",
|
||||||
"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