Go to file
Jon Banafato accf8ecfa3 Fix maxPages off-by-one bug (#50)
The `pager.maxPages` calculation currently handles the case where there
are fewer than `page_size` items to display but will cut off the final
page for any page count larger than one. This change makes the page size
the ceiling of the calculation in all cases.
2019-07-12 23:10:54 -05:00
.github Adding github stuff and images 2019-04-28 15:49:11 -04:00
components Make ItemGrids more abstract (#49) 2019-07-09 08:57:59 -05:00
images Resize poster images and commit images 2019-04-29 11:11:45 -05:00
source Fix maxPages off-by-one bug (#50) 2019-07-12 23:10:54 -05:00
tests **Changes** 2019-07-07 17:50:19 -04:00
.gitignore Makefile and Rooibos testing 2019-05-02 13:45:07 -04:00
app.mk Makefile and Rooibos testing 2019-05-02 13:45:07 -04: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 Resize poster images 2019-04-28 23:00:53 -05:00
README.md Readme fixes 2019-05-03 08:52:46 -04:00

Jellyfin app for Roku

Disclaimer: This is not complete, but making good progress!

Right now the only things stored on your device are server name, server port, user id, and some user preferences like movie sort order.

At any point, the format that is used to save those settings could change, and your data could be effectively lost (and you'll have to re-enter it).

In fact, it is likely this early on, as a few design decisions were made before I knew much about BrightScript format. Patience is appreciated.

Images

With ImageMagick installed

sh make_images.sh

This will update the poster and splash images from the jellyfin-ux repo.

Testing and Local Deployment

To test and deploy on your Roku device, it must be in developer mode first. Once there, set two environment variables that make uses.

export ROKU_DEV_TARGET=192.168.1.234
export ROKU_DEV_PASSWORD=aaaa

This is the IP address of your roku and the password you set for the rokudev account when you put your device in developer mode.

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. This testing library requires the Rooibos Preprocessor to create a few of the helper files used during the tests. This can be installed via:

npm install -g rooibos-preprocessor

make test will package up the application and tests and the deploy it to the Roku. Test results can be seen via telnet ${ROKU_DEV_TARGET} 8085

Deployment

To deploy the application to your local roku run make install.

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