├── README.md ├── local ├── README.md ├── components │ └── StatusScreen.xml ├── images │ ├── channel-poster_fhd.png │ ├── channel-poster_hd.png │ ├── channel-poster_sd.png │ ├── splash-screen_fhd.jpg │ ├── splash-screen_hd.jpg │ └── splash-screen_sd.jpg ├── manifest └── source │ └── Main.brs ├── remote ├── README.md ├── bootstrap.conf ├── components │ ├── StatusScreen.brs │ └── StatusScreen.xml ├── images │ ├── channel-poster_fhd.png │ ├── channel-poster_hd.png │ ├── channel-poster_sd.png │ ├── spinner.png │ ├── splash-screen_fhd.jpg │ ├── splash-screen_hd.jpg │ └── splash-screen_sd.jpg ├── manifest ├── payload.sh ├── resolv.sh └── source │ └── Main.brs └── server ├── README.md └── setup.sh /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamasoft/RootMyRoku/HEAD/README.md -------------------------------------------------------------------------------- /local/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamasoft/RootMyRoku/HEAD/local/README.md -------------------------------------------------------------------------------- /local/components/StatusScreen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamasoft/RootMyRoku/HEAD/local/components/StatusScreen.xml -------------------------------------------------------------------------------- /local/images/channel-poster_fhd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamasoft/RootMyRoku/HEAD/local/images/channel-poster_fhd.png -------------------------------------------------------------------------------- /local/images/channel-poster_hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamasoft/RootMyRoku/HEAD/local/images/channel-poster_hd.png -------------------------------------------------------------------------------- /local/images/channel-poster_sd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamasoft/RootMyRoku/HEAD/local/images/channel-poster_sd.png -------------------------------------------------------------------------------- /local/images/splash-screen_fhd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamasoft/RootMyRoku/HEAD/local/images/splash-screen_fhd.jpg -------------------------------------------------------------------------------- /local/images/splash-screen_hd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamasoft/RootMyRoku/HEAD/local/images/splash-screen_hd.jpg -------------------------------------------------------------------------------- /local/images/splash-screen_sd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamasoft/RootMyRoku/HEAD/local/images/splash-screen_sd.jpg -------------------------------------------------------------------------------- /local/manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamasoft/RootMyRoku/HEAD/local/manifest -------------------------------------------------------------------------------- /local/source/Main.brs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamasoft/RootMyRoku/HEAD/local/source/Main.brs -------------------------------------------------------------------------------- /remote/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamasoft/RootMyRoku/HEAD/remote/README.md -------------------------------------------------------------------------------- /remote/bootstrap.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamasoft/RootMyRoku/HEAD/remote/bootstrap.conf -------------------------------------------------------------------------------- /remote/components/StatusScreen.brs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamasoft/RootMyRoku/HEAD/remote/components/StatusScreen.brs -------------------------------------------------------------------------------- /remote/components/StatusScreen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamasoft/RootMyRoku/HEAD/remote/components/StatusScreen.xml -------------------------------------------------------------------------------- /remote/images/channel-poster_fhd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamasoft/RootMyRoku/HEAD/remote/images/channel-poster_fhd.png -------------------------------------------------------------------------------- /remote/images/channel-poster_hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamasoft/RootMyRoku/HEAD/remote/images/channel-poster_hd.png -------------------------------------------------------------------------------- /remote/images/channel-poster_sd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamasoft/RootMyRoku/HEAD/remote/images/channel-poster_sd.png -------------------------------------------------------------------------------- /remote/images/spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamasoft/RootMyRoku/HEAD/remote/images/spinner.png -------------------------------------------------------------------------------- /remote/images/splash-screen_fhd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamasoft/RootMyRoku/HEAD/remote/images/splash-screen_fhd.jpg -------------------------------------------------------------------------------- /remote/images/splash-screen_hd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamasoft/RootMyRoku/HEAD/remote/images/splash-screen_hd.jpg -------------------------------------------------------------------------------- /remote/images/splash-screen_sd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamasoft/RootMyRoku/HEAD/remote/images/splash-screen_sd.jpg -------------------------------------------------------------------------------- /remote/manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamasoft/RootMyRoku/HEAD/remote/manifest -------------------------------------------------------------------------------- /remote/payload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamasoft/RootMyRoku/HEAD/remote/payload.sh -------------------------------------------------------------------------------- /remote/resolv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamasoft/RootMyRoku/HEAD/remote/resolv.sh -------------------------------------------------------------------------------- /remote/source/Main.brs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamasoft/RootMyRoku/HEAD/remote/source/Main.brs -------------------------------------------------------------------------------- /server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamasoft/RootMyRoku/HEAD/server/README.md -------------------------------------------------------------------------------- /server/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamasoft/RootMyRoku/HEAD/server/setup.sh --------------------------------------------------------------------------------