Add v1.10.1 release notes
This commit is contained in:
parent
f359ce1732
commit
ae72ae55d3
20
src/docs/releaseNotes/v1.10.1.md
Normal file
20
src/docs/releaseNotes/v1.10.1.md
Normal 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
|
@ -27,6 +27,7 @@ const v180 = raw("../docs/releaseNotes/v1.8.0.md");
|
|||||||
const v181 = raw("../docs/releaseNotes/v1.8.1.md");
|
const v181 = raw("../docs/releaseNotes/v1.8.1.md");
|
||||||
const v190 = raw("../docs/releaseNotes/v1.9.0.md");
|
const v190 = raw("../docs/releaseNotes/v1.9.0.md");
|
||||||
const v1100 = raw("../docs/releaseNotes/v1.10.0.md");
|
const v1100 = raw("../docs/releaseNotes/v1.10.0.md");
|
||||||
|
const v1101 = raw("../docs/releaseNotes/v1.10.1.md");
|
||||||
|
|
||||||
function ReleaseNotes() {
|
function ReleaseNotes() {
|
||||||
const location = useLocation();
|
const location = useLocation();
|
||||||
@ -51,6 +52,11 @@ 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="v1101">
|
||||||
|
<Accordion heading="v1.10.1" defaultOpen>
|
||||||
|
<Markdown source={v1101} />
|
||||||
|
</Accordion>
|
||||||
|
</div>
|
||||||
<div id="v1100">
|
<div id="v1100">
|
||||||
<Accordion heading="v1.10.0" defaultOpen>
|
<Accordion heading="v1.10.0" defaultOpen>
|
||||||
<Markdown source={v1100} />
|
<Markdown source={v1100} />
|
||||||
|
Loading…
Reference in New Issue
Block a user