├── .gitignore ├── Compo-HOWTO.md ├── README.md ├── Sahli-HOWTO.md ├── bin ├── Chrome.cmd ├── Firefox.cmd ├── a500.uae ├── balanced_shuffle.ps1 ├── cklaunch.exe ├── cklaunch.ini ├── dosbox-staging.conf ├── dosbox-x.conf ├── dosbox.conf ├── download_music.cmd ├── play_shuffled.cmd ├── runa500.cmd ├── setpath.cmd ├── setup.ps1 ├── shell.cmd ├── vidmode.exe └── vlc.cmd ├── jingle ├── README.md └── jingleplayer.exe ├── music └── download.txt ├── setup.cmd └── src ├── cklaunch ├── .gitignore ├── README.md ├── cklaunch.cpp ├── cklaunch.manifest ├── cklaunch.sln ├── cklaunch.vcxproj ├── clean.cmd ├── icon.rc └── trbl.ico ├── dvi_matrix_control ├── .gitignore ├── README.md ├── dvi_matrix_control.py ├── extron_set_edid.py └── extron_simulator.py ├── jingleplayer ├── .gitignore ├── README.md ├── clean.cmd ├── jingleplayer.c ├── jingleplayer.sln └── jingleplayer.vcxproj ├── pm-export-tools ├── .gitignore ├── README.md ├── pm_entry_download.py ├── pm_events_to_ccc_xml.py ├── pm_result_export.py ├── pm_slide_export.py └── wuhu_entry_download.py ├── vidmode ├── .gitignore ├── README.md ├── clean.cmd ├── vidmode.c ├── vidmode.sh ├── vidmode.sln └── vidmode.vcxproj └── wuhu-setup ├── .gitignore ├── README.md ├── slideviewer-cables-background-setup.js ├── wuhu_proxy_scheme.svg └── wuhu_setup.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/.gitignore -------------------------------------------------------------------------------- /Compo-HOWTO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/Compo-HOWTO.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/README.md -------------------------------------------------------------------------------- /Sahli-HOWTO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/Sahli-HOWTO.md -------------------------------------------------------------------------------- /bin/Chrome.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/bin/Chrome.cmd -------------------------------------------------------------------------------- /bin/Firefox.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/bin/Firefox.cmd -------------------------------------------------------------------------------- /bin/a500.uae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/bin/a500.uae -------------------------------------------------------------------------------- /bin/balanced_shuffle.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/bin/balanced_shuffle.ps1 -------------------------------------------------------------------------------- /bin/cklaunch.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/bin/cklaunch.exe -------------------------------------------------------------------------------- /bin/cklaunch.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/bin/cklaunch.ini -------------------------------------------------------------------------------- /bin/dosbox-staging.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/bin/dosbox-staging.conf -------------------------------------------------------------------------------- /bin/dosbox-x.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/bin/dosbox-x.conf -------------------------------------------------------------------------------- /bin/dosbox.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/bin/dosbox.conf -------------------------------------------------------------------------------- /bin/download_music.cmd: -------------------------------------------------------------------------------- 1 | @powershell -ExecutionPolicy Unrestricted -File "%~dp0\setup.ps1" music 2 | @pause -------------------------------------------------------------------------------- /bin/play_shuffled.cmd: -------------------------------------------------------------------------------- 1 | @powershell -ExecutionPolicy Unrestricted -File "%~dp0\balanced_shuffle.ps1" -Play %* -------------------------------------------------------------------------------- /bin/runa500.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/bin/runa500.cmd -------------------------------------------------------------------------------- /bin/setpath.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/bin/setpath.cmd -------------------------------------------------------------------------------- /bin/setup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/bin/setup.ps1 -------------------------------------------------------------------------------- /bin/shell.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/bin/shell.cmd -------------------------------------------------------------------------------- /bin/vidmode.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/bin/vidmode.exe -------------------------------------------------------------------------------- /bin/vlc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/bin/vlc.cmd -------------------------------------------------------------------------------- /jingle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/jingle/README.md -------------------------------------------------------------------------------- /jingle/jingleplayer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/jingle/jingleplayer.exe -------------------------------------------------------------------------------- /music/download.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/music/download.txt -------------------------------------------------------------------------------- /setup.cmd: -------------------------------------------------------------------------------- 1 | @powershell -ExecutionPolicy Unrestricted -File "%~dp0\bin\setup.ps1" %* 2 | @pause -------------------------------------------------------------------------------- /src/cklaunch/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/src/cklaunch/.gitignore -------------------------------------------------------------------------------- /src/cklaunch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/src/cklaunch/README.md -------------------------------------------------------------------------------- /src/cklaunch/cklaunch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/src/cklaunch/cklaunch.cpp -------------------------------------------------------------------------------- /src/cklaunch/cklaunch.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/src/cklaunch/cklaunch.manifest -------------------------------------------------------------------------------- /src/cklaunch/cklaunch.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/src/cklaunch/cklaunch.sln -------------------------------------------------------------------------------- /src/cklaunch/cklaunch.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/src/cklaunch/cklaunch.vcxproj -------------------------------------------------------------------------------- /src/cklaunch/clean.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/src/cklaunch/clean.cmd -------------------------------------------------------------------------------- /src/cklaunch/icon.rc: -------------------------------------------------------------------------------- 1 | 1337 ICON "trbl.ico" 2 | -------------------------------------------------------------------------------- /src/cklaunch/trbl.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/src/cklaunch/trbl.ico -------------------------------------------------------------------------------- /src/dvi_matrix_control/.gitignore: -------------------------------------------------------------------------------- 1 | dvi_matrix_control.conf 2 | -------------------------------------------------------------------------------- /src/dvi_matrix_control/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/src/dvi_matrix_control/README.md -------------------------------------------------------------------------------- /src/dvi_matrix_control/dvi_matrix_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/src/dvi_matrix_control/dvi_matrix_control.py -------------------------------------------------------------------------------- /src/dvi_matrix_control/extron_set_edid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/src/dvi_matrix_control/extron_set_edid.py -------------------------------------------------------------------------------- /src/dvi_matrix_control/extron_simulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/src/dvi_matrix_control/extron_simulator.py -------------------------------------------------------------------------------- /src/jingleplayer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/src/jingleplayer/.gitignore -------------------------------------------------------------------------------- /src/jingleplayer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/src/jingleplayer/README.md -------------------------------------------------------------------------------- /src/jingleplayer/clean.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/src/jingleplayer/clean.cmd -------------------------------------------------------------------------------- /src/jingleplayer/jingleplayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/src/jingleplayer/jingleplayer.c -------------------------------------------------------------------------------- /src/jingleplayer/jingleplayer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/src/jingleplayer/jingleplayer.sln -------------------------------------------------------------------------------- /src/jingleplayer/jingleplayer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/src/jingleplayer/jingleplayer.vcxproj -------------------------------------------------------------------------------- /src/pm-export-tools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/src/pm-export-tools/.gitignore -------------------------------------------------------------------------------- /src/pm-export-tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/src/pm-export-tools/README.md -------------------------------------------------------------------------------- /src/pm-export-tools/pm_entry_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/src/pm-export-tools/pm_entry_download.py -------------------------------------------------------------------------------- /src/pm-export-tools/pm_events_to_ccc_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/src/pm-export-tools/pm_events_to_ccc_xml.py -------------------------------------------------------------------------------- /src/pm-export-tools/pm_result_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/src/pm-export-tools/pm_result_export.py -------------------------------------------------------------------------------- /src/pm-export-tools/pm_slide_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/src/pm-export-tools/pm_slide_export.py -------------------------------------------------------------------------------- /src/pm-export-tools/wuhu_entry_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/src/pm-export-tools/wuhu_entry_download.py -------------------------------------------------------------------------------- /src/vidmode/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/src/vidmode/.gitignore -------------------------------------------------------------------------------- /src/vidmode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/src/vidmode/README.md -------------------------------------------------------------------------------- /src/vidmode/clean.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/src/vidmode/clean.cmd -------------------------------------------------------------------------------- /src/vidmode/vidmode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/src/vidmode/vidmode.c -------------------------------------------------------------------------------- /src/vidmode/vidmode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/src/vidmode/vidmode.sh -------------------------------------------------------------------------------- /src/vidmode/vidmode.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/src/vidmode/vidmode.sln -------------------------------------------------------------------------------- /src/vidmode/vidmode.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/src/vidmode/vidmode.vcxproj -------------------------------------------------------------------------------- /src/wuhu-setup/.gitignore: -------------------------------------------------------------------------------- 1 | *.conf 2 | *.notes.txt 3 | .wuhu* 4 | -------------------------------------------------------------------------------- /src/wuhu-setup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/src/wuhu-setup/README.md -------------------------------------------------------------------------------- /src/wuhu-setup/slideviewer-cables-background-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/src/wuhu-setup/slideviewer-cables-background-setup.js -------------------------------------------------------------------------------- /src/wuhu-setup/wuhu_proxy_scheme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/src/wuhu-setup/wuhu_proxy_scheme.svg -------------------------------------------------------------------------------- /src/wuhu-setup/wuhu_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kajott/CompoKit/HEAD/src/wuhu-setup/wuhu_setup.sh --------------------------------------------------------------------------------