Added v1.3.3 release notes

This commit is contained in:
Mitchell McCaffrey 2020-06-16 21:35:13 +10:00
parent df4a813377
commit 28d1033745
2 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,8 @@
# v1.3.3
## Minor Changes
- Fixed a bug that would cause the game to crash when a player would lose internet connection.
- Added an automatic reconnection feature for when internet connection is lost. This should also help when players put the site into the background and try and return to the game later.
[Reddit]()

View File

@ -11,6 +11,7 @@ const v121 = raw("../docs/releaseNotes/v1.2.1.md");
const v130 = raw("../docs/releaseNotes/v1.3.0.md"); const v130 = raw("../docs/releaseNotes/v1.3.0.md");
const v131 = raw("../docs/releaseNotes/v1.3.1.md"); const v131 = raw("../docs/releaseNotes/v1.3.1.md");
const v132 = raw("../docs/releaseNotes/v1.3.2.md"); const v132 = raw("../docs/releaseNotes/v1.3.2.md");
const v133 = raw("../docs/releaseNotes/v1.3.3.md");
function ReleaseNotes() { function ReleaseNotes() {
return ( return (
@ -33,6 +34,9 @@ function ReleaseNotes() {
<Text mb={2} variant="heading" as="h1" sx={{ fontSize: 5 }}> <Text mb={2} variant="heading" as="h1" sx={{ fontSize: 5 }}>
Release Notes Release Notes
</Text> </Text>
<div id="v133">
<Markdown source={v133} />
</div>
<div id="v132"> <div id="v132">
<Markdown source={v132} /> <Markdown source={v132} />
</div> </div>