Added v1.6.1 release notes
This commit is contained in:
parent
60d24050ee
commit
27a8e1dd72
19
src/docs/releaseNotes/v1.6.1.md
Normal file
19
src/docs/releaseNotes/v1.6.1.md
Normal file
@ -0,0 +1,19 @@
|
||||
## Minor Changes
|
||||
|
||||
This release fixes a few map sending bugs and reworks map zooming.
|
||||
|
||||
- Change map max zoom to be based off of the maps grid size. This should mean you should always be able to zoom up to see a grid cell almost fullscreen.
|
||||
- Updated map zoom speed to be linear throughout it's zoom range.
|
||||
- Update map zoom to be centered on the mouse instead of screen.
|
||||
- Updated map grid from file name functionality to better reject non-grid values.
|
||||
- Fixed a bug that caused sending large maps to fail.
|
||||
- Made advanced map options shown by default.
|
||||
- Renamed Show Grid map option to Draw Grid to help with the similarity with the Show Grid Controls option.
|
||||
- Fixed a bug where map states sometimes wouldn't be saved if another player changed the map.
|
||||
|
||||
[Reddit]()
|
||||
[Twitter]()
|
||||
|
||||
---
|
||||
|
||||
October 23 2020
|
@ -21,6 +21,7 @@ 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");
|
||||
const v160 = raw("../docs/releaseNotes/v1.6.0.md");
|
||||
const v161 = raw("../docs/releaseNotes/v1.6.1.md");
|
||||
|
||||
function ReleaseNotes() {
|
||||
const location = useLocation();
|
||||
@ -45,7 +46,12 @@ function ReleaseNotes() {
|
||||
<Text mb={2} variant="heading" as="h1" sx={{ fontSize: 5 }}>
|
||||
Release Notes
|
||||
</Text>
|
||||
<div id="v152">
|
||||
<div id="v161">
|
||||
<Accordion heading="v1.6.1" defaultOpen>
|
||||
<Markdown source={v161} />
|
||||
</Accordion>
|
||||
</div>
|
||||
<div id="v160">
|
||||
<Accordion heading="v1.6.0" defaultOpen>
|
||||
<Markdown source={v160} />
|
||||
</Accordion>
|
||||
|
Loading…
Reference in New Issue
Block a user