├── .browserslistrc ├── .env.example ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── FUNDING.yml ├── LICENSE ├── README.md ├── electron-builder.json ├── package.json ├── public ├── favicon.ico └── index.html ├── readme_assets ├── overview_010.png └── overview_030.png ├── src ├── App.vue ├── AppBar.vue ├── PreviewRow.vue ├── ProgramRow.vue ├── TransitionButtons.vue ├── assets │ ├── logo.png │ └── logo.svg ├── background.ts ├── components │ ├── HelloWorld.vue │ └── SwitcherButton.vue ├── main.ts ├── plugins │ └── vuetify.ts ├── shims-tsx.d.ts ├── shims-vue.d.ts ├── store │ ├── actions.ts │ ├── index.ts │ ├── mutations.ts │ └── state.ts └── utility.ts ├── tsconfig.json ├── vue.config.js └── yarn.lock /.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensstigaard/simple-vmix-switcher-electron/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensstigaard/simple-vmix-switcher-electron/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensstigaard/simple-vmix-switcher-electron/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensstigaard/simple-vmix-switcher-electron/HEAD/.prettierrc -------------------------------------------------------------------------------- /FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ["https://www.paypal.me/stigaard"] 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensstigaard/simple-vmix-switcher-electron/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensstigaard/simple-vmix-switcher-electron/HEAD/README.md -------------------------------------------------------------------------------- /electron-builder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensstigaard/simple-vmix-switcher-electron/HEAD/electron-builder.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensstigaard/simple-vmix-switcher-electron/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensstigaard/simple-vmix-switcher-electron/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensstigaard/simple-vmix-switcher-electron/HEAD/public/index.html -------------------------------------------------------------------------------- /readme_assets/overview_010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensstigaard/simple-vmix-switcher-electron/HEAD/readme_assets/overview_010.png -------------------------------------------------------------------------------- /readme_assets/overview_030.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensstigaard/simple-vmix-switcher-electron/HEAD/readme_assets/overview_030.png -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensstigaard/simple-vmix-switcher-electron/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/AppBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensstigaard/simple-vmix-switcher-electron/HEAD/src/AppBar.vue -------------------------------------------------------------------------------- /src/PreviewRow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensstigaard/simple-vmix-switcher-electron/HEAD/src/PreviewRow.vue -------------------------------------------------------------------------------- /src/ProgramRow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensstigaard/simple-vmix-switcher-electron/HEAD/src/ProgramRow.vue -------------------------------------------------------------------------------- /src/TransitionButtons.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensstigaard/simple-vmix-switcher-electron/HEAD/src/TransitionButtons.vue -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensstigaard/simple-vmix-switcher-electron/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensstigaard/simple-vmix-switcher-electron/HEAD/src/assets/logo.svg -------------------------------------------------------------------------------- /src/background.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensstigaard/simple-vmix-switcher-electron/HEAD/src/background.ts -------------------------------------------------------------------------------- /src/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensstigaard/simple-vmix-switcher-electron/HEAD/src/components/HelloWorld.vue -------------------------------------------------------------------------------- /src/components/SwitcherButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensstigaard/simple-vmix-switcher-electron/HEAD/src/components/SwitcherButton.vue -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensstigaard/simple-vmix-switcher-electron/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/plugins/vuetify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensstigaard/simple-vmix-switcher-electron/HEAD/src/plugins/vuetify.ts -------------------------------------------------------------------------------- /src/shims-tsx.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensstigaard/simple-vmix-switcher-electron/HEAD/src/shims-tsx.d.ts -------------------------------------------------------------------------------- /src/shims-vue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensstigaard/simple-vmix-switcher-electron/HEAD/src/shims-vue.d.ts -------------------------------------------------------------------------------- /src/store/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensstigaard/simple-vmix-switcher-electron/HEAD/src/store/actions.ts -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensstigaard/simple-vmix-switcher-electron/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/store/mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensstigaard/simple-vmix-switcher-electron/HEAD/src/store/mutations.ts -------------------------------------------------------------------------------- /src/store/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensstigaard/simple-vmix-switcher-electron/HEAD/src/store/state.ts -------------------------------------------------------------------------------- /src/utility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensstigaard/simple-vmix-switcher-electron/HEAD/src/utility.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensstigaard/simple-vmix-switcher-electron/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensstigaard/simple-vmix-switcher-electron/HEAD/vue.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensstigaard/simple-vmix-switcher-electron/HEAD/yarn.lock --------------------------------------------------------------------------------