Skip to content
This repository was archived by the owner on May 20, 2023. It is now read-only.

Commit 1296afe

Browse files
v0.7.2
1 parent 1efa585 commit 1296afe

File tree

2 files changed

+31
-2
lines changed

2 files changed

+31
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "rainbow-board",
3-
"version": "0.7.1",
3+
"version": "0.7.2",
44
"productName": "Rainbow Board",
55
"author": {
66
"name": "Harsh Khandeparkar",

src/renderer/components/WhatsNew/WhatsNew.tsx

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import GridItem from '../Grid/GridItem';
99

1010
import { Header } from '../Header/Header';
1111

12-
const { version } = packageFile;
12+
const { version, discordInvite, repository } = packageFile;
1313

1414
function New(
1515
{title, desc, version, link, size = 1}: {
@@ -60,6 +60,35 @@ export default class WhatsNew extends Component {
6060
}}
6161
className="container"
6262
>
63+
<New
64+
title="That Annoying Bug Is Gone"
65+
desc={
66+
<span>
67+
Line tool used to leave circles behind after using. These circles are now gone. <br />
68+
This bug was there for 12 whole days! v0.7.1 was released 12 days ago! <br />
69+
No one reported this until I found it myself. If you don't know, you can always report the bugs in our Discord server or on Github Issues using the following links: <br />
70+
<a href={discordInvite} target="_blank" rel="noreferrer">Discord Server</a>. <br/>
71+
<a href={repository + '/issues'} target="_blank" rel="noreferrer">Github Issues</a>. <br/>
72+
</span>
73+
}
74+
version="v0.7.2"
75+
size={3}
76+
/>
77+
<New
78+
title="Mouse Magick"
79+
desc={
80+
<span>
81+
Your mouse coupled with the keyboard can do magick. It can now be used to change the size of the brush, zoom and pan.
82+
<br /><br />
83+
Just moving the scroll wheel will change the brush size.<br />
84+
But if you hold control key on the keyboard, you can do the following:<br />
85+
<b>Ctrl + Scroll</b>: Zoom in/out of the whiteboard.<br />
86+
<b>Ctrl + Drag the board with mouse</b>: Will move (pan) a zoomed in whiteboard.<br />
87+
</span>
88+
}
89+
version="v0.7.1"
90+
size={2}
91+
/>
6392
<New
6493
title="Changed Shortcuts"
6594
desc={`${SAVE.platformFormattedString} is now used to save the whiteboard as a ".rainbow" file and ${EXPORT_PAGE.platformFormattedString} to export a single page as an image.`}

0 commit comments

Comments
 (0)