├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── LICENSE.md ├── README.md ├── chinese_readme └── README.md ├── index.js ├── package.json ├── src ├── .babelrc ├── config.js ├── constants.js ├── main │ ├── dialog.js │ ├── index.js │ ├── ipc.js │ ├── log.js │ ├── menu.js │ ├── set_db.js │ ├── shell.js │ ├── tray.js │ └── windows │ │ ├── index.js │ │ ├── main.js │ │ └── worker.js ├── positioner.js ├── render_factory.js ├── renderer │ ├── actions.js │ ├── controllers │ │ ├── books_controller.js │ │ └── files_controller.js │ ├── dispatch_handlers.js │ ├── html_to_pdf.js │ ├── main.js │ ├── main_util.js │ ├── reducers │ │ ├── active_book.js │ │ ├── active_file.js │ │ ├── books.js │ │ ├── editor_state.js │ │ ├── files.js │ │ ├── global_book.js │ │ ├── histories.js │ │ └── index.js │ ├── setup_ipc.js │ ├── single_event.js │ ├── store.js │ ├── tray.js │ ├── views │ │ ├── anote_editor.js │ │ ├── anote_preview.js │ │ ├── app.js │ │ ├── book_form.js │ │ ├── books_container.js │ │ ├── books_list.js │ │ ├── confirm_dialog.js │ │ ├── empty_file.js │ │ ├── file_form.js │ │ ├── files_container.js │ │ ├── files_list.js │ │ ├── layout.js │ │ ├── list_menu.js │ │ ├── note_editor.js │ │ ├── note_preview.js │ │ ├── note_title.js │ │ ├── spinner.js │ │ ├── test_container.js │ │ └── tray_app.js │ ├── worker.js │ └── worker_util.js └── util.js ├── static ├── css │ ├── base16-light.css │ ├── codemirror-dialog.css │ ├── codemirror.css │ ├── github-markdown.css │ ├── main.css │ ├── matchesonscrollbar.css │ └── reset.css ├── fonts │ ├── FontAwesome.otf │ ├── editormd-logo.eot │ ├── editormd-logo.svg │ ├── editormd-logo.ttf │ ├── editormd-logo.woff │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 ├── html_to_pdf.html ├── images │ ├── IconTemplate.png │ └── anote.icns ├── main.html ├── test.html ├── tray.html └── worker.html └── tmp └── tmp.jpeg /.eslintignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "airbnb-base" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/README.md -------------------------------------------------------------------------------- /chinese_readme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/chinese_readme/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | require('./build/main'); -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/package.json -------------------------------------------------------------------------------- /src/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/.babelrc -------------------------------------------------------------------------------- /src/config.js: -------------------------------------------------------------------------------- 1 | export default { 2 | dev: true 3 | } 4 | -------------------------------------------------------------------------------- /src/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/constants.js -------------------------------------------------------------------------------- /src/main/dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/main/dialog.js -------------------------------------------------------------------------------- /src/main/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/main/index.js -------------------------------------------------------------------------------- /src/main/ipc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/main/ipc.js -------------------------------------------------------------------------------- /src/main/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/main/log.js -------------------------------------------------------------------------------- /src/main/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/main/menu.js -------------------------------------------------------------------------------- /src/main/set_db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/main/set_db.js -------------------------------------------------------------------------------- /src/main/shell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/main/shell.js -------------------------------------------------------------------------------- /src/main/tray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/main/tray.js -------------------------------------------------------------------------------- /src/main/windows/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/main/windows/index.js -------------------------------------------------------------------------------- /src/main/windows/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/main/windows/main.js -------------------------------------------------------------------------------- /src/main/windows/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/main/windows/worker.js -------------------------------------------------------------------------------- /src/positioner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/positioner.js -------------------------------------------------------------------------------- /src/render_factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/render_factory.js -------------------------------------------------------------------------------- /src/renderer/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/renderer/actions.js -------------------------------------------------------------------------------- /src/renderer/controllers/books_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/renderer/controllers/books_controller.js -------------------------------------------------------------------------------- /src/renderer/controllers/files_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/renderer/controllers/files_controller.js -------------------------------------------------------------------------------- /src/renderer/dispatch_handlers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/renderer/dispatch_handlers.js -------------------------------------------------------------------------------- /src/renderer/html_to_pdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/renderer/html_to_pdf.js -------------------------------------------------------------------------------- /src/renderer/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/renderer/main.js -------------------------------------------------------------------------------- /src/renderer/main_util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/renderer/main_util.js -------------------------------------------------------------------------------- /src/renderer/reducers/active_book.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/renderer/reducers/active_book.js -------------------------------------------------------------------------------- /src/renderer/reducers/active_file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/renderer/reducers/active_file.js -------------------------------------------------------------------------------- /src/renderer/reducers/books.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/renderer/reducers/books.js -------------------------------------------------------------------------------- /src/renderer/reducers/editor_state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/renderer/reducers/editor_state.js -------------------------------------------------------------------------------- /src/renderer/reducers/files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/renderer/reducers/files.js -------------------------------------------------------------------------------- /src/renderer/reducers/global_book.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/renderer/reducers/global_book.js -------------------------------------------------------------------------------- /src/renderer/reducers/histories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/renderer/reducers/histories.js -------------------------------------------------------------------------------- /src/renderer/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/renderer/reducers/index.js -------------------------------------------------------------------------------- /src/renderer/setup_ipc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/renderer/setup_ipc.js -------------------------------------------------------------------------------- /src/renderer/single_event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/renderer/single_event.js -------------------------------------------------------------------------------- /src/renderer/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/renderer/store.js -------------------------------------------------------------------------------- /src/renderer/tray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/renderer/tray.js -------------------------------------------------------------------------------- /src/renderer/views/anote_editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/renderer/views/anote_editor.js -------------------------------------------------------------------------------- /src/renderer/views/anote_preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/renderer/views/anote_preview.js -------------------------------------------------------------------------------- /src/renderer/views/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/renderer/views/app.js -------------------------------------------------------------------------------- /src/renderer/views/book_form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/renderer/views/book_form.js -------------------------------------------------------------------------------- /src/renderer/views/books_container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/renderer/views/books_container.js -------------------------------------------------------------------------------- /src/renderer/views/books_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/renderer/views/books_list.js -------------------------------------------------------------------------------- /src/renderer/views/confirm_dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/renderer/views/confirm_dialog.js -------------------------------------------------------------------------------- /src/renderer/views/empty_file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/renderer/views/empty_file.js -------------------------------------------------------------------------------- /src/renderer/views/file_form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/renderer/views/file_form.js -------------------------------------------------------------------------------- /src/renderer/views/files_container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/renderer/views/files_container.js -------------------------------------------------------------------------------- /src/renderer/views/files_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/renderer/views/files_list.js -------------------------------------------------------------------------------- /src/renderer/views/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/renderer/views/layout.js -------------------------------------------------------------------------------- /src/renderer/views/list_menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/renderer/views/list_menu.js -------------------------------------------------------------------------------- /src/renderer/views/note_editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/renderer/views/note_editor.js -------------------------------------------------------------------------------- /src/renderer/views/note_preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/renderer/views/note_preview.js -------------------------------------------------------------------------------- /src/renderer/views/note_title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/renderer/views/note_title.js -------------------------------------------------------------------------------- /src/renderer/views/spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/renderer/views/spinner.js -------------------------------------------------------------------------------- /src/renderer/views/test_container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/renderer/views/test_container.js -------------------------------------------------------------------------------- /src/renderer/views/tray_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/renderer/views/tray_app.js -------------------------------------------------------------------------------- /src/renderer/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/renderer/worker.js -------------------------------------------------------------------------------- /src/renderer/worker_util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/renderer/worker_util.js -------------------------------------------------------------------------------- /src/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/src/util.js -------------------------------------------------------------------------------- /static/css/base16-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/static/css/base16-light.css -------------------------------------------------------------------------------- /static/css/codemirror-dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/static/css/codemirror-dialog.css -------------------------------------------------------------------------------- /static/css/codemirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/static/css/codemirror.css -------------------------------------------------------------------------------- /static/css/github-markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/static/css/github-markdown.css -------------------------------------------------------------------------------- /static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/static/css/main.css -------------------------------------------------------------------------------- /static/css/matchesonscrollbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/static/css/matchesonscrollbar.css -------------------------------------------------------------------------------- /static/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/static/css/reset.css -------------------------------------------------------------------------------- /static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /static/fonts/editormd-logo.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/static/fonts/editormd-logo.eot -------------------------------------------------------------------------------- /static/fonts/editormd-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/static/fonts/editormd-logo.svg -------------------------------------------------------------------------------- /static/fonts/editormd-logo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/static/fonts/editormd-logo.ttf -------------------------------------------------------------------------------- /static/fonts/editormd-logo.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/static/fonts/editormd-logo.woff -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /static/html_to_pdf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/static/html_to_pdf.html -------------------------------------------------------------------------------- /static/images/IconTemplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/static/images/IconTemplate.png -------------------------------------------------------------------------------- /static/images/anote.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/static/images/anote.icns -------------------------------------------------------------------------------- /static/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/static/main.html -------------------------------------------------------------------------------- /static/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/static/test.html -------------------------------------------------------------------------------- /static/tray.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/static/tray.html -------------------------------------------------------------------------------- /static/worker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/static/worker.html -------------------------------------------------------------------------------- /tmp/tmp.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherNote/anote/HEAD/tmp/tmp.jpeg --------------------------------------------------------------------------------