2019-01-29 23:10:51 -06:00
|
|
|
# Jellyfin app for Roku
|
|
|
|
|
2019-03-19 21:42:37 -05:00
|
|
|
Disclaimer: This is not complete, but making good progress!
|
2019-01-29 23:10:51 -06:00
|
|
|
|
2019-03-19 21:42:37 -05:00
|
|
|
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.
|
2019-01-29 23:10:51 -06:00
|
|
|
|
|
|
|
### Images
|
|
|
|
|
|
|
|
With ImageMagick installed
|
|
|
|
```
|
|
|
|
sh make_images.sh
|
|
|
|
```
|
|
|
|
|
2019-04-28 15:49:11 -04:00
|
|
|
This will update the poster and splash images from the jellyfin-ux repo.
|
2019-02-10 22:49:22 -06:00
|
|
|
|
2019-03-05 10:29:45 -06:00
|
|
|
### Easy Dev Deployment
|
|
|
|
|
|
|
|
There are 2 included scripts, `dev_upload.sh` and `dev_clear.sh`, that are
|
|
|
|
intended to be quick easy ways to zip up this repo and put it onto your Roku
|
|
|
|
for you, and clear your Roku of any dev deployment respectively.
|
|
|
|
|
|
|
|
You need to enable developer mode on your Roku:
|
|
|
|
http://sdkdocs.roku.com/display/sdkdoc/Developer+Guide
|
|
|
|
|
|
|
|
And then
|
|
|
|
```
|
|
|
|
export ROKU_DEV_TARGET=<your roku IP>
|
|
|
|
export ROKU_DEV_PASSWORD=<your roku password>
|
2019-04-28 15:58:41 -04:00
|
|
|
```
|