diff --git a/HISTORY.md b/HISTORY.md index 0e246de..b2bbd15 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,6 @@ +## 3.29.0 +* 1.20.0 support + ## 3.28.1 * Fix `followPort` option (@LucienHH) * Typescript definition fixes (@hvlxh) diff --git a/README.md b/README.md index a0df88b..2c2ad13 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Minecraft Bedrock Edition (aka MCPE) protocol library, supporting authentication ## Features - - Supports Minecraft Bedrock version 1.16.201, 1.16.210, 1.16.220, 1.17.0, 1.17.10, 1.17.30, 1.17.40, 1.18.0, 1.18.11, 1.18.30, 1.19.1, 1.19.10, 1.19.20, 1.19.21, 1.19.30, 1.19.40, 1.19.41, 1.19.50, 1.19.60, 1.19.62, 1.19.63, 1.19.70, 1.19.80 + - Supports Minecraft Bedrock version 1.16.201, 1.16.210, 1.16.220, 1.17.0, 1.17.10, 1.17.30, 1.17.40, 1.18.0, 1.18.11, 1.18.30, 1.19.1, 1.19.10, 1.19.20, 1.19.21, 1.19.30, 1.19.40, 1.19.41, 1.19.50, 1.19.60, 1.19.62, 1.19.63, 1.19.70, 1.19.80, 1.20.0 - Parse and serialize packets as JavaScript objects - Automatically respond to keep-alive packets - [Proxy and mitm connections](docs/API.md#proxy-docs) diff --git a/package.json b/package.json index 146fcb5..edec1c1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bedrock-protocol", - "version": "3.28.1", + "version": "3.29.0", "description": "Minecraft Bedrock Edition protocol library", "main": "index.js", "types": "index.d.ts", diff --git a/tools/startVanillaServer.js b/tools/startVanillaServer.js index c6d4769..6d77006 100644 --- a/tools/startVanillaServer.js +++ b/tools/startVanillaServer.js @@ -7,7 +7,7 @@ const { getFiles, waitFor } = require('../src/datatypes/util') function head (url) { return new Promise((resolve, reject) => { - const req = http.request(url, { method: 'HEAD', timeout: 500 }, resolve) + const req = http.request(url, { method: 'HEAD', timeout: 1000 }, resolve) req.on('error', reject) req.on('timeout', () => { req.destroy(); debug('HEAD request timeout'); reject(new Error('timeout')) }) req.end()