From 07b838ef7b87df93d570ca3498ef04b8f0816c87 Mon Sep 17 00:00:00 2001 From: Sean Baines Date: Sat, 5 Aug 2017 17:17:33 +0100 Subject: [PATCH 1/2] Fixes typo in welcome screen --- browser/main/modals/InitModal.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/browser/main/modals/InitModal.js b/browser/main/modals/InitModal.js index e5f4ac2c..c7c2778e 100644 --- a/browser/main/modals/InitModal.js +++ b/browser/main/modals/InitModal.js @@ -152,7 +152,7 @@ class InitModal extends React.Component { type: 'MARKDOWN_NOTE', folder: data.storage.folders[0].key, title: 'Welcome to Boostnote!', - content: '# Welcome to Boostnote! \n### _Click to edit this note._\n\n---\n\nBoostnote is an *open source* note-taking app. \nRepository is published on [GitHub](https://github.com/BoostIO/Boostnote), and tweeting everyday on [@Boostnoteapp](https://twitter.com/boostnoteapp)!\n\n## Features \n- [x] No Internet and Registration Required. \n- [ ] Quick search and copy the content of note. `macOS: Cmd + Alt + S / windows: Ctrl + Alt + S` \n- [ ] Markdown & Snippet note. \n- [ ] Available for `vim` and `emacs` mode. \n- [ ] Choose your favorite theme on UI, Editor and Code Block! \n--- \n\n- Copy Codeblock on Makrdown Preview.\n```javascript\nvar boostnote = document.getElementById(\'enjoy\').innerHTML\n\nconsole.log(boostnote)\n```' + content: '# Welcome to Boostnote! \n### _Click to edit this note._\n\n---\n\nBoostnote is an *open source* note-taking app. \nRepository is published on [GitHub](https://github.com/BoostIO/Boostnote), and tweeting everyday on [@Boostnoteapp](https://twitter.com/boostnoteapp)!\n\n## Features \n- [x] No Internet and Registration Required. \n- [ ] Quick search and copy the content of note. `macOS: Cmd + Alt + S / windows: Ctrl + Alt + S` \n- [ ] Markdown & Snippet note. \n- [ ] Available for `vim` and `emacs` mode. \n- [ ] Choose your favorite theme on UI, Editor and Code Block! \n--- \n\n- Copy Codeblock on Markdown Preview.\n```javascript\nvar boostnote = document.getElementById(\'enjoy\').innerHTML\n\nconsole.log(boostnote)\n```' }) .then((note) => { store.dispatch({ From 0646484c83ba8917a0e23a49d39ab5bd1456ff5a Mon Sep 17 00:00:00 2001 From: Sean Baines Date: Sun, 6 Aug 2017 11:34:39 +0100 Subject: [PATCH 2/2] Fixes wording on folder delete "This work will deletes all notes in the folder and can not be undone." to "This will delete all notes in the folder and can not be undone." --- browser/main/SideNav/StorageItem.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/browser/main/SideNav/StorageItem.js b/browser/main/SideNav/StorageItem.js index fefc5a60..c7985f75 100644 --- a/browser/main/SideNav/StorageItem.js +++ b/browser/main/SideNav/StorageItem.js @@ -114,7 +114,7 @@ class StorageItem extends React.Component { let index = dialog.showMessageBox(remote.getCurrentWindow(), { type: 'warning', message: 'Delete Folder', - detail: 'This work will deletes all notes in the folder and can not be undone.', + detail: 'This will delete all notes in the folder and can not be undone.', buttons: ['Confirm', 'Cancel'] })