Skip to content

Commit f8944eb

Browse files
authored
Merge branch 'master' into mojave-dark-mode
2 parents b004247 + 3634194 commit f8944eb

File tree

167 files changed

+225517
-1636
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

167 files changed

+225517
-1636
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# EditorConfig is awesome: http://EditorConfig.org
1+
# EditorConfig is awesome: https://EditorConfig.org
22

33
# top-most EditorConfig file
44
root = true

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
language: node_js
22
node_js:
3-
- 7
3+
- 8
44
script:
55
- npm run lint && npm run test
66
- yarn jest
7-
- 'if [[ ${TRAVIS_PULL_REQUEST_BRANCH:-$TRAVIS_BRANCH} = "master" ]]; then npm install -g grunt npm@5.2 && grunt pre-build; fi'
7+
- 'if [[ ${TRAVIS_PULL_REQUEST_BRANCH:-$TRAVIS_BRANCH} = "master" ]]; then npm install -g grunt npm@6.4 && grunt pre-build; fi'
88
after_success:
99
- openssl aes-256-cbc -K $encrypted_440d7f9a3c38_key -iv $encrypted_440d7f9a3c38_iv
1010
-in .snapcraft/travis_snapcraft.cfg -out .snapcraft/snapcraft.cfg -d

.vscode/launch.json

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
8+
{
9+
"type": "node",
10+
"request": "launch",
11+
"name": "BoostNote Main",
12+
"protocol": "inspector",
13+
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron",
14+
"runtimeArgs": [
15+
"--remote-debugging-port=9223",
16+
"--hot",
17+
"${workspaceFolder}/index.js"
18+
],
19+
"windows": {
20+
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron.cmd"
21+
}
22+
},
23+
{
24+
"type": "chrome",
25+
"request": "attach",
26+
"name": "BoostNote Renderer",
27+
"port": 9223,
28+
"webRoot": "${workspaceFolder}",
29+
"sourceMapPathOverrides": {
30+
"webpack:///./~/*": "${webRoot}/node_modules/*",
31+
"webpack:///*": "${webRoot}/*"
32+
}
33+
}
34+
],
35+
"compounds": [
36+
{
37+
"name": "BostNote All",
38+
"configurations": ["BoostNote Main", "BoostNote Renderer"]
39+
}
40+
]
41+
}

.vscode/tasks.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
// See https://go.microsoft.com/fwlink/?LinkId=733558
3+
// for the documentation about the tasks.json format
4+
"version": "2.0.0",
5+
"tasks": [
6+
{
7+
"label": "Build Boostnote",
8+
"group": "build",
9+
"type": "npm",
10+
"script": "watch",
11+
"isBackground": true,
12+
"presentation": {
13+
"reveal": "always",
14+
},
15+
"problemMatcher": {
16+
"pattern":[
17+
{
18+
"regexp": "^([^\\\\s].*)\\\\((\\\\d+,\\\\d+)\\\\):\\\\s*(.*)$",
19+
"file": 1,
20+
"location": 2,
21+
"message": 3
22+
}
23+
]
24+
}
25+
}
26+
]
27+
}

Backers.md

Lines changed: 0 additions & 72 deletions
This file was deleted.

FAQ.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Frequently Asked Questions
2+
3+
4+
<details><summary>Allowing dangerous HTML tags</summary>
5+
6+
Sometimes it is useful to allow dangerous HTML tags to add interactivity to your notebook. One of the example is to use details/summary as a way to expand/collaps your todo-list.
7+
8+
* How to enable:
9+
* Go to **Preferences****Interface****Sanitization****Allow dangerous html tags**
10+
* Example note: Multiple todo-list
11+
* Create new notes
12+
* Paste the below code, and you'll see that you can expand/collaps the todo-list, and you can have multiple todo-list in your note.
13+
14+
```html
15+
<details><summary>What I want to do</summary>
16+
17+
- [x] Create an awesome feature X
18+
- [ ] Do my homework
19+
20+
</details>
21+
```
22+
23+
</details>
24+
25+
## Other questions
26+
27+
You can ask [here][ISSUES]
28+
29+
[ISSUES]: https://github.com/BoostIO/Boostnote/issues

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ GPL-3.0
22

33
Boostnote - an open source note-taking app made for programmers just like you.
44

5-
Copyright (C) 2017 - 2018 BoostIO
5+
Copyright (C) 2017 - 2019 BoostIO
66

77
This program is free software: you can redistribute it and/or modify
88
it under the terms of the GNU General Public License as published by

PULL_REQUEST_TEMPLATE.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<!--
2+
Before submitting this PR, please make sure that:
3+
- You have read and understand the contributing.md
4+
- You have checked docs/code_style.md for information on code style
5+
-->
6+
## Description
7+
<!--
8+
Tell us what your PR does.
9+
Please attach a screenshot/ video/gif image describing your PR if possible.
10+
-->
11+
12+
## Issue fixed
13+
<!--
14+
Please list out all issue fixed with this PR here.
15+
-->
16+
17+
<!--
18+
Please make sure you fill in these checkboxes,
19+
your PR will be reviewed faster if we know exactly what it does.
20+
21+
Change :white_circle: to :radio_button: in all the options that apply
22+
-->
23+
## Type of changes
24+
25+
- :white_circle: Bug fix (Change that fixed an issue)
26+
- :white_circle: Breaking change (Change that can cause existing functionality to change)
27+
- :white_circle: Improvement (Change that improves the code. Maybe performance or development improvement)
28+
- :white_circle: Feature (Change that adds new functionality)
29+
- :white_circle: Documentation change (Change that modifies documentation. Maybe typo fixes)
30+
31+
## Checklist:
32+
33+
- :white_circle: My code follows [the project code style](docs/code_style.md)
34+
- :white_circle: I have written test for my code and it has been tested
35+
- :white_circle: All existing tests have been passed
36+
- :white_circle: I have attached a screenshot/video to visualize my change if possible

0 commit comments

Comments
 (0)