Added v1.6.2 release notes

This commit is contained in:
Mitchell McCaffrey 2020-10-27 19:40:59 +11:00
parent c593ac3363
commit 12c1c3250c
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,16 @@
## Minor Changes
This is a small release fixing a few connection bugs.
- Added automatic error reporting. This should hopefully make it easier for us to track down bugs and fix them.
- Fixed a bug where player connections sometimes weren't being cleaned up on a network error.
- Added in game notifications when players leave or join a game.
- Changed auto reconnect timing to be a little more accurate.
- Fixed a bug where full resolution maps weren't being sent if the map owner left the game and rejoined.
[Reddit]()
[Twitter]()
---
October 27 2020

View File

@ -22,6 +22,7 @@ const v151 = raw("../docs/releaseNotes/v1.5.1.md");
const v152 = raw("../docs/releaseNotes/v1.5.2.md");
const v160 = raw("../docs/releaseNotes/v1.6.0.md");
const v161 = raw("../docs/releaseNotes/v1.6.1.md");
const v162 = raw("../docs/releaseNotes/v1.6.2.md");
function ReleaseNotes() {
const location = useLocation();
@ -46,6 +47,11 @@ function ReleaseNotes() {
<Text mb={2} variant="heading" as="h1" sx={{ fontSize: 5 }}>
Release Notes
</Text>
<div id="v162">
<Accordion heading="v1.6.2" defaultOpen>
<Markdown source={v162} />
</Accordion>
</div>
<div id="v161">
<Accordion heading="v1.6.1" defaultOpen>
<Markdown source={v161} />