├── .gitignore ├── LICENSE.md ├── README.md ├── index.js ├── package.json └── res ├── correo.icns ├── correo.png ├── correo256x256.png ├── icon.png ├── icon@2x.png ├── screenshot.png └── screenshot2.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitmerchant1990/correo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitmerchant1990/correo/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitmerchant1990/correo/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitmerchant1990/correo/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitmerchant1990/correo/HEAD/package.json -------------------------------------------------------------------------------- /res/correo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitmerchant1990/correo/HEAD/res/correo.icns -------------------------------------------------------------------------------- /res/correo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitmerchant1990/correo/HEAD/res/correo.png -------------------------------------------------------------------------------- /res/correo256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitmerchant1990/correo/HEAD/res/correo256x256.png -------------------------------------------------------------------------------- /res/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitmerchant1990/correo/HEAD/res/icon.png -------------------------------------------------------------------------------- /res/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitmerchant1990/correo/HEAD/res/icon@2x.png -------------------------------------------------------------------------------- /res/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitmerchant1990/correo/HEAD/res/screenshot.png -------------------------------------------------------------------------------- /res/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitmerchant1990/correo/HEAD/res/screenshot2.png --------------------------------------------------------------------------------