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

Commit 1105253

Browse files
v0.6.0
1 parent 4b8ff9e commit 1105253

File tree

3 files changed

+35
-19
lines changed

3 files changed

+35
-19
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.5.5",
3+
"version": "0.6.0",
44
"productName": "Rainbow Board",
55
"author": {
66
"name": "Harsh Khandeparkar"

public/electron.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,9 @@ V8: v${process.versions.v8}
6060
label: '&File',
6161
submenu: [
6262
{ label: 'Start New', accelerator: 'CmdOrCtrl + N' },
63-
{ label: 'Save Page', accelerator: 'CmdOrCtrl + S' }
63+
{ label: 'Save Page', accelerator: 'CmdOrCtrl + S' },
64+
{ type: 'separator' },
65+
{ label: 'Quit', accelerator: 'CmdOrCtrl + Q', click: () => win.isClosable() && win.close() }
6466
]
6567
},
6668
{
@@ -153,8 +155,6 @@ V8: v${process.versions.v8}
153155
win.setMenu(Menu.buildFromTemplate(windowMenuTemplate));
154156
})
155157

156-
if (isDev) win.webContents.openDevTools();
157-
158158
win.webContents.setWindowOpenHandler((e, url) => {
159159
e.preventDefault();
160160
shell.openExternal(url);

src/components/WhatsNew/WhatsNew.jsx

Lines changed: 31 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -55,25 +55,41 @@
5555
}}
5656
className="container"
5757
>
58+
<New
59+
title="Desktop App Features"
60+
desc="The app has been changed to look more like a desktop app than a web app running in a wrapper.
61+
A new menu has been added along with other changes. Starting from now, the web app will not be updated beyond
62+
v0.5.4 because maintaining both is not possible. New optimizations and features will be added to the desktop app and the website
63+
will be used as an about page.
64+
"
65+
version="v0.6.0"
66+
size={2}
67+
/>
68+
<New
69+
title="Hotter Keys"
70+
desc="New hotkeys (keyboard shortcuts) have been added to almost every action such as adding pages, changing the page, color palette and choosing the tool.
71+
Use the top menu to find out which hotkey does what."
72+
version="v0.6.0"
73+
size={1}
74+
/>
75+
5876
<New
5977
title="Multiple Pages Bug Fix"
6078
desc={
6179
<span>
62-
There was a bug in multiple pages as reported by AnarcHy on Discord:
63-
64-
<blockquote>
65-
1) start a new project
66-
2) write down '1' on first slide
67-
3) create new slide and write down '2'
68-
4) go back to first slide, do not change anything
69-
5) go to slide 2 again, add new slide and write down '3'
70-
6) create new slide and write down '4'
71-
7) go back to the previous slide and see the magic happen. It says '2', although we expect it to say '3'
72-
73-
I also found a similar incorrect behaviour in some other scenarios, but this was the simplest one I found that shows it. Guess it will be the same source for the error as in these other scenarios.
74-
Basically, if you go back a single slide from the latest one, then go on to create two new slides and then go back to the first one that was newly created, it does not show what was written down on it, but another one from the series. Which one it shows I did not find the pattern yet.
75-
</blockquote>
76-
80+
There was a bug in multiple pages as reported by AnarcHy on Discord:<br />
81+
<br />
82+
1) start a new project <br />
83+
2) write down '1' on first slide<br />
84+
3) create new slide and write down '2'<br />
85+
4) go back to first slide, do not change anything<br />
86+
5) go to slide 2 again, add new slide and write down '3'<br />
87+
6) create new slide and write down '4'<br />
88+
7) go back to the previous slide and see the magic happen. It says '2', although we expect it to say '3'<br />
89+
<br />
90+
I also found a similar incorrect behaviour in some other scenarios, but this was the simplest one I found that shows it. Guess it will be the same source for the error as in these other scenarios.<br />
91+
Basically, if you go back a single slide from the latest one, then go on to create two new slides and then go back to the first one that was newly created, it does not show what was written down on it, but another one from the series. Which one it shows I did not find the pattern yet.<br />
92+
<br />
7793
This bug has been fixed.
7894
</span>
7995
}

0 commit comments

Comments
 (0)