├── .gitignore ├── LICENSE ├── README.md ├── gulpfile.js ├── offline-audio-messenger.zip ├── package.json ├── public ├── CNAME ├── favicon.ico ├── index.html └── manifest.json └── src ├── App.test.js ├── Messenger.css ├── Messenger.js ├── fonts ├── NotoSans-Bold.eot ├── NotoSans-Bold.ttf ├── NotoSans-Bold.woff ├── NotoSans-Bold.woff2 ├── NotoSans-Regular.eot ├── NotoSans-Regular.ttf ├── NotoSans-Regular.woff ├── NotoSans-Regular.woff2 ├── Nunito-Light.eot ├── Nunito-Light.ttf ├── Nunito-Light.woff └── Nunito-Light.woff2 ├── index.css ├── index.js └── serviceWorker.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joohansson/offline-audio-messenger/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joohansson/offline-audio-messenger/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joohansson/offline-audio-messenger/HEAD/README.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joohansson/offline-audio-messenger/HEAD/gulpfile.js -------------------------------------------------------------------------------- /offline-audio-messenger.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joohansson/offline-audio-messenger/HEAD/offline-audio-messenger.zip -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joohansson/offline-audio-messenger/HEAD/package.json -------------------------------------------------------------------------------- /public/CNAME: -------------------------------------------------------------------------------- 1 | msg.nanos.cc 2 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joohansson/offline-audio-messenger/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joohansson/offline-audio-messenger/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joohansson/offline-audio-messenger/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joohansson/offline-audio-messenger/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/Messenger.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joohansson/offline-audio-messenger/HEAD/src/Messenger.css -------------------------------------------------------------------------------- /src/Messenger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joohansson/offline-audio-messenger/HEAD/src/Messenger.js -------------------------------------------------------------------------------- /src/fonts/NotoSans-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joohansson/offline-audio-messenger/HEAD/src/fonts/NotoSans-Bold.eot -------------------------------------------------------------------------------- /src/fonts/NotoSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joohansson/offline-audio-messenger/HEAD/src/fonts/NotoSans-Bold.ttf -------------------------------------------------------------------------------- /src/fonts/NotoSans-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joohansson/offline-audio-messenger/HEAD/src/fonts/NotoSans-Bold.woff -------------------------------------------------------------------------------- /src/fonts/NotoSans-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joohansson/offline-audio-messenger/HEAD/src/fonts/NotoSans-Bold.woff2 -------------------------------------------------------------------------------- /src/fonts/NotoSans-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joohansson/offline-audio-messenger/HEAD/src/fonts/NotoSans-Regular.eot -------------------------------------------------------------------------------- /src/fonts/NotoSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joohansson/offline-audio-messenger/HEAD/src/fonts/NotoSans-Regular.ttf -------------------------------------------------------------------------------- /src/fonts/NotoSans-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joohansson/offline-audio-messenger/HEAD/src/fonts/NotoSans-Regular.woff -------------------------------------------------------------------------------- /src/fonts/NotoSans-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joohansson/offline-audio-messenger/HEAD/src/fonts/NotoSans-Regular.woff2 -------------------------------------------------------------------------------- /src/fonts/Nunito-Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joohansson/offline-audio-messenger/HEAD/src/fonts/Nunito-Light.eot -------------------------------------------------------------------------------- /src/fonts/Nunito-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joohansson/offline-audio-messenger/HEAD/src/fonts/Nunito-Light.ttf -------------------------------------------------------------------------------- /src/fonts/Nunito-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joohansson/offline-audio-messenger/HEAD/src/fonts/Nunito-Light.woff -------------------------------------------------------------------------------- /src/fonts/Nunito-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joohansson/offline-audio-messenger/HEAD/src/fonts/Nunito-Light.woff2 -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joohansson/offline-audio-messenger/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joohansson/offline-audio-messenger/HEAD/src/index.js -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joohansson/offline-audio-messenger/HEAD/src/serviceWorker.js --------------------------------------------------------------------------------