├── .github ├── dependabot.yml └── workflows │ ├── azure-static-web-apps-mango-glacier-095c47203.yml.norun │ ├── codeql-analysis.yml │ ├── dev-deploy-kollokvium.yml │ ├── master-deploy-kollokvium.yml │ └── master-test-env.yml ├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── package.json ├── src ├── backend │ ├── Models │ │ ├── ChatMessageModel.ts │ │ └── ExtendedPeerConnection.ts │ ├── controllers │ │ └── broker.ts │ ├── openAIRequest.ts │ ├── routes.ts │ └── server.ts ├── cert │ ├── selfsigned.crt │ └── selfsigned.key ├── client │ ├── AppBase.ts │ ├── AppDomain.ts │ ├── Audio │ │ ├── AudioNodes.ts │ │ ├── SoundFx.ts │ │ ├── SpeechDetector.ts │ │ └── Transcriber.ts │ ├── Components │ │ ├── AppComponent.ts │ │ ├── AppComponentToaster.ts │ │ ├── AppParticipantComponent.ts │ │ ├── ChatComponent.ts │ │ ├── FileshareComponent.ts │ │ ├── GreenScreenComponent.ts │ │ └── JournalComponent.ts │ ├── E2EE │ │ └── EncodeDecode.ts │ ├── Helpers │ │ ├── AppLogger.ts │ │ ├── BrowserInfo.ts │ │ ├── DOMUtils.ts │ │ ├── DetectResolutions.ts │ │ ├── ILogger.ts │ │ ├── MediaUtils.ts │ │ ├── RandomName.ts │ │ └── ReadFile.ts │ ├── SlugHistory.ts │ ├── Sound │ │ └── appointed.mp3 │ ├── UserSettings.ts │ ├── app.ts │ └── settings.json ├── css │ ├── bootstrap │ │ └── bootstrap.min.css │ ├── fontawesome │ │ └── all.css │ ├── kollokvium │ │ └── app.css │ └── webfonts │ │ ├── fa-brands-400.eot │ │ ├── fa-brands-400.svg │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.eot │ │ ├── fa-regular-400.svg │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.eot │ │ ├── fa-solid-900.svg │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff │ │ ├── fa-solid-900.woff2 │ │ ├── nanum-gothic-v17-latin-700.eot │ │ ├── nanum-gothic-v17-latin-700.svg │ │ ├── nanum-gothic-v17-latin-700.ttf │ │ ├── nanum-gothic-v17-latin-700.woff │ │ ├── nanum-gothic-v17-latin-700.woff2 │ │ ├── nanum-gothic-v17-latin-800.eot │ │ ├── nanum-gothic-v17-latin-800.svg │ │ ├── nanum-gothic-v17-latin-800.ttf │ │ ├── nanum-gothic-v17-latin-800.woff │ │ ├── nanum-gothic-v17-latin-800.woff2 │ │ ├── nanum-gothic-v17-latin-regular.eot │ │ ├── nanum-gothic-v17-latin-regular.svg │ │ ├── nanum-gothic-v17-latin-regular.ttf │ │ ├── nanum-gothic-v17-latin-regular.woff │ │ └── nanum-gothic-v17-latin-regular.woff2 ├── img │ ├── 800x450.png │ ├── background.jpg │ ├── favicons │ │ ├── android-icon-144x144.png │ │ ├── android-icon-192x192.png │ │ ├── android-icon-36x36.png │ │ ├── android-icon-48x48.png │ │ ├── android-icon-72x72.png │ │ ├── android-icon-96x96.png │ │ ├── apple-icon-114x114.png │ │ ├── apple-icon-120x120.png │ │ ├── apple-icon-144x144.png │ │ ├── apple-icon-152x152.png │ │ ├── apple-icon-180x180.png │ │ ├── apple-icon-57x57.png │ │ ├── apple-icon-60x60.png │ │ ├── apple-icon-72x72.png │ │ ├── apple-icon-76x76.png │ │ ├── apple-icon-precomposed.png │ │ ├── apple-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon-96x96.png │ │ ├── favicon.ico │ │ ├── ms-icon-144x144.png │ │ ├── ms-icon-150x150.png │ │ ├── ms-icon-310x310.png │ │ └── ms-icon-70x70.png │ ├── greenscreen │ │ ├── beach.jpg │ │ ├── coffeshop.jpg │ │ ├── costarica.jpg │ │ ├── desert.jpg │ │ ├── livingroom.jpg │ │ ├── office.jpg │ │ └── window.jpg │ ├── logo.png │ └── novideo.png ├── index.html └── js │ ├── adapter.min.js │ ├── bootstrap.bundle.min.js │ ├── jquery.min.js │ └── popper.min.js ├── tsconfig.json ├── webpack.config.js └── webpack.server.js /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/azure-static-web-apps-mango-glacier-095c47203.yml.norun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/.github/workflows/azure-static-web-apps-mango-glacier-095c47203.yml.norun -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/dev-deploy-kollokvium.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/.github/workflows/dev-deploy-kollokvium.yml -------------------------------------------------------------------------------- /.github/workflows/master-deploy-kollokvium.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/.github/workflows/master-deploy-kollokvium.yml -------------------------------------------------------------------------------- /.github/workflows/master-test-env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/.github/workflows/master-test-env.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/package.json -------------------------------------------------------------------------------- /src/backend/Models/ChatMessageModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/backend/Models/ChatMessageModel.ts -------------------------------------------------------------------------------- /src/backend/Models/ExtendedPeerConnection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/backend/Models/ExtendedPeerConnection.ts -------------------------------------------------------------------------------- /src/backend/controllers/broker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/backend/controllers/broker.ts -------------------------------------------------------------------------------- /src/backend/openAIRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/backend/openAIRequest.ts -------------------------------------------------------------------------------- /src/backend/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/backend/routes.ts -------------------------------------------------------------------------------- /src/backend/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/backend/server.ts -------------------------------------------------------------------------------- /src/cert/selfsigned.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/cert/selfsigned.crt -------------------------------------------------------------------------------- /src/cert/selfsigned.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/cert/selfsigned.key -------------------------------------------------------------------------------- /src/client/AppBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/client/AppBase.ts -------------------------------------------------------------------------------- /src/client/AppDomain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/client/AppDomain.ts -------------------------------------------------------------------------------- /src/client/Audio/AudioNodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/client/Audio/AudioNodes.ts -------------------------------------------------------------------------------- /src/client/Audio/SoundFx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/client/Audio/SoundFx.ts -------------------------------------------------------------------------------- /src/client/Audio/SpeechDetector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/client/Audio/SpeechDetector.ts -------------------------------------------------------------------------------- /src/client/Audio/Transcriber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/client/Audio/Transcriber.ts -------------------------------------------------------------------------------- /src/client/Components/AppComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/client/Components/AppComponent.ts -------------------------------------------------------------------------------- /src/client/Components/AppComponentToaster.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/client/Components/AppComponentToaster.ts -------------------------------------------------------------------------------- /src/client/Components/AppParticipantComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/client/Components/AppParticipantComponent.ts -------------------------------------------------------------------------------- /src/client/Components/ChatComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/client/Components/ChatComponent.ts -------------------------------------------------------------------------------- /src/client/Components/FileshareComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/client/Components/FileshareComponent.ts -------------------------------------------------------------------------------- /src/client/Components/GreenScreenComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/client/Components/GreenScreenComponent.ts -------------------------------------------------------------------------------- /src/client/Components/JournalComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/client/Components/JournalComponent.ts -------------------------------------------------------------------------------- /src/client/E2EE/EncodeDecode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/client/E2EE/EncodeDecode.ts -------------------------------------------------------------------------------- /src/client/Helpers/AppLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/client/Helpers/AppLogger.ts -------------------------------------------------------------------------------- /src/client/Helpers/BrowserInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/client/Helpers/BrowserInfo.ts -------------------------------------------------------------------------------- /src/client/Helpers/DOMUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/client/Helpers/DOMUtils.ts -------------------------------------------------------------------------------- /src/client/Helpers/DetectResolutions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/client/Helpers/DetectResolutions.ts -------------------------------------------------------------------------------- /src/client/Helpers/ILogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/client/Helpers/ILogger.ts -------------------------------------------------------------------------------- /src/client/Helpers/MediaUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/client/Helpers/MediaUtils.ts -------------------------------------------------------------------------------- /src/client/Helpers/RandomName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/client/Helpers/RandomName.ts -------------------------------------------------------------------------------- /src/client/Helpers/ReadFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/client/Helpers/ReadFile.ts -------------------------------------------------------------------------------- /src/client/SlugHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/client/SlugHistory.ts -------------------------------------------------------------------------------- /src/client/Sound/appointed.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/client/Sound/appointed.mp3 -------------------------------------------------------------------------------- /src/client/UserSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/client/UserSettings.ts -------------------------------------------------------------------------------- /src/client/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/client/app.ts -------------------------------------------------------------------------------- /src/client/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/client/settings.json -------------------------------------------------------------------------------- /src/css/bootstrap/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/css/bootstrap/bootstrap.min.css -------------------------------------------------------------------------------- /src/css/fontawesome/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/css/fontawesome/all.css -------------------------------------------------------------------------------- /src/css/kollokvium/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/css/kollokvium/app.css -------------------------------------------------------------------------------- /src/css/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/css/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /src/css/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/css/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /src/css/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/css/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /src/css/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/css/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /src/css/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/css/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /src/css/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/css/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /src/css/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/css/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /src/css/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/css/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /src/css/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/css/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /src/css/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/css/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /src/css/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/css/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /src/css/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/css/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /src/css/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/css/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /src/css/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/css/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /src/css/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/css/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /src/css/webfonts/nanum-gothic-v17-latin-700.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/css/webfonts/nanum-gothic-v17-latin-700.eot -------------------------------------------------------------------------------- /src/css/webfonts/nanum-gothic-v17-latin-700.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/css/webfonts/nanum-gothic-v17-latin-700.svg -------------------------------------------------------------------------------- /src/css/webfonts/nanum-gothic-v17-latin-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/css/webfonts/nanum-gothic-v17-latin-700.ttf -------------------------------------------------------------------------------- /src/css/webfonts/nanum-gothic-v17-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/css/webfonts/nanum-gothic-v17-latin-700.woff -------------------------------------------------------------------------------- /src/css/webfonts/nanum-gothic-v17-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/css/webfonts/nanum-gothic-v17-latin-700.woff2 -------------------------------------------------------------------------------- /src/css/webfonts/nanum-gothic-v17-latin-800.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/css/webfonts/nanum-gothic-v17-latin-800.eot -------------------------------------------------------------------------------- /src/css/webfonts/nanum-gothic-v17-latin-800.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/css/webfonts/nanum-gothic-v17-latin-800.svg -------------------------------------------------------------------------------- /src/css/webfonts/nanum-gothic-v17-latin-800.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/css/webfonts/nanum-gothic-v17-latin-800.ttf -------------------------------------------------------------------------------- /src/css/webfonts/nanum-gothic-v17-latin-800.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/css/webfonts/nanum-gothic-v17-latin-800.woff -------------------------------------------------------------------------------- /src/css/webfonts/nanum-gothic-v17-latin-800.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/css/webfonts/nanum-gothic-v17-latin-800.woff2 -------------------------------------------------------------------------------- /src/css/webfonts/nanum-gothic-v17-latin-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/css/webfonts/nanum-gothic-v17-latin-regular.eot -------------------------------------------------------------------------------- /src/css/webfonts/nanum-gothic-v17-latin-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/css/webfonts/nanum-gothic-v17-latin-regular.svg -------------------------------------------------------------------------------- /src/css/webfonts/nanum-gothic-v17-latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/css/webfonts/nanum-gothic-v17-latin-regular.ttf -------------------------------------------------------------------------------- /src/css/webfonts/nanum-gothic-v17-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/css/webfonts/nanum-gothic-v17-latin-regular.woff -------------------------------------------------------------------------------- /src/css/webfonts/nanum-gothic-v17-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/css/webfonts/nanum-gothic-v17-latin-regular.woff2 -------------------------------------------------------------------------------- /src/img/800x450.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/img/800x450.png -------------------------------------------------------------------------------- /src/img/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/img/background.jpg -------------------------------------------------------------------------------- /src/img/favicons/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/img/favicons/android-icon-144x144.png -------------------------------------------------------------------------------- /src/img/favicons/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/img/favicons/android-icon-192x192.png -------------------------------------------------------------------------------- /src/img/favicons/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/img/favicons/android-icon-36x36.png -------------------------------------------------------------------------------- /src/img/favicons/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/img/favicons/android-icon-48x48.png -------------------------------------------------------------------------------- /src/img/favicons/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/img/favicons/android-icon-72x72.png -------------------------------------------------------------------------------- /src/img/favicons/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/img/favicons/android-icon-96x96.png -------------------------------------------------------------------------------- /src/img/favicons/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/img/favicons/apple-icon-114x114.png -------------------------------------------------------------------------------- /src/img/favicons/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/img/favicons/apple-icon-120x120.png -------------------------------------------------------------------------------- /src/img/favicons/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/img/favicons/apple-icon-144x144.png -------------------------------------------------------------------------------- /src/img/favicons/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/img/favicons/apple-icon-152x152.png -------------------------------------------------------------------------------- /src/img/favicons/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/img/favicons/apple-icon-180x180.png -------------------------------------------------------------------------------- /src/img/favicons/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/img/favicons/apple-icon-57x57.png -------------------------------------------------------------------------------- /src/img/favicons/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/img/favicons/apple-icon-60x60.png -------------------------------------------------------------------------------- /src/img/favicons/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/img/favicons/apple-icon-72x72.png -------------------------------------------------------------------------------- /src/img/favicons/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/img/favicons/apple-icon-76x76.png -------------------------------------------------------------------------------- /src/img/favicons/apple-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/img/favicons/apple-icon-precomposed.png -------------------------------------------------------------------------------- /src/img/favicons/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/img/favicons/apple-icon.png -------------------------------------------------------------------------------- /src/img/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/img/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /src/img/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/img/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /src/img/favicons/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/img/favicons/favicon-96x96.png -------------------------------------------------------------------------------- /src/img/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/img/favicons/favicon.ico -------------------------------------------------------------------------------- /src/img/favicons/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/img/favicons/ms-icon-144x144.png -------------------------------------------------------------------------------- /src/img/favicons/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/img/favicons/ms-icon-150x150.png -------------------------------------------------------------------------------- /src/img/favicons/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/img/favicons/ms-icon-310x310.png -------------------------------------------------------------------------------- /src/img/favicons/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/img/favicons/ms-icon-70x70.png -------------------------------------------------------------------------------- /src/img/greenscreen/beach.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/img/greenscreen/beach.jpg -------------------------------------------------------------------------------- /src/img/greenscreen/coffeshop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/img/greenscreen/coffeshop.jpg -------------------------------------------------------------------------------- /src/img/greenscreen/costarica.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/img/greenscreen/costarica.jpg -------------------------------------------------------------------------------- /src/img/greenscreen/desert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/img/greenscreen/desert.jpg -------------------------------------------------------------------------------- /src/img/greenscreen/livingroom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/img/greenscreen/livingroom.jpg -------------------------------------------------------------------------------- /src/img/greenscreen/office.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/img/greenscreen/office.jpg -------------------------------------------------------------------------------- /src/img/greenscreen/window.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/img/greenscreen/window.jpg -------------------------------------------------------------------------------- /src/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/img/logo.png -------------------------------------------------------------------------------- /src/img/novideo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/img/novideo.png -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/index.html -------------------------------------------------------------------------------- /src/js/adapter.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/js/adapter.min.js -------------------------------------------------------------------------------- /src/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /src/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/js/jquery.min.js -------------------------------------------------------------------------------- /src/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/src/js/popper.min.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coloquium/kollokvium/HEAD/webpack.server.js --------------------------------------------------------------------------------