mirror of
https://github.com/BoostIo/Boostnote
synced 2025-12-13 17:56:25 +00:00
Merge branch 'master' of https://github.com/BoostIO/Boostnote
This commit is contained in:
2
LICENSE
2
LICENSE
@@ -2,7 +2,7 @@ GPL-3.0
|
|||||||
|
|
||||||
Boostnote - an open source note-taking app made for programmers just like you.
|
Boostnote - an open source note-taking app made for programmers just like you.
|
||||||
|
|
||||||
Copyright (C) 2017 - 2018 BoostIO
|
Copyright (C) 2017 - 2019 BoostIO
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify
|
This program is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|||||||
@@ -134,7 +134,7 @@ class InfoTab extends React.Component {
|
|||||||
>{i18n.__('Development')}</a>{i18n.__(' : Development configurations for Boostnote.')}
|
>{i18n.__('Development')}</a>{i18n.__(' : Development configurations for Boostnote.')}
|
||||||
</li>
|
</li>
|
||||||
<li styleName='cc'>
|
<li styleName='cc'>
|
||||||
{i18n.__('Copyright (C) 2017 - 2018 BoostIO')}
|
{i18n.__('Copyright (C) 2017 - 2019 BoostIO')}
|
||||||
</li>
|
</li>
|
||||||
<li styleName='cc'>
|
<li styleName='cc'>
|
||||||
{i18n.__('License: GPL v3')}
|
{i18n.__('License: GPL v3')}
|
||||||
|
|||||||
@@ -31,6 +31,34 @@ $ yarn run dev
|
|||||||
> 1. When editing a constructor method of a component
|
> 1. When editing a constructor method of a component
|
||||||
> 2. When adding a new css class (similar to 1: the CSS class is re-written by each component. This process occurs at the Constructor method.)
|
> 2. When adding a new css class (similar to 1: the CSS class is re-written by each component. This process occurs at the Constructor method.)
|
||||||
|
|
||||||
|
## Accessing code used in Pull Requests
|
||||||
|
Visit the page for the pull request and look at the end of the url for the PR number
|
||||||
|
<pre>
|
||||||
|
https://github.com/BoostIO/Boostnote/pull/2794
|
||||||
|
</pre>
|
||||||
|
In the following, replace \<PR> with that number (no brackets).
|
||||||
|
For the above url, you would replace \<PR> with 2794
|
||||||
|
|
||||||
|
_If you do not have a local copy of the master branch yet_
|
||||||
|
```
|
||||||
|
git clone https://github.com/BoostIO/Boostnote.git
|
||||||
|
cd Boostnote
|
||||||
|
git fetch origin pull/<PR>/head:<PR>
|
||||||
|
git checkout <PR>
|
||||||
|
```
|
||||||
|
|
||||||
|
_If you already have the master branch_
|
||||||
|
```
|
||||||
|
git fetch origin pull/<PR>/head:<PR>
|
||||||
|
git checkout <PR>
|
||||||
|
```
|
||||||
|
|
||||||
|
_To compile and run the code_
|
||||||
|
```
|
||||||
|
yarn
|
||||||
|
yarn run dev
|
||||||
|
```
|
||||||
|
|
||||||
## Deploy
|
## Deploy
|
||||||
|
|
||||||
We use Grunt to automate deployment.
|
We use Grunt to automate deployment.
|
||||||
|
|||||||
@@ -383,6 +383,27 @@ const help = {
|
|||||||
{
|
{
|
||||||
label: 'Changelog',
|
label: 'Changelog',
|
||||||
click () { shell.openExternal('https://github.com/BoostIO/boost-releases') }
|
click () { shell.openExternal('https://github.com/BoostIO/boost-releases') }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Cheatsheets',
|
||||||
|
submenu: [
|
||||||
|
{
|
||||||
|
label: 'Markdown',
|
||||||
|
click () { shell.openExternal('https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet') }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Latex',
|
||||||
|
click () { shell.openExternal('https://katex.org/docs/supported.html') }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'HTML',
|
||||||
|
click () { shell.openExternal('https://htmlcheatsheet.com/') }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Boostnote',
|
||||||
|
click () { shell.openExternal('https://github.com/TobseF/boostnote-markdown-cheatsheet/blob/master/BOOSTNOTE_MARKDOWN_CHEAT_SHEET.md') }
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -41,7 +41,7 @@ Issues on Boostnote can be funded by anyone and the money will be distributed to
|
|||||||
* Website: https://boostnote.io
|
* Website: https://boostnote.io
|
||||||
* Newsletters: https://boostnote.io/#subscribe
|
* Newsletters: https://boostnote.io/#subscribe
|
||||||
* [Development](https://github.com/BoostIO/Boostnote/blob/master/docs/build.md): Development configurations for Boostnote.
|
* [Development](https://github.com/BoostIO/Boostnote/blob/master/docs/build.md): Development configurations for Boostnote.
|
||||||
* Copyright (C) 2016 - 2018 BoostIO, Inc.
|
* Copyright (C) 2016 - 2019 BoostIO, Inc.
|
||||||
|
|
||||||
|
|
||||||
#### License
|
#### License
|
||||||
|
|||||||
Reference in New Issue
Block a user