Add v1.10.1 release notes

This commit is contained in:
Mitchell McCaffrey 2021-10-21 19:42:27 +11:00
parent f359ce1732
commit ae72ae55d3
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,20 @@
## Minor Changes
This is a small release fixing a few bugs and adding some QoL improvements.
- Updated alternating diagonals measurement to fix inaccuracy with diagonal distances.
- Added support for middle mouse button move shortcut.
- Added support for right mouse button pointer shortcut.
- Optimised note creation to reduce lag when creating a note on FireFox.
- Fixed a bug with using the polygon fog tool on touch devices.
- Fixed a bug that would cause phantom players to be shown in the party view on a server error.
We are currently working on some big changes that will take some time so expect smaller releases like this one until that is ready. If you'd like to keep up with the development of these changes check out our [Patreon](https://patreon.com/owlbearrodeo) where we are sharing previews of what's to come.
[Reddit]()
[Twitter]()
[Patreon]()
---
October 21 2021

View File

@ -27,6 +27,7 @@ const v180 = raw("../docs/releaseNotes/v1.8.0.md");
const v181 = raw("../docs/releaseNotes/v1.8.1.md");
const v190 = raw("../docs/releaseNotes/v1.9.0.md");
const v1100 = raw("../docs/releaseNotes/v1.10.0.md");
const v1101 = raw("../docs/releaseNotes/v1.10.1.md");
function ReleaseNotes() {
const location = useLocation();
@ -51,6 +52,11 @@ function ReleaseNotes() {
<Text mb={2} variant="heading" as="h1" sx={{ fontSize: 5 }}>
Release Notes
</Text>
<div id="v1101">
<Accordion heading="v1.10.1" defaultOpen>
<Markdown source={v1101} />
</Accordion>
</div>
<div id="v1100">
<Accordion heading="v1.10.0" defaultOpen>
<Markdown source={v1100} />