Skip to content
This repository was archived by the owner on Nov 15, 2019. It is now read-only.

Commit bde4943

Browse files
Initial release
1 parent 08ffd89 commit bde4943

34 files changed

+3366
-962
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,6 @@ node_modules
3737

3838
# Project specific paths ignore
3939
dist
40+
releases
4041
typings
4142
.awcache

.todo

Lines changed: 8 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,11 @@
11

2-
✔ setup codemirror @done (7/30/2017, 3:54:41 PM)
3-
✔ line wrapping @done (7/30/2017, 2:00:14 PM)
4-
✔ search @done (7/30/2017, 7:13:19 AM)
5-
✔ todo capabilities (todoToggleCheckbox todoToggleCheckmark) @done (7/30/2017, 2:50:56 PM)
6-
✔ alt-click for multiple cursor @done (7/30/2017, 3:50:24 PM)
7-
✔ alt-c for todo -> cancel @done (7/30/2017, 3:54:34 PM)
8-
✔ last line not shown @done (7/30/2017, 3:00:42 PM)
9-
✔ fix multiline selection @done (7/30/2017, 6:19:13 AM)
10-
✔ fix cursor overflow @done (7/30/2017, 6:19:13 AM)
11-
✔ fix firacode support @done (7/30/2017, 7:22:01 AM) [~]
12-
✔ proper titlebar @done (8/1/2017, 7:24:35 AM)
13-
✔ close button @done (8/1/2017, 5:45:59 AM)
14-
✔ hide if the app is not focused @done (8/1/2017, 6:23:05 AM)
15-
✔ switch note @done (8/1/2017, 7:24:34 AM)
16-
☐ Custom text dialog
17-
☐ store CodeMirror instance
18-
☐ call `openDialog` on it
19-
☐ handle enter/esc events
20-
☐ Add a class when `dialog` is open
21-
☐ move codemirror down a bit
22-
☐ proper menu
23-
✔ floating @done (8/2/2017, 7:38:43 PM)
24-
✔ check for updated @done (8/2/2017, 7:12:08 PM)
25-
✔ issues etc. @done (8/2/2017, 7:12:19 PM)
26-
☐ file actions
27-
☐ New Note
28-
☐ Rename Note
29-
✔ Delete Note @done (8/2/2017, 10:54:25 PM)
30-
✔ proper styling @done (8/3/2017, 12:27:37 AM)
31-
✔ titlebar @done (8/1/2017, 5:39:59 AM)
32-
✔ about page @done (8/1/2017, 8:00:06 AM)
33-
✔ better colors etc. @done (8/1/2017, 5:40:00 AM)
34-
☐ package app
35-
☐ icon
36-
☐ write readme
37-
☐ make a relase
38-
☐ publish
39-
☐ Automatic `Check for Updates...`
402
☐ Make a boilerplate out of this project
3+
☐ Add automatic `Check for Updates...`
414
☐ Add `Print...` support
5+
☐ Add Links support:
6+
☐ underlined
7+
☐ cmd+click to go there
8+
☐ Mark (Bold, Italic, Strikethrough etc...)
9+
☐ http://codemirror.net/doc/manual.html#markText
10+
☐ https://gist.github.com/tovic/f1f21602e6b682ad78d6140f505e14f3
11+
☐ https://groups.google.com/forum/#!topic/codemirror/qWu1ZUiBUWM

README.md

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
2+
# Noty
3+
4+
<p align="center">
5+
<img src="resources/icon/icon-128x128.png" alt="Logo">
6+
</p>
7+
8+
Autosaving sticky note with support for multiple notes, find/replace, programmers shortcuts and more.
9+
10+
## Features
11+
12+
- Supports multiple notes without needing multiple windows
13+
- Auto-saves your notes
14+
- To-Do functionalities built-in
15+
- Multiple cursors
16+
- Find and Replace
17+
- Programmers shortcuts
18+
- Uses the [FiraCode](https://github.com/tonsky/FiraCode) font
19+
20+
## Shortcuts
21+
22+
- <kbd>Tab</kbd> - Indent current line
23+
- <kbd>Shift+Tab</kbd> - Outdent current line
24+
- <kbd>Cmd+F</kbd> - Find
25+
- <kbd>Cmd+G</kbd> - Find next
26+
- <kbd>Cmd+Shift+G</kbd> - Find previous
27+
- <kbd>Cmd+H</kbd> - Replace
28+
- <kbd>Cmd+Shift+H</kbd> - Replace all
29+
- <kbd>Ctrl+Cmd+Up</kbd> - Move current line up
30+
- <kbd>Ctrl+Cmd+Down</kbd> - Move current line down
31+
- <kbd>Alt+Click</kbd> - Add a new cursor
32+
- <kbd>Cmd+Enter</kbd> - Toggle a todo checkbox
33+
- <kbd>Alt+D</kbd> - Toggle a todo check mark
34+
- <kbd>Alt+C</kbd> - Toggle a todo cancel mark
35+
- <kbd>Cmd+1/9</kbd> - Select the 1st/9th note
36+
- <kbd>Alt+Cmd+Left</kbd> - Select the previous note
37+
- <kbd>Alt+Cmd+Left</kbd> - Select the next note
38+
39+
## Contributing
40+
41+
If you have an idea, or found an problem, please open an [issue](https://github.com/fabiospampinato/noty/issues) about it.
42+
43+
If you want to make a pull request, or fork the app, you should:
44+
45+
```bash
46+
git clone https://github.com/fabiospampinato/noty.git
47+
npm install
48+
npm run dev
49+
```
50+
51+
## Demo
52+
53+
Switching note:
54+
55+
![Switching note](resources/demo/switching.gif)
56+
57+
New note and rename:
58+
59+
![New note and rename](resources/demo/creation-renaming.gif)
60+
61+
## License
62+
63+
MIT © Fabio Spampinato
-43.3 KB
Binary file not shown.

assets/images/icon/icon.icns

-109 KB
Binary file not shown.

assets/images/icon/icon.ico

-361 KB
Binary file not shown.

assets/images/icon/icon.png

-31.7 KB
Binary file not shown.

0 commit comments

Comments
 (0)