├── .editorconfig ├── .gitignore ├── README.md ├── app ├── index.html ├── index.js ├── menu.js └── package.json ├── build ├── icon.icns ├── icon.ico └── icon.png ├── package.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = space 5 | indent_size = 2 6 | end_of_line = lf 7 | charset = utf-8 8 | trim_trailing_whitespace = true 9 | insert_final_newline = true 10 | 11 | [*.md] 12 | trim_trailing_whitespace = false -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | .DS_Store 4 | dist/ 5 | app/yarn.lock 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Inoreader App 2 | 3 | A electron app for [inoreader](https://www.inoreader.com/). 4 | 5 | ## Icon 6 |  7 | 8 | Disigned by [Double-J](http://www.doublejdesign.co.uk/). 9 | 10 | License CC Attribution 4.0. 11 | 12 | ## Screenshot 13 | 14 |  15 |  16 | 17 | ## Download 18 | 19 | You can download the latest release [here](https://github.com/codefalling/inoreader-app/releases). 20 | 21 | ## Development 22 | 23 | ```bash 24 | $ npm install 25 | $ npm run app 26 | ``` 27 | 28 | ## Distribute 29 | 30 | ```bash 31 | $ npm run dist:mac 32 | $ npm run dist:linux 33 | $ npm run dist:win 34 | ``` 35 | 36 | -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 |