Added v1.8.1 release notes
This commit is contained in:
parent
b69be17aca
commit
c7bc09e9a4
16
src/docs/releaseNotes/v1.8.1.md
Normal file
16
src/docs/releaseNotes/v1.8.1.md
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
## Minor Changes
|
||||||
|
|
||||||
|
This release focuses on improving performance for map zooming and asset loading.
|
||||||
|
|
||||||
|
- Custom tokens now share more data between each instance of a token saving on memory.
|
||||||
|
- Zooming is more efficient by being better at choosing which elements need to be re-rendered.
|
||||||
|
- Default image assets have been further compressed to save on network bandwidth.
|
||||||
|
- Browser compatibility has been expanded by supporting older browsers that didn't previously work with moving maps or interacting with dice.
|
||||||
|
- Sending larger maps to players will no longer hitch the UI while the map is cached.
|
||||||
|
- Shared dice rolls now only show icons for the dice that have been rolled in the expanded view mode.
|
||||||
|
- Holding down the Alt key while zooming will now activate a precision zoom mode, allowing mouse users to more precisely zoom maps.
|
||||||
|
- The game reconnection message now has a more compact UI.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
March 19 2021
|
@ -25,6 +25,7 @@ const v161 = raw("../docs/releaseNotes/v1.6.1.md");
|
|||||||
const v162 = raw("../docs/releaseNotes/v1.6.2.md");
|
const v162 = raw("../docs/releaseNotes/v1.6.2.md");
|
||||||
const v170 = raw("../docs/releaseNotes/v1.7.0.md");
|
const v170 = raw("../docs/releaseNotes/v1.7.0.md");
|
||||||
const v180 = raw("../docs/releaseNotes/v1.8.0.md");
|
const v180 = raw("../docs/releaseNotes/v1.8.0.md");
|
||||||
|
const v181 = raw("../docs/releaseNotes/v1.8.1.md");
|
||||||
|
|
||||||
function ReleaseNotes() {
|
function ReleaseNotes() {
|
||||||
const location = useLocation();
|
const location = useLocation();
|
||||||
@ -49,6 +50,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="v181">
|
||||||
|
<Accordion heading="v1.8.1" defaultOpen>
|
||||||
|
<Markdown source={v181} />
|
||||||
|
</Accordion>
|
||||||
|
</div>
|
||||||
<div id="v180">
|
<div id="v180">
|
||||||
<Accordion heading="v1.8.0" defaultOpen>
|
<Accordion heading="v1.8.0" defaultOpen>
|
||||||
<Markdown source={v180} />
|
<Markdown source={v180} />
|
||||||
|
Loading…
Reference in New Issue
Block a user