├── .gitattributes ├── .gitignore ├── Broadlink └── DCX3400-M ├── CustomRemotes ├── BellFibeRemote.txt ├── FIOS_remote.txt ├── HDS600rs.txt ├── PACE_RNG200N_Basic.txt ├── ProHD_Tuner.txt ├── ShawBluecurveWesternCanadaHTMLRemote.zip ├── TIVORemote.html ├── TIVOremotePF.zip ├── Tivo.Bolt.Remote.txt ├── Tivo.Mini.Remote.txt ├── Tivo.Premiere.Remote.txt ├── Tivo.Series2-3.Remote.txt ├── comcastdvrremotefiles.zip ├── remote_directv-h24.txt ├── remote_directv-h24_large_digits.txt ├── shawcable.xfinity.comcastX1.XR5.remote.txt ├── skyremotefiles.zip ├── tivoremotefiles.zip └── tivoremotefilesv2.zip ├── README.md ├── RunSling.bat ├── SlingboxServerNetworkingGuide.pdf ├── V3.08_release_notes.pdf ├── V3.08d_release_notes.pdf ├── V3.08e_release_notes.pdf ├── V3.08f_release_notes.pdf ├── V3.0x_ReleaseNotes.pdf ├── V4.0_release_notes.pdf ├── assets └── img │ ├── sc-get-pwd.png │ └── sc-iden-endp.png ├── config.ini ├── favicon.ico ├── remote.txt ├── sb-pwd.md ├── sling.service ├── sling_openrc ├── slingbox_server.exe ├── slingbox_server.py └── unified_config.ini /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryDazoo/Slinger/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /Broadlink/DCX3400-M: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryDazoo/Slinger/HEAD/Broadlink/DCX3400-M -------------------------------------------------------------------------------- /CustomRemotes/BellFibeRemote.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryDazoo/Slinger/HEAD/CustomRemotes/BellFibeRemote.txt -------------------------------------------------------------------------------- /CustomRemotes/FIOS_remote.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryDazoo/Slinger/HEAD/CustomRemotes/FIOS_remote.txt -------------------------------------------------------------------------------- /CustomRemotes/HDS600rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryDazoo/Slinger/HEAD/CustomRemotes/HDS600rs.txt -------------------------------------------------------------------------------- /CustomRemotes/PACE_RNG200N_Basic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryDazoo/Slinger/HEAD/CustomRemotes/PACE_RNG200N_Basic.txt -------------------------------------------------------------------------------- /CustomRemotes/ProHD_Tuner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryDazoo/Slinger/HEAD/CustomRemotes/ProHD_Tuner.txt -------------------------------------------------------------------------------- /CustomRemotes/ShawBluecurveWesternCanadaHTMLRemote.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryDazoo/Slinger/HEAD/CustomRemotes/ShawBluecurveWesternCanadaHTMLRemote.zip -------------------------------------------------------------------------------- /CustomRemotes/TIVORemote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryDazoo/Slinger/HEAD/CustomRemotes/TIVORemote.html -------------------------------------------------------------------------------- /CustomRemotes/TIVOremotePF.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryDazoo/Slinger/HEAD/CustomRemotes/TIVOremotePF.zip -------------------------------------------------------------------------------- /CustomRemotes/Tivo.Bolt.Remote.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryDazoo/Slinger/HEAD/CustomRemotes/Tivo.Bolt.Remote.txt -------------------------------------------------------------------------------- /CustomRemotes/Tivo.Mini.Remote.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryDazoo/Slinger/HEAD/CustomRemotes/Tivo.Mini.Remote.txt -------------------------------------------------------------------------------- /CustomRemotes/Tivo.Premiere.Remote.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryDazoo/Slinger/HEAD/CustomRemotes/Tivo.Premiere.Remote.txt -------------------------------------------------------------------------------- /CustomRemotes/Tivo.Series2-3.Remote.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryDazoo/Slinger/HEAD/CustomRemotes/Tivo.Series2-3.Remote.txt -------------------------------------------------------------------------------- /CustomRemotes/comcastdvrremotefiles.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryDazoo/Slinger/HEAD/CustomRemotes/comcastdvrremotefiles.zip -------------------------------------------------------------------------------- /CustomRemotes/remote_directv-h24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryDazoo/Slinger/HEAD/CustomRemotes/remote_directv-h24.txt -------------------------------------------------------------------------------- /CustomRemotes/remote_directv-h24_large_digits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryDazoo/Slinger/HEAD/CustomRemotes/remote_directv-h24_large_digits.txt -------------------------------------------------------------------------------- /CustomRemotes/shawcable.xfinity.comcastX1.XR5.remote.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryDazoo/Slinger/HEAD/CustomRemotes/shawcable.xfinity.comcastX1.XR5.remote.txt -------------------------------------------------------------------------------- /CustomRemotes/skyremotefiles.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryDazoo/Slinger/HEAD/CustomRemotes/skyremotefiles.zip -------------------------------------------------------------------------------- /CustomRemotes/tivoremotefiles.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryDazoo/Slinger/HEAD/CustomRemotes/tivoremotefiles.zip -------------------------------------------------------------------------------- /CustomRemotes/tivoremotefilesv2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryDazoo/Slinger/HEAD/CustomRemotes/tivoremotefilesv2.zip -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryDazoo/Slinger/HEAD/README.md -------------------------------------------------------------------------------- /RunSling.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryDazoo/Slinger/HEAD/RunSling.bat -------------------------------------------------------------------------------- /SlingboxServerNetworkingGuide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryDazoo/Slinger/HEAD/SlingboxServerNetworkingGuide.pdf -------------------------------------------------------------------------------- /V3.08_release_notes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryDazoo/Slinger/HEAD/V3.08_release_notes.pdf -------------------------------------------------------------------------------- /V3.08d_release_notes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryDazoo/Slinger/HEAD/V3.08d_release_notes.pdf -------------------------------------------------------------------------------- /V3.08e_release_notes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryDazoo/Slinger/HEAD/V3.08e_release_notes.pdf -------------------------------------------------------------------------------- /V3.08f_release_notes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryDazoo/Slinger/HEAD/V3.08f_release_notes.pdf -------------------------------------------------------------------------------- /V3.0x_ReleaseNotes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryDazoo/Slinger/HEAD/V3.0x_ReleaseNotes.pdf -------------------------------------------------------------------------------- /V4.0_release_notes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryDazoo/Slinger/HEAD/V4.0_release_notes.pdf -------------------------------------------------------------------------------- /assets/img/sc-get-pwd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryDazoo/Slinger/HEAD/assets/img/sc-get-pwd.png -------------------------------------------------------------------------------- /assets/img/sc-iden-endp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryDazoo/Slinger/HEAD/assets/img/sc-iden-endp.png -------------------------------------------------------------------------------- /config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryDazoo/Slinger/HEAD/config.ini -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryDazoo/Slinger/HEAD/favicon.ico -------------------------------------------------------------------------------- /remote.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryDazoo/Slinger/HEAD/remote.txt -------------------------------------------------------------------------------- /sb-pwd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryDazoo/Slinger/HEAD/sb-pwd.md -------------------------------------------------------------------------------- /sling.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryDazoo/Slinger/HEAD/sling.service -------------------------------------------------------------------------------- /sling_openrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryDazoo/Slinger/HEAD/sling_openrc -------------------------------------------------------------------------------- /slingbox_server.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryDazoo/Slinger/HEAD/slingbox_server.exe -------------------------------------------------------------------------------- /slingbox_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryDazoo/Slinger/HEAD/slingbox_server.py -------------------------------------------------------------------------------- /unified_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryDazoo/Slinger/HEAD/unified_config.ini --------------------------------------------------------------------------------