├── .babelrc ├── .electron-vue ├── build.js ├── dev-client.js ├── dev-runner.js ├── webpack.main.config.js ├── webpack.renderer.config.js └── webpack.web.config.js ├── .eslintignore ├── .eslintrc.json ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ ├── other.yml │ ├── question.yml │ └── rfc.yml └── PULL-REQUEST-TEMPLATE.md ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── appveyor.yml ├── casparcg_launcher_autorestart.bat ├── dist ├── electron │ └── .gitkeep └── web │ └── .gitkeep ├── doc ├── log.png ├── settings.png └── status.png ├── package.json ├── src ├── index.ejs ├── main │ ├── casparcg.js │ ├── http.js │ ├── index.dev.js │ ├── index.js │ ├── process.js │ ├── respawn │ │ ├── LICENSE │ │ └── index.js │ ├── serveIndex │ │ └── index.js │ └── util.js └── renderer │ ├── App.vue │ ├── assets │ └── .gitkeep │ ├── components │ ├── ProcessControls.vue │ ├── ProcessTab.vue │ ├── Settings.vue │ └── Status.vue │ ├── main.js │ ├── router │ └── index.js │ └── store │ ├── index.js │ └── modules │ ├── Process.js │ └── index.js ├── static ├── .gitkeep └── directory.html └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sofie-Automation/sofie-casparcg-launcher/HEAD/.babelrc -------------------------------------------------------------------------------- /.electron-vue/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sofie-Automation/sofie-casparcg-launcher/HEAD/.electron-vue/build.js -------------------------------------------------------------------------------- /.electron-vue/dev-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sofie-Automation/sofie-casparcg-launcher/HEAD/.electron-vue/dev-client.js -------------------------------------------------------------------------------- /.electron-vue/dev-runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sofie-Automation/sofie-casparcg-launcher/HEAD/.electron-vue/dev-runner.js -------------------------------------------------------------------------------- /.electron-vue/webpack.main.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sofie-Automation/sofie-casparcg-launcher/HEAD/.electron-vue/webpack.main.config.js -------------------------------------------------------------------------------- /.electron-vue/webpack.renderer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sofie-Automation/sofie-casparcg-launcher/HEAD/.electron-vue/webpack.renderer.config.js -------------------------------------------------------------------------------- /.electron-vue/webpack.web.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sofie-Automation/sofie-casparcg-launcher/HEAD/.electron-vue/webpack.web.config.js -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sofie-Automation/sofie-casparcg-launcher/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sofie-Automation/sofie-casparcg-launcher/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sofie-Automation/sofie-casparcg-launcher/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sofie-Automation/sofie-casparcg-launcher/HEAD/.github/ISSUE_TEMPLATE/other.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sofie-Automation/sofie-casparcg-launcher/HEAD/.github/ISSUE_TEMPLATE/question.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/rfc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sofie-Automation/sofie-casparcg-launcher/HEAD/.github/ISSUE_TEMPLATE/rfc.yml -------------------------------------------------------------------------------- /.github/PULL-REQUEST-TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sofie-Automation/sofie-casparcg-launcher/HEAD/.github/PULL-REQUEST-TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sofie-Automation/sofie-casparcg-launcher/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | package.json -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sofie-Automation/sofie-casparcg-launcher/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sofie-Automation/sofie-casparcg-launcher/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sofie-Automation/sofie-casparcg-launcher/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sofie-Automation/sofie-casparcg-launcher/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sofie-Automation/sofie-casparcg-launcher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sofie-Automation/sofie-casparcg-launcher/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sofie-Automation/sofie-casparcg-launcher/HEAD/appveyor.yml -------------------------------------------------------------------------------- /casparcg_launcher_autorestart.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sofie-Automation/sofie-casparcg-launcher/HEAD/casparcg_launcher_autorestart.bat -------------------------------------------------------------------------------- /dist/electron/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/web/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sofie-Automation/sofie-casparcg-launcher/HEAD/doc/log.png -------------------------------------------------------------------------------- /doc/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sofie-Automation/sofie-casparcg-launcher/HEAD/doc/settings.png -------------------------------------------------------------------------------- /doc/status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sofie-Automation/sofie-casparcg-launcher/HEAD/doc/status.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sofie-Automation/sofie-casparcg-launcher/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sofie-Automation/sofie-casparcg-launcher/HEAD/src/index.ejs -------------------------------------------------------------------------------- /src/main/casparcg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sofie-Automation/sofie-casparcg-launcher/HEAD/src/main/casparcg.js -------------------------------------------------------------------------------- /src/main/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sofie-Automation/sofie-casparcg-launcher/HEAD/src/main/http.js -------------------------------------------------------------------------------- /src/main/index.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sofie-Automation/sofie-casparcg-launcher/HEAD/src/main/index.dev.js -------------------------------------------------------------------------------- /src/main/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sofie-Automation/sofie-casparcg-launcher/HEAD/src/main/index.js -------------------------------------------------------------------------------- /src/main/process.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sofie-Automation/sofie-casparcg-launcher/HEAD/src/main/process.js -------------------------------------------------------------------------------- /src/main/respawn/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sofie-Automation/sofie-casparcg-launcher/HEAD/src/main/respawn/LICENSE -------------------------------------------------------------------------------- /src/main/respawn/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sofie-Automation/sofie-casparcg-launcher/HEAD/src/main/respawn/index.js -------------------------------------------------------------------------------- /src/main/serveIndex/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sofie-Automation/sofie-casparcg-launcher/HEAD/src/main/serveIndex/index.js -------------------------------------------------------------------------------- /src/main/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sofie-Automation/sofie-casparcg-launcher/HEAD/src/main/util.js -------------------------------------------------------------------------------- /src/renderer/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sofie-Automation/sofie-casparcg-launcher/HEAD/src/renderer/App.vue -------------------------------------------------------------------------------- /src/renderer/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/renderer/components/ProcessControls.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sofie-Automation/sofie-casparcg-launcher/HEAD/src/renderer/components/ProcessControls.vue -------------------------------------------------------------------------------- /src/renderer/components/ProcessTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sofie-Automation/sofie-casparcg-launcher/HEAD/src/renderer/components/ProcessTab.vue -------------------------------------------------------------------------------- /src/renderer/components/Settings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sofie-Automation/sofie-casparcg-launcher/HEAD/src/renderer/components/Settings.vue -------------------------------------------------------------------------------- /src/renderer/components/Status.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sofie-Automation/sofie-casparcg-launcher/HEAD/src/renderer/components/Status.vue -------------------------------------------------------------------------------- /src/renderer/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sofie-Automation/sofie-casparcg-launcher/HEAD/src/renderer/main.js -------------------------------------------------------------------------------- /src/renderer/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sofie-Automation/sofie-casparcg-launcher/HEAD/src/renderer/router/index.js -------------------------------------------------------------------------------- /src/renderer/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sofie-Automation/sofie-casparcg-launcher/HEAD/src/renderer/store/index.js -------------------------------------------------------------------------------- /src/renderer/store/modules/Process.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sofie-Automation/sofie-casparcg-launcher/HEAD/src/renderer/store/modules/Process.js -------------------------------------------------------------------------------- /src/renderer/store/modules/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sofie-Automation/sofie-casparcg-launcher/HEAD/src/renderer/store/modules/index.js -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/directory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sofie-Automation/sofie-casparcg-launcher/HEAD/static/directory.html -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sofie-Automation/sofie-casparcg-launcher/HEAD/yarn.lock --------------------------------------------------------------------------------