Added v1.5.2 release notes

This commit is contained in:
Mitchell McCaffrey 2020-09-11 18:11:19 +10:00
parent fb536f4cd8
commit edf9b892d4
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,20 @@
## Minor Changes
This release focuses on better support for small screens and adds more accessibility options.
- Map, token and dice select screens now scale properly to small screens.
- A new full screen button allows you to hide the party and token list. This helps with usability on small screens and fixes an issue where the dice tray couldn't be seen.
- Fixed map zoom speed on Firefox on Windows to align with the other browsers.
- Fixed a crash that would occur if the user had local storage disabled.
- Fixed a bug that would cause the token label width to not update when the token size changed.
- Added a new accessibility option in the game settings for Token Label Size. This is a scale applied to token labels locally and should help with those who use large maps or high resolution screens.
- Fixed a bug that caused a crash when a map was deleted with unsaved changes.
- Fixed an error that could happen when switching between two maps with custom tokens.
- Added automatic cache invalidation to custom maps and tokens. This is an attempt to keep the storage of maps from getting out of hand as people use the site more. Practically this means that there is now a limit of 100 unique custom tokens per map. I'm intending to keep an eye on this and if there are issues I can make this number bigger.
[Reddit]()
[Twitter]()
---
September 10 2020

View File

@ -19,6 +19,7 @@ const v141 = raw("../docs/releaseNotes/v1.4.1.md");
const v142 = raw("../docs/releaseNotes/v1.4.2.md");
const v150 = raw("../docs/releaseNotes/v1.5.0.md");
const v151 = raw("../docs/releaseNotes/v1.5.1.md");
const v152 = raw("../docs/releaseNotes/v1.5.2.md");
function ReleaseNotes() {
const location = useLocation();
@ -43,6 +44,11 @@ function ReleaseNotes() {
<Text mb={2} variant="heading" as="h1" sx={{ fontSize: 5 }}>
Release Notes
</Text>
<div id="v152">
<Accordion heading="v1.5.2" defaultOpen>
<Markdown source={v152} />
</Accordion>
</div>
<div id="v151">
<Accordion heading="v1.5.1" defaultOpen>
<Markdown source={v151} />