├── .gitignore ├── ASSETS ├── ExtraFunctions │ └── demoFunctions.js ├── csv │ └── csv-folder.md ├── excel │ └── ticker-demo │ │ └── basic-news-ticker.xlsx ├── media │ └── images │ │ ├── hd │ │ ├── BluishBlurry.png │ │ ├── black.png │ │ ├── chroma.png │ │ └── nature.png │ │ ├── logo │ │ ├── DemoLogo_Black_300x300.png │ │ ├── DemoLogo_Grey_300x300.png │ │ ├── DemoLogo_PurpleDisc.png │ │ ├── DemoLogo_Red_300x300.png │ │ ├── DemoLogo_White_300x300.png │ │ ├── DemoLogo_Yellow_300x300.png │ │ ├── blurange.png │ │ ├── demologo_blue.png │ │ ├── demologo_outline.png │ │ └── demologo_red.png │ │ └── spxgc_welcome_help.png ├── plugins │ ├── animateAllOut │ │ └── init.js │ ├── lib │ │ └── ui.js │ ├── panicButton │ │ └── init.js │ ├── plugins.md │ ├── spxLinks │ │ └── init.js │ └── welcomeOverlay │ │ ├── img │ │ └── spxgc_welcome_help.png │ │ └── init.js └── templates │ └── softpix │ └── Template_Pack_1.3.2 │ ├── BUMPER.html │ ├── INFO_LEFT.html │ ├── INFO_RIGHT.html │ ├── NAME_LEFT.html │ ├── NAME_RIGHT.html │ ├── README.md │ ├── README.pdf │ ├── TICKER_EXCEL.html │ ├── TICKER_RSS.html │ ├── TITLE_2_STEPS.html │ ├── css │ └── styles.css │ ├── fonts │ ├── Amaranth-Bold.ttf │ ├── Amaranth-BoldItalic.ttf │ ├── Amaranth-Italic.ttf │ ├── Amaranth-Regular.ttf │ ├── BarlowSemiCondensed-Black.ttf │ ├── BarlowSemiCondensed-Bold.ttf │ ├── BarlowSemiCondensed-Light.ttf │ ├── BarlowSemiCondensed-Regular.ttf │ ├── EncodeSansSemiExpanded-Black.ttf │ ├── EncodeSansSemiExpanded-Bold.ttf │ ├── EncodeSansSemiExpanded-Light.ttf │ ├── EncodeSansSemiExpanded-Regular.ttf │ ├── Epilogue-ExtraBold.ttf │ ├── Epilogue-Medium.ttf │ ├── Montserrat-Bold.ttf │ ├── Montserrat-Medium.ttf │ ├── MontserratAlternates-Black.ttf │ ├── MontserratAlternates-Bold.ttf │ ├── MontserratAlternates-Light.ttf │ ├── MontserratAlternates-Regular.ttf │ ├── NordeaSansSmall-Regular.woff2 │ ├── Oswald-Bold.ttf │ ├── Oswald-ExtraLight.ttf │ ├── Oswald-Light.ttf │ ├── Oswald-Regular.ttf │ ├── Oswald-SemiBold.ttf │ ├── Teko-Bold.ttf │ ├── Teko-Light.ttf │ ├── Teko-Medium.ttf │ ├── Teko-Regular.ttf │ ├── Teko-SemiBold.ttf │ ├── barlow.black.ttf │ ├── barlow.bold.ttf │ ├── barlow.light.ttf │ ├── barlow.medium.ttf │ ├── barlow.regular.ttf │ ├── fa-brands-400.ttf │ ├── fa-regular-400.ttf │ └── fa-solid-900.ttf │ ├── img │ ├── banklogo.png │ ├── flares │ │ ├── bluish.png │ │ ├── flare-hoop.png │ │ ├── golden.png │ │ ├── reddish.png │ │ └── whitey.png │ ├── gloss.png │ └── square-white-50.png │ ├── js │ ├── lib │ │ ├── anime.min.js │ │ ├── axios.min.js │ │ └── lottie.min.js │ └── spx_interface.js │ ├── lottie │ ├── live-dayspa.json │ ├── live-default.json │ ├── live-motorway.json │ └── live-news.json │ ├── snapshots │ └── pack1_demo_customizations.png │ └── themes │ ├── Bank.css │ ├── Default.css │ ├── Holiday.css │ ├── LiveOS.css │ ├── LiveU_Dark.css │ ├── LiveU_Light.css │ ├── Motorsport.css │ └── News.css ├── CONTRIBUTING.md ├── DATAROOT └── MyFirstProject │ ├── data │ ├── MyFirstRundown.json │ └── MySecondRundown.json │ └── profile.json ├── LICENSE.txt ├── LOG └── .gitignore ├── README.md ├── RELEASE_NOTES.md ├── SECURITY.md ├── ecosystem.config.js ├── locales ├── dutch.json ├── english.json ├── finnish.json ├── german.json ├── japanese.json ├── portuguese.json ├── simplifiedChinese.json └── swedish.json ├── package.json ├── routes ├── routes-api-v1.js ├── routes-api.js ├── routes-application.js ├── routes-casparcg.js ├── routes-osc-disabled.js ├── routes-osc.js └── routes-webplayer.js ├── screenshots ├── 00-spx-gc-principle.png ├── 00-spx-gc-principle2.png ├── 01-spx-gc-projectlist.png ├── 01-spx-loginpolicy.png ├── 02-spx-gc-rundowlist.png ├── 03-spx-gc-controller-empty-rundown.png ├── 04-spx-gc-controller-addtemplate.png ├── 05-spx-gc-controller-rundown.png ├── 06-spx-gc-controller-editor.png ├── 07-spx-gc-controller-rundown.png ├── 08-spx-gc-appconfig.png ├── 09-spx-gc-projectsettings.png ├── anatomy-of-an-item.png ├── ccgservers.png ├── helloworld.png ├── hq.gif ├── source-files.png ├── spx-gc-help-workinprogress.png ├── spx-gc-ui-anim-v1-0.gif ├── spx-zoom.png ├── streamdeck.png ├── windows-installation.png ├── yt_mockup-showreel.png └── yt_mockup.png ├── server.js ├── static ├── css │ ├── spx_accents.css │ ├── spx_colors.css │ ├── spx_filebrowser.css │ ├── spx_flex.css │ ├── spx_fonts.css │ ├── spx_forms.css │ ├── spx_layout-mini.css │ ├── spx_layout.css │ ├── spx_modal.css │ ├── spx_renderpopups.css │ ├── ticker.css │ ├── toggle.css │ ├── toggle2.css │ ├── tree.css │ ├── vanilla-js-tooltip.css │ └── vanilla-picker.csp.css ├── favicon.ico ├── fonts │ ├── EncodeSansSemiExpanded-Black.ttf │ ├── EncodeSansSemiExpanded-Bold.ttf │ ├── EncodeSansSemiExpanded-Light.ttf │ ├── EncodeSansSemiExpanded-Regular.ttf │ ├── OFL.txt │ ├── fa-brands-400.ttf │ ├── fa-regular-400.ttf │ └── fa-solid-900.ttf ├── img │ ├── LoopicLogov2White.svg │ ├── LoopicSPXScreenshot.png │ ├── SPX_glossy_255_Transparent_Shadow.png │ ├── SPXgraphicsLogo64px.png │ ├── SPXstore600_2023_240px.png │ ├── checker60.png │ ├── json │ │ └── wm-0.json │ ├── promo-converter-logo.png │ ├── promo-loopic.png │ ├── promo-store.png │ ├── shadabot.png │ ├── shadatop.png │ ├── snap-ferryman.png │ ├── spx-gc-home-256.png │ ├── spx-gc.ico │ ├── spx-gc_org.ico │ ├── spx.svg │ ├── spx_offline.png │ ├── spx_online.png │ ├── spx_preview.png │ ├── spx_program.png │ ├── storeicon-org.png │ ├── storeicon.png │ └── yt_mockup.png ├── js │ ├── Sortable.min.js │ ├── anime.min.js │ ├── axios.min.js │ ├── fontawesome.all.min.js │ ├── lib │ │ ├── dotlottie-player.js │ │ ├── lodash.min.js │ │ ├── luxon.min.js │ │ └── vanilla-picker.csp.min.js │ ├── socket.io.js │ ├── socket.io.js.map │ ├── spx_controllerImportFunctions.js │ ├── spx_dragdrop.js │ ├── spx_fileBrowser.js │ ├── spx_fileBrowserItemFactory.js │ ├── spx_fileBrowserModule.js │ ├── spx_gc.js │ ├── spx_rendererUtils.js │ ├── spx_showConfig.js │ └── vanilla-js-tooltip.js ├── renderer │ └── js │ │ ├── socket.io.js │ │ └── socket.io.js.map └── this-is-public-root ├── utils ├── GDDtoSPXconverter.js ├── api-handlers.js ├── logger.js ├── playout_casparCG.js ├── playout_webplayer.js ├── sockets.js ├── spx_auth.js ├── spx_getconf.js ├── spx_server_functions.js └── talk.vbs └── views ├── _old ├── view-renderwindow_preview.handlebars └── view-renderwindow_program.handlebars ├── layouts ├── __main.handlebars ├── filelist.handlebars └── main.handlebars ├── partials ├── copyright.handlebars ├── footer.handlebars ├── header.handlebars ├── partial-genericfilebrowsermodal.handlebars ├── partial-showextrabrowsermodal.handlebars ├── partial-templatebrowsermodal.handlebars ├── rundownComment copy.handlebars ├── rundownOptions.handlebars └── socketserver.handlebars ├── view-admin.handlebars ├── view-api-osc.handlebars ├── view-api-v1.handlebars ├── view-appconfig.handlebars ├── view-authpolicy.handlebars ├── view-controller.handlebars ├── view-controllermini.handlebars ├── view-empty.handlebars ├── view-episodes.handlebars ├── view-fileBrowser.handlebars ├── view-home.handlebars ├── view-login.handlebars ├── view-registration.handlebars ├── view-renderer.handlebars ├── view-rendererscalable.handlebars ├── view-showconfig.handlebars └── view-shows.handlebars /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/.gitignore -------------------------------------------------------------------------------- /ASSETS/ExtraFunctions/demoFunctions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/ExtraFunctions/demoFunctions.js -------------------------------------------------------------------------------- /ASSETS/csv/csv-folder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/csv/csv-folder.md -------------------------------------------------------------------------------- /ASSETS/excel/ticker-demo/basic-news-ticker.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/excel/ticker-demo/basic-news-ticker.xlsx -------------------------------------------------------------------------------- /ASSETS/media/images/hd/BluishBlurry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/media/images/hd/BluishBlurry.png -------------------------------------------------------------------------------- /ASSETS/media/images/hd/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/media/images/hd/black.png -------------------------------------------------------------------------------- /ASSETS/media/images/hd/chroma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/media/images/hd/chroma.png -------------------------------------------------------------------------------- /ASSETS/media/images/hd/nature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/media/images/hd/nature.png -------------------------------------------------------------------------------- /ASSETS/media/images/logo/DemoLogo_Black_300x300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/media/images/logo/DemoLogo_Black_300x300.png -------------------------------------------------------------------------------- /ASSETS/media/images/logo/DemoLogo_Grey_300x300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/media/images/logo/DemoLogo_Grey_300x300.png -------------------------------------------------------------------------------- /ASSETS/media/images/logo/DemoLogo_PurpleDisc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/media/images/logo/DemoLogo_PurpleDisc.png -------------------------------------------------------------------------------- /ASSETS/media/images/logo/DemoLogo_Red_300x300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/media/images/logo/DemoLogo_Red_300x300.png -------------------------------------------------------------------------------- /ASSETS/media/images/logo/DemoLogo_White_300x300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/media/images/logo/DemoLogo_White_300x300.png -------------------------------------------------------------------------------- /ASSETS/media/images/logo/DemoLogo_Yellow_300x300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/media/images/logo/DemoLogo_Yellow_300x300.png -------------------------------------------------------------------------------- /ASSETS/media/images/logo/blurange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/media/images/logo/blurange.png -------------------------------------------------------------------------------- /ASSETS/media/images/logo/demologo_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/media/images/logo/demologo_blue.png -------------------------------------------------------------------------------- /ASSETS/media/images/logo/demologo_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/media/images/logo/demologo_outline.png -------------------------------------------------------------------------------- /ASSETS/media/images/logo/demologo_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/media/images/logo/demologo_red.png -------------------------------------------------------------------------------- /ASSETS/media/images/spxgc_welcome_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/media/images/spxgc_welcome_help.png -------------------------------------------------------------------------------- /ASSETS/plugins/animateAllOut/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/plugins/animateAllOut/init.js -------------------------------------------------------------------------------- /ASSETS/plugins/lib/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/plugins/lib/ui.js -------------------------------------------------------------------------------- /ASSETS/plugins/panicButton/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/plugins/panicButton/init.js -------------------------------------------------------------------------------- /ASSETS/plugins/plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/plugins/plugins.md -------------------------------------------------------------------------------- /ASSETS/plugins/spxLinks/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/plugins/spxLinks/init.js -------------------------------------------------------------------------------- /ASSETS/plugins/welcomeOverlay/img/spxgc_welcome_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/plugins/welcomeOverlay/img/spxgc_welcome_help.png -------------------------------------------------------------------------------- /ASSETS/plugins/welcomeOverlay/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/plugins/welcomeOverlay/init.js -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/BUMPER.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/BUMPER.html -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/INFO_LEFT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/INFO_LEFT.html -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/INFO_RIGHT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/INFO_RIGHT.html -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/NAME_LEFT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/NAME_LEFT.html -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/NAME_RIGHT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/NAME_RIGHT.html -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/README.md -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/README.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/README.pdf -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/TICKER_EXCEL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/TICKER_EXCEL.html -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/TICKER_RSS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/TICKER_RSS.html -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/TITLE_2_STEPS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/TITLE_2_STEPS.html -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/css/styles.css -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/Amaranth-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/Amaranth-Bold.ttf -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/Amaranth-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/Amaranth-BoldItalic.ttf -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/Amaranth-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/Amaranth-Italic.ttf -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/Amaranth-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/Amaranth-Regular.ttf -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/BarlowSemiCondensed-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/BarlowSemiCondensed-Black.ttf -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/BarlowSemiCondensed-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/BarlowSemiCondensed-Bold.ttf -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/BarlowSemiCondensed-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/BarlowSemiCondensed-Light.ttf -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/BarlowSemiCondensed-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/BarlowSemiCondensed-Regular.ttf -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/EncodeSansSemiExpanded-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/EncodeSansSemiExpanded-Black.ttf -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/EncodeSansSemiExpanded-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/EncodeSansSemiExpanded-Bold.ttf -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/EncodeSansSemiExpanded-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/EncodeSansSemiExpanded-Light.ttf -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/EncodeSansSemiExpanded-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/EncodeSansSemiExpanded-Regular.ttf -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/Epilogue-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/Epilogue-ExtraBold.ttf -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/Epilogue-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/Epilogue-Medium.ttf -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/Montserrat-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/Montserrat-Bold.ttf -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/Montserrat-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/Montserrat-Medium.ttf -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/MontserratAlternates-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/MontserratAlternates-Black.ttf -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/MontserratAlternates-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/MontserratAlternates-Bold.ttf -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/MontserratAlternates-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/MontserratAlternates-Light.ttf -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/MontserratAlternates-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/MontserratAlternates-Regular.ttf -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/NordeaSansSmall-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/NordeaSansSmall-Regular.woff2 -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/Oswald-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/Oswald-Bold.ttf -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/Oswald-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/Oswald-ExtraLight.ttf -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/Oswald-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/Oswald-Light.ttf -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/Oswald-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/Oswald-Regular.ttf -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/Oswald-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/Oswald-SemiBold.ttf -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/Teko-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/Teko-Bold.ttf -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/Teko-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/Teko-Light.ttf -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/Teko-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/Teko-Medium.ttf -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/Teko-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/Teko-Regular.ttf -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/Teko-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/Teko-SemiBold.ttf -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/barlow.black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/barlow.black.ttf -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/barlow.bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/barlow.bold.ttf -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/barlow.light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/barlow.light.ttf -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/barlow.medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/barlow.medium.ttf -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/barlow.regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/barlow.regular.ttf -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/fonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/img/banklogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/img/banklogo.png -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/img/flares/bluish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/img/flares/bluish.png -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/img/flares/flare-hoop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/img/flares/flare-hoop.png -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/img/flares/golden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/img/flares/golden.png -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/img/flares/reddish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/img/flares/reddish.png -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/img/flares/whitey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/img/flares/whitey.png -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/img/gloss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/img/gloss.png -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/img/square-white-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/img/square-white-50.png -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/js/lib/anime.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/js/lib/anime.min.js -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/js/lib/axios.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/js/lib/axios.min.js -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/js/lib/lottie.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/js/lib/lottie.min.js -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/js/spx_interface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/js/spx_interface.js -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/lottie/live-dayspa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/lottie/live-dayspa.json -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/lottie/live-default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/lottie/live-default.json -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/lottie/live-motorway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/lottie/live-motorway.json -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/lottie/live-news.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/lottie/live-news.json -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/snapshots/pack1_demo_customizations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/snapshots/pack1_demo_customizations.png -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/themes/Bank.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/themes/Bank.css -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/themes/Default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/themes/Default.css -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/themes/Holiday.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/themes/Holiday.css -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/themes/LiveOS.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/themes/LiveOS.css -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/themes/LiveU_Dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/themes/LiveU_Dark.css -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/themes/LiveU_Light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/themes/LiveU_Light.css -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/themes/Motorsport.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/themes/Motorsport.css -------------------------------------------------------------------------------- /ASSETS/templates/softpix/Template_Pack_1.3.2/themes/News.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ASSETS/templates/softpix/Template_Pack_1.3.2/themes/News.css -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DATAROOT/MyFirstProject/data/MyFirstRundown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/DATAROOT/MyFirstProject/data/MyFirstRundown.json -------------------------------------------------------------------------------- /DATAROOT/MyFirstProject/data/MySecondRundown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/DATAROOT/MyFirstProject/data/MySecondRundown.json -------------------------------------------------------------------------------- /DATAROOT/MyFirstProject/profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/DATAROOT/MyFirstProject/profile.json -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /LOG/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/LOG/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/RELEASE_NOTES.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/SECURITY.md -------------------------------------------------------------------------------- /ecosystem.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/ecosystem.config.js -------------------------------------------------------------------------------- /locales/dutch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/locales/dutch.json -------------------------------------------------------------------------------- /locales/english.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/locales/english.json -------------------------------------------------------------------------------- /locales/finnish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/locales/finnish.json -------------------------------------------------------------------------------- /locales/german.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/locales/german.json -------------------------------------------------------------------------------- /locales/japanese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/locales/japanese.json -------------------------------------------------------------------------------- /locales/portuguese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/locales/portuguese.json -------------------------------------------------------------------------------- /locales/simplifiedChinese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/locales/simplifiedChinese.json -------------------------------------------------------------------------------- /locales/swedish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/locales/swedish.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/package.json -------------------------------------------------------------------------------- /routes/routes-api-v1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/routes/routes-api-v1.js -------------------------------------------------------------------------------- /routes/routes-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/routes/routes-api.js -------------------------------------------------------------------------------- /routes/routes-application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/routes/routes-application.js -------------------------------------------------------------------------------- /routes/routes-casparcg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/routes/routes-casparcg.js -------------------------------------------------------------------------------- /routes/routes-osc-disabled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/routes/routes-osc-disabled.js -------------------------------------------------------------------------------- /routes/routes-osc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/routes/routes-osc.js -------------------------------------------------------------------------------- /routes/routes-webplayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/routes/routes-webplayer.js -------------------------------------------------------------------------------- /screenshots/00-spx-gc-principle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/screenshots/00-spx-gc-principle.png -------------------------------------------------------------------------------- /screenshots/00-spx-gc-principle2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/screenshots/00-spx-gc-principle2.png -------------------------------------------------------------------------------- /screenshots/01-spx-gc-projectlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/screenshots/01-spx-gc-projectlist.png -------------------------------------------------------------------------------- /screenshots/01-spx-loginpolicy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/screenshots/01-spx-loginpolicy.png -------------------------------------------------------------------------------- /screenshots/02-spx-gc-rundowlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/screenshots/02-spx-gc-rundowlist.png -------------------------------------------------------------------------------- /screenshots/03-spx-gc-controller-empty-rundown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/screenshots/03-spx-gc-controller-empty-rundown.png -------------------------------------------------------------------------------- /screenshots/04-spx-gc-controller-addtemplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/screenshots/04-spx-gc-controller-addtemplate.png -------------------------------------------------------------------------------- /screenshots/05-spx-gc-controller-rundown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/screenshots/05-spx-gc-controller-rundown.png -------------------------------------------------------------------------------- /screenshots/06-spx-gc-controller-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/screenshots/06-spx-gc-controller-editor.png -------------------------------------------------------------------------------- /screenshots/07-spx-gc-controller-rundown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/screenshots/07-spx-gc-controller-rundown.png -------------------------------------------------------------------------------- /screenshots/08-spx-gc-appconfig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/screenshots/08-spx-gc-appconfig.png -------------------------------------------------------------------------------- /screenshots/09-spx-gc-projectsettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/screenshots/09-spx-gc-projectsettings.png -------------------------------------------------------------------------------- /screenshots/anatomy-of-an-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/screenshots/anatomy-of-an-item.png -------------------------------------------------------------------------------- /screenshots/ccgservers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/screenshots/ccgservers.png -------------------------------------------------------------------------------- /screenshots/helloworld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/screenshots/helloworld.png -------------------------------------------------------------------------------- /screenshots/hq.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/screenshots/hq.gif -------------------------------------------------------------------------------- /screenshots/source-files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/screenshots/source-files.png -------------------------------------------------------------------------------- /screenshots/spx-gc-help-workinprogress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/screenshots/spx-gc-help-workinprogress.png -------------------------------------------------------------------------------- /screenshots/spx-gc-ui-anim-v1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/screenshots/spx-gc-ui-anim-v1-0.gif -------------------------------------------------------------------------------- /screenshots/spx-zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/screenshots/spx-zoom.png -------------------------------------------------------------------------------- /screenshots/streamdeck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/screenshots/streamdeck.png -------------------------------------------------------------------------------- /screenshots/windows-installation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/screenshots/windows-installation.png -------------------------------------------------------------------------------- /screenshots/yt_mockup-showreel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/screenshots/yt_mockup-showreel.png -------------------------------------------------------------------------------- /screenshots/yt_mockup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/screenshots/yt_mockup.png -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/server.js -------------------------------------------------------------------------------- /static/css/spx_accents.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/css/spx_accents.css -------------------------------------------------------------------------------- /static/css/spx_colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/css/spx_colors.css -------------------------------------------------------------------------------- /static/css/spx_filebrowser.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/css/spx_filebrowser.css -------------------------------------------------------------------------------- /static/css/spx_flex.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/css/spx_flex.css -------------------------------------------------------------------------------- /static/css/spx_fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/css/spx_fonts.css -------------------------------------------------------------------------------- /static/css/spx_forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/css/spx_forms.css -------------------------------------------------------------------------------- /static/css/spx_layout-mini.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/css/spx_layout-mini.css -------------------------------------------------------------------------------- /static/css/spx_layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/css/spx_layout.css -------------------------------------------------------------------------------- /static/css/spx_modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/css/spx_modal.css -------------------------------------------------------------------------------- /static/css/spx_renderpopups.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/css/spx_renderpopups.css -------------------------------------------------------------------------------- /static/css/ticker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/css/ticker.css -------------------------------------------------------------------------------- /static/css/toggle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/css/toggle.css -------------------------------------------------------------------------------- /static/css/toggle2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/css/toggle2.css -------------------------------------------------------------------------------- /static/css/tree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/css/tree.css -------------------------------------------------------------------------------- /static/css/vanilla-js-tooltip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/css/vanilla-js-tooltip.css -------------------------------------------------------------------------------- /static/css/vanilla-picker.csp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/css/vanilla-picker.csp.css -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/fonts/EncodeSansSemiExpanded-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/fonts/EncodeSansSemiExpanded-Black.ttf -------------------------------------------------------------------------------- /static/fonts/EncodeSansSemiExpanded-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/fonts/EncodeSansSemiExpanded-Bold.ttf -------------------------------------------------------------------------------- /static/fonts/EncodeSansSemiExpanded-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/fonts/EncodeSansSemiExpanded-Light.ttf -------------------------------------------------------------------------------- /static/fonts/EncodeSansSemiExpanded-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/fonts/EncodeSansSemiExpanded-Regular.ttf -------------------------------------------------------------------------------- /static/fonts/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/fonts/OFL.txt -------------------------------------------------------------------------------- /static/fonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/fonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /static/fonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/fonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /static/fonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/fonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /static/img/LoopicLogov2White.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/img/LoopicLogov2White.svg -------------------------------------------------------------------------------- /static/img/LoopicSPXScreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/img/LoopicSPXScreenshot.png -------------------------------------------------------------------------------- /static/img/SPX_glossy_255_Transparent_Shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/img/SPX_glossy_255_Transparent_Shadow.png -------------------------------------------------------------------------------- /static/img/SPXgraphicsLogo64px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/img/SPXgraphicsLogo64px.png -------------------------------------------------------------------------------- /static/img/SPXstore600_2023_240px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/img/SPXstore600_2023_240px.png -------------------------------------------------------------------------------- /static/img/checker60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/img/checker60.png -------------------------------------------------------------------------------- /static/img/json/wm-0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/img/json/wm-0.json -------------------------------------------------------------------------------- /static/img/promo-converter-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/img/promo-converter-logo.png -------------------------------------------------------------------------------- /static/img/promo-loopic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/img/promo-loopic.png -------------------------------------------------------------------------------- /static/img/promo-store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/img/promo-store.png -------------------------------------------------------------------------------- /static/img/shadabot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/img/shadabot.png -------------------------------------------------------------------------------- /static/img/shadatop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/img/shadatop.png -------------------------------------------------------------------------------- /static/img/snap-ferryman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/img/snap-ferryman.png -------------------------------------------------------------------------------- /static/img/spx-gc-home-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/img/spx-gc-home-256.png -------------------------------------------------------------------------------- /static/img/spx-gc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/img/spx-gc.ico -------------------------------------------------------------------------------- /static/img/spx-gc_org.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/img/spx-gc_org.ico -------------------------------------------------------------------------------- /static/img/spx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/img/spx.svg -------------------------------------------------------------------------------- /static/img/spx_offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/img/spx_offline.png -------------------------------------------------------------------------------- /static/img/spx_online.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/img/spx_online.png -------------------------------------------------------------------------------- /static/img/spx_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/img/spx_preview.png -------------------------------------------------------------------------------- /static/img/spx_program.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/img/spx_program.png -------------------------------------------------------------------------------- /static/img/storeicon-org.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/img/storeicon-org.png -------------------------------------------------------------------------------- /static/img/storeicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/img/storeicon.png -------------------------------------------------------------------------------- /static/img/yt_mockup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/img/yt_mockup.png -------------------------------------------------------------------------------- /static/js/Sortable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/js/Sortable.min.js -------------------------------------------------------------------------------- /static/js/anime.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/js/anime.min.js -------------------------------------------------------------------------------- /static/js/axios.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/js/axios.min.js -------------------------------------------------------------------------------- /static/js/fontawesome.all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/js/fontawesome.all.min.js -------------------------------------------------------------------------------- /static/js/lib/dotlottie-player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/js/lib/dotlottie-player.js -------------------------------------------------------------------------------- /static/js/lib/lodash.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/js/lib/lodash.min.js -------------------------------------------------------------------------------- /static/js/lib/luxon.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/js/lib/luxon.min.js -------------------------------------------------------------------------------- /static/js/lib/vanilla-picker.csp.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/js/lib/vanilla-picker.csp.min.js -------------------------------------------------------------------------------- /static/js/socket.io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/js/socket.io.js -------------------------------------------------------------------------------- /static/js/socket.io.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/js/socket.io.js.map -------------------------------------------------------------------------------- /static/js/spx_controllerImportFunctions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/js/spx_controllerImportFunctions.js -------------------------------------------------------------------------------- /static/js/spx_dragdrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/js/spx_dragdrop.js -------------------------------------------------------------------------------- /static/js/spx_fileBrowser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/js/spx_fileBrowser.js -------------------------------------------------------------------------------- /static/js/spx_fileBrowserItemFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/js/spx_fileBrowserItemFactory.js -------------------------------------------------------------------------------- /static/js/spx_fileBrowserModule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/js/spx_fileBrowserModule.js -------------------------------------------------------------------------------- /static/js/spx_gc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/js/spx_gc.js -------------------------------------------------------------------------------- /static/js/spx_rendererUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/js/spx_rendererUtils.js -------------------------------------------------------------------------------- /static/js/spx_showConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/js/spx_showConfig.js -------------------------------------------------------------------------------- /static/js/vanilla-js-tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/js/vanilla-js-tooltip.js -------------------------------------------------------------------------------- /static/renderer/js/socket.io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/renderer/js/socket.io.js -------------------------------------------------------------------------------- /static/renderer/js/socket.io.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/static/renderer/js/socket.io.js.map -------------------------------------------------------------------------------- /static/this-is-public-root: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/GDDtoSPXconverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/utils/GDDtoSPXconverter.js -------------------------------------------------------------------------------- /utils/api-handlers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/utils/api-handlers.js -------------------------------------------------------------------------------- /utils/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/utils/logger.js -------------------------------------------------------------------------------- /utils/playout_casparCG.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/utils/playout_casparCG.js -------------------------------------------------------------------------------- /utils/playout_webplayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/utils/playout_webplayer.js -------------------------------------------------------------------------------- /utils/sockets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/utils/sockets.js -------------------------------------------------------------------------------- /utils/spx_auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/utils/spx_auth.js -------------------------------------------------------------------------------- /utils/spx_getconf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/utils/spx_getconf.js -------------------------------------------------------------------------------- /utils/spx_server_functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/utils/spx_server_functions.js -------------------------------------------------------------------------------- /utils/talk.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/utils/talk.vbs -------------------------------------------------------------------------------- /views/_old/view-renderwindow_preview.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/views/_old/view-renderwindow_preview.handlebars -------------------------------------------------------------------------------- /views/_old/view-renderwindow_program.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/views/_old/view-renderwindow_program.handlebars -------------------------------------------------------------------------------- /views/layouts/__main.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/views/layouts/__main.handlebars -------------------------------------------------------------------------------- /views/layouts/filelist.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/views/layouts/filelist.handlebars -------------------------------------------------------------------------------- /views/layouts/main.handlebars: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /views/partials/copyright.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/views/partials/copyright.handlebars -------------------------------------------------------------------------------- /views/partials/footer.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/views/partials/footer.handlebars -------------------------------------------------------------------------------- /views/partials/header.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/views/partials/header.handlebars -------------------------------------------------------------------------------- /views/partials/partial-genericfilebrowsermodal.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/views/partials/partial-genericfilebrowsermodal.handlebars -------------------------------------------------------------------------------- /views/partials/partial-showextrabrowsermodal.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/views/partials/partial-showextrabrowsermodal.handlebars -------------------------------------------------------------------------------- /views/partials/partial-templatebrowsermodal.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/views/partials/partial-templatebrowsermodal.handlebars -------------------------------------------------------------------------------- /views/partials/rundownComment copy.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/views/partials/rundownComment copy.handlebars -------------------------------------------------------------------------------- /views/partials/rundownOptions.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/views/partials/rundownOptions.handlebars -------------------------------------------------------------------------------- /views/partials/socketserver.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/views/partials/socketserver.handlebars -------------------------------------------------------------------------------- /views/view-admin.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/views/view-admin.handlebars -------------------------------------------------------------------------------- /views/view-api-osc.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/views/view-api-osc.handlebars -------------------------------------------------------------------------------- /views/view-api-v1.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/views/view-api-v1.handlebars -------------------------------------------------------------------------------- /views/view-appconfig.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/views/view-appconfig.handlebars -------------------------------------------------------------------------------- /views/view-authpolicy.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/views/view-authpolicy.handlebars -------------------------------------------------------------------------------- /views/view-controller.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/views/view-controller.handlebars -------------------------------------------------------------------------------- /views/view-controllermini.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/views/view-controllermini.handlebars -------------------------------------------------------------------------------- /views/view-empty.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/views/view-empty.handlebars -------------------------------------------------------------------------------- /views/view-episodes.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/views/view-episodes.handlebars -------------------------------------------------------------------------------- /views/view-fileBrowser.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/views/view-fileBrowser.handlebars -------------------------------------------------------------------------------- /views/view-home.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/views/view-home.handlebars -------------------------------------------------------------------------------- /views/view-login.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/views/view-login.handlebars -------------------------------------------------------------------------------- /views/view-registration.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/views/view-registration.handlebars -------------------------------------------------------------------------------- /views/view-renderer.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/views/view-renderer.handlebars -------------------------------------------------------------------------------- /views/view-rendererscalable.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/views/view-rendererscalable.handlebars -------------------------------------------------------------------------------- /views/view-showconfig.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/views/view-showconfig.handlebars -------------------------------------------------------------------------------- /views/view-shows.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuomoKu/SPX-GC/HEAD/views/view-shows.handlebars --------------------------------------------------------------------------------