Go to file
2019-10-05 22:48:25 -04:00
.github Adding github stuff and images 2019-04-28 15:49:11 -04:00
components Handle int better 2019-09-23 23:49:09 -05:00
images Resize poster images and commit images 2019-04-29 11:11:45 -05:00
source Use app version from manifest file for auth 2019-10-05 22:48:25 -04:00
tests **Changes** 2019-07-07 17:50:19 -04:00
.gitignore npm init and modify app.mk to use local packages instead of global. 2019-09-08 22:02:09 -05:00
app.mk npm init and modify app.mk to use local packages instead of global. 2019-09-08 22:02:09 -05:00
DEVGUIDE.md npm init and modify app.mk to use local packages instead of global. 2019-09-08 22:02:09 -05:00
LICENSE Generate some images 2019-01-29 23:10:51 -06:00
make_images.sh Resize poster images and commit images 2019-04-29 11:11:45 -05:00
Makefile removing unused test files 2019-05-02 13:47:31 -04:00
manifest Set ui_resolutions to fhd (#73) 2019-10-05 20:30:36 -04:00
package-lock.json npm init and modify app.mk to use local packages instead of global. 2019-09-08 22:02:09 -05:00
package.json npm init and modify app.mk to use local packages instead of global. 2019-09-08 22:02:09 -05:00
README.md Update testing install and fix readability 2019-10-04 00:34:57 -04:00

Jellyfin app for Roku

This app is not complete!

Currently, the data stored on your Roku device are server name, server port, user id, and some user preferences like movie sort order.

The format that is used to save those settings could change at any time and your data could be lost and you'd have to re-enter it.

Getting Started

Follow the steps below or checkout the Development Guide For New Devs

Developer Mode

Put your Roku device in developer mode

Clone the GitHub Repo

Copy all of the application files to a new folder and then change directories:

https://github.com/jellyfin/jellyfin-roku.git
cd jellyfin-roku

Login Details

Run the commands below - Replacing the IP and password (using the info from the first step)

export ROKU_DEV_TARGET=192.168.1.234
export ROKU_DEV_PASSWORD=aaaa

This will allow you to test your code without having to manually upload a .zip file every time

Download Images

Install these packages:

sudo apt-get install imagemagick wget make nodejs npm

Then run this script to download the images from the jellyfin-ux repo:

sh make_images.sh

Deploy

This packages up the application, sends it to your Roku, and launches the channel:

make install

Testing

Testing is done with the Rooibos library.

This works by including the tests in the deployment and then looking at telnet for the test results. To use the testing library you need to install rooibos-cli:

Run this in the root app directory:

npm install -g rooibos-cli

To deploy the application with tests:

make test

To see test results and crash reports:

telnet ${ROKU_DEV_TARGET} 8085

To exit telnet: CTRL + ] and then type quit + ENTER