├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── app.html ├── app.js ├── collaborators.md ├── connect.js ├── css ├── screencat.css └── tachyons.css ├── electron.js ├── fonts ├── icomoon.eot ├── icomoon.svg ├── icomoon.ttf └── icomoon.woff ├── get-user-media.js ├── img ├── Icon.icns ├── Icon.png ├── Icon@2x.png ├── IconRed.icns ├── IconRed.png ├── IconRed@2x.png ├── demo.png ├── join.png ├── remote-control.gif ├── remote.png ├── screenshot.png └── share.png ├── index.html ├── package.json ├── peer.js ├── remote.html ├── remote.js ├── robot.js ├── screen.html ├── screen.js ├── stylesheets ├── css │ ├── screencat.css │ └── tachyons.css └── sass │ └── screencat.scss └── ui.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/screencat/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/screencat/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/screencat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/screencat/HEAD/README.md -------------------------------------------------------------------------------- /app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/screencat/HEAD/app.html -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/screencat/HEAD/app.js -------------------------------------------------------------------------------- /collaborators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/screencat/HEAD/collaborators.md -------------------------------------------------------------------------------- /connect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/screencat/HEAD/connect.js -------------------------------------------------------------------------------- /css/screencat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/screencat/HEAD/css/screencat.css -------------------------------------------------------------------------------- /css/tachyons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/screencat/HEAD/css/tachyons.css -------------------------------------------------------------------------------- /electron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/screencat/HEAD/electron.js -------------------------------------------------------------------------------- /fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/screencat/HEAD/fonts/icomoon.eot -------------------------------------------------------------------------------- /fonts/icomoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/screencat/HEAD/fonts/icomoon.svg -------------------------------------------------------------------------------- /fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/screencat/HEAD/fonts/icomoon.ttf -------------------------------------------------------------------------------- /fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/screencat/HEAD/fonts/icomoon.woff -------------------------------------------------------------------------------- /get-user-media.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/screencat/HEAD/get-user-media.js -------------------------------------------------------------------------------- /img/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/screencat/HEAD/img/Icon.icns -------------------------------------------------------------------------------- /img/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/screencat/HEAD/img/Icon.png -------------------------------------------------------------------------------- /img/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/screencat/HEAD/img/Icon@2x.png -------------------------------------------------------------------------------- /img/IconRed.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/screencat/HEAD/img/IconRed.icns -------------------------------------------------------------------------------- /img/IconRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/screencat/HEAD/img/IconRed.png -------------------------------------------------------------------------------- /img/IconRed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/screencat/HEAD/img/IconRed@2x.png -------------------------------------------------------------------------------- /img/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/screencat/HEAD/img/demo.png -------------------------------------------------------------------------------- /img/join.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/screencat/HEAD/img/join.png -------------------------------------------------------------------------------- /img/remote-control.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/screencat/HEAD/img/remote-control.gif -------------------------------------------------------------------------------- /img/remote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/screencat/HEAD/img/remote.png -------------------------------------------------------------------------------- /img/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/screencat/HEAD/img/screenshot.png -------------------------------------------------------------------------------- /img/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/screencat/HEAD/img/share.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/screencat/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/screencat/HEAD/package.json -------------------------------------------------------------------------------- /peer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/screencat/HEAD/peer.js -------------------------------------------------------------------------------- /remote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/screencat/HEAD/remote.html -------------------------------------------------------------------------------- /remote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/screencat/HEAD/remote.js -------------------------------------------------------------------------------- /robot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/screencat/HEAD/robot.js -------------------------------------------------------------------------------- /screen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/screencat/HEAD/screen.html -------------------------------------------------------------------------------- /screen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/screencat/HEAD/screen.js -------------------------------------------------------------------------------- /stylesheets/css/screencat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/screencat/HEAD/stylesheets/css/screencat.css -------------------------------------------------------------------------------- /stylesheets/css/tachyons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/screencat/HEAD/stylesheets/css/tachyons.css -------------------------------------------------------------------------------- /stylesheets/sass/screencat.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/screencat/HEAD/stylesheets/sass/screencat.scss -------------------------------------------------------------------------------- /ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/screencat/HEAD/ui.js --------------------------------------------------------------------------------