├── .eslintignore ├── .eslintrc.yml ├── .gitignore ├── README.md ├── config.json ├── dep └── jellyfin-sdk-0.10.0-1.tgz ├── dist ├── UIConfig.json ├── assets │ └── images │ │ ├── album.png │ │ ├── avatar.png │ │ ├── folder.png │ │ ├── folder.xcf │ │ ├── genre.png │ │ ├── jellyfin-mono.png │ │ ├── jellyfin.png │ │ ├── jellyfin.svg │ │ ├── playlist.png │ │ └── song.png ├── i18n │ ├── strings_en.json │ ├── strings_zh.json │ └── strings_zh_TW.json ├── index.d.ts ├── index.d.ts.map ├── index.js ├── index.js.map ├── lib │ ├── JellyfinContext.d.ts │ ├── JellyfinContext.d.ts.map │ ├── JellyfinContext.js │ ├── JellyfinContext.js.map │ ├── connection │ │ ├── ConnectionManager.d.ts │ │ ├── ConnectionManager.d.ts.map │ │ ├── ConnectionManager.js │ │ ├── ConnectionManager.js.map │ │ ├── ServerConnection.d.ts │ │ ├── ServerConnection.d.ts.map │ │ ├── ServerConnection.js │ │ ├── ServerConnection.js.map │ │ ├── ServerPoller.d.ts │ │ ├── ServerPoller.d.ts.map │ │ ├── ServerPoller.js │ │ └── ServerPoller.js.map │ ├── controller │ │ ├── browse │ │ │ ├── index.d.ts │ │ │ ├── index.d.ts.map │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ └── view-handlers │ │ │ │ ├── AlbumViewHandler.d.ts │ │ │ │ ├── AlbumViewHandler.d.ts.map │ │ │ │ ├── AlbumViewHandler.js │ │ │ │ ├── AlbumViewHandler.js.map │ │ │ │ ├── ArtistViewHandler.d.ts │ │ │ │ ├── ArtistViewHandler.d.ts.map │ │ │ │ ├── ArtistViewHandler.js │ │ │ │ ├── ArtistViewHandler.js.map │ │ │ │ ├── BaseViewHandler.d.ts │ │ │ │ ├── BaseViewHandler.d.ts.map │ │ │ │ ├── BaseViewHandler.js │ │ │ │ ├── BaseViewHandler.js.map │ │ │ │ ├── CollectionViewHandler.d.ts │ │ │ │ ├── CollectionViewHandler.d.ts.map │ │ │ │ ├── CollectionViewHandler.js │ │ │ │ ├── CollectionViewHandler.js.map │ │ │ │ ├── CollectionsViewHandler.d.ts │ │ │ │ ├── CollectionsViewHandler.d.ts.map │ │ │ │ ├── CollectionsViewHandler.js │ │ │ │ ├── CollectionsViewHandler.js.map │ │ │ │ ├── Explodable.d.ts │ │ │ │ ├── Explodable.d.ts.map │ │ │ │ ├── Explodable.js │ │ │ │ ├── Explodable.js.map │ │ │ │ ├── FilterSelectionViewHandler.d.ts │ │ │ │ ├── FilterSelectionViewHandler.d.ts.map │ │ │ │ ├── FilterSelectionViewHandler.js │ │ │ │ ├── FilterSelectionViewHandler.js.map │ │ │ │ ├── FilterableViewHandler.d.ts │ │ │ │ ├── FilterableViewHandler.d.ts.map │ │ │ │ ├── FilterableViewHandler.js │ │ │ │ ├── FilterableViewHandler.js.map │ │ │ │ ├── FolderViewHandler.d.ts │ │ │ │ ├── FolderViewHandler.d.ts.map │ │ │ │ ├── FolderViewHandler.js │ │ │ │ ├── FolderViewHandler.js.map │ │ │ │ ├── GenreViewHandler.d.ts │ │ │ │ ├── GenreViewHandler.d.ts.map │ │ │ │ ├── GenreViewHandler.js │ │ │ │ ├── GenreViewHandler.js.map │ │ │ │ ├── LibraryViewHandler.d.ts │ │ │ │ ├── LibraryViewHandler.d.ts.map │ │ │ │ ├── LibraryViewHandler.js │ │ │ │ ├── LibraryViewHandler.js.map │ │ │ │ ├── PlaylistViewHandler.d.ts │ │ │ │ ├── PlaylistViewHandler.d.ts.map │ │ │ │ ├── PlaylistViewHandler.js │ │ │ │ ├── PlaylistViewHandler.js.map │ │ │ │ ├── RootViewHandler.d.ts │ │ │ │ ├── RootViewHandler.d.ts.map │ │ │ │ ├── RootViewHandler.js │ │ │ │ ├── RootViewHandler.js.map │ │ │ │ ├── SongViewHandler.d.ts │ │ │ │ ├── SongViewHandler.d.ts.map │ │ │ │ ├── SongViewHandler.js │ │ │ │ ├── SongViewHandler.js.map │ │ │ │ ├── UserViewViewHandler.d.ts │ │ │ │ ├── UserViewViewHandler.d.ts.map │ │ │ │ ├── UserViewViewHandler.js │ │ │ │ ├── UserViewViewHandler.js.map │ │ │ │ ├── View.d.ts │ │ │ │ ├── View.d.ts.map │ │ │ │ ├── View.js │ │ │ │ ├── View.js.map │ │ │ │ ├── ViewHandler.d.ts │ │ │ │ ├── ViewHandler.d.ts.map │ │ │ │ ├── ViewHandler.js │ │ │ │ ├── ViewHandler.js.map │ │ │ │ ├── ViewHandlerFactory.d.ts │ │ │ │ ├── ViewHandlerFactory.d.ts.map │ │ │ │ ├── ViewHandlerFactory.js │ │ │ │ ├── ViewHandlerFactory.js.map │ │ │ │ ├── ViewHelper.d.ts │ │ │ │ ├── ViewHelper.d.ts.map │ │ │ │ ├── ViewHelper.js │ │ │ │ ├── ViewHelper.js.map │ │ │ │ └── renderer │ │ │ │ ├── AlbumRenderer.d.ts │ │ │ │ ├── AlbumRenderer.d.ts.map │ │ │ │ ├── AlbumRenderer.js │ │ │ │ ├── AlbumRenderer.js.map │ │ │ │ ├── ArtistRenderer.d.ts │ │ │ │ ├── ArtistRenderer.d.ts.map │ │ │ │ ├── ArtistRenderer.js │ │ │ │ ├── ArtistRenderer.js.map │ │ │ │ ├── BaseRenderer.d.ts │ │ │ │ ├── BaseRenderer.d.ts.map │ │ │ │ ├── BaseRenderer.js │ │ │ │ ├── BaseRenderer.js.map │ │ │ │ ├── CollectionRenderer.d.ts │ │ │ │ ├── CollectionRenderer.d.ts.map │ │ │ │ ├── CollectionRenderer.js │ │ │ │ ├── CollectionRenderer.js.map │ │ │ │ ├── FolderRenderer.d.ts │ │ │ │ ├── FolderRenderer.d.ts.map │ │ │ │ ├── FolderRenderer.js │ │ │ │ ├── FolderRenderer.js.map │ │ │ │ ├── GenreRenderer.d.ts │ │ │ │ ├── GenreRenderer.d.ts.map │ │ │ │ ├── GenreRenderer.js │ │ │ │ ├── GenreRenderer.js.map │ │ │ │ ├── PlaylistRenderer.d.ts │ │ │ │ ├── PlaylistRenderer.d.ts.map │ │ │ │ ├── PlaylistRenderer.js │ │ │ │ ├── PlaylistRenderer.js.map │ │ │ │ ├── ServerRenderer.d.ts │ │ │ │ ├── ServerRenderer.d.ts.map │ │ │ │ ├── ServerRenderer.js │ │ │ │ ├── ServerRenderer.js.map │ │ │ │ ├── SongRenderer.d.ts │ │ │ │ ├── SongRenderer.d.ts.map │ │ │ │ ├── SongRenderer.js │ │ │ │ ├── SongRenderer.js.map │ │ │ │ ├── UserViewRenderer.d.ts │ │ │ │ ├── UserViewRenderer.d.ts.map │ │ │ │ ├── UserViewRenderer.js │ │ │ │ ├── UserViewRenderer.js.map │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.d.ts.map │ │ │ │ ├── index.js │ │ │ │ └── index.js.map │ │ ├── play │ │ │ ├── PlayController.d.ts │ │ │ ├── PlayController.d.ts.map │ │ │ ├── PlayController.js │ │ │ └── PlayController.js.map │ │ └── search │ │ │ ├── SearchController.d.ts │ │ │ ├── SearchController.d.ts.map │ │ │ ├── SearchController.js │ │ │ └── SearchController.js.map │ ├── entities │ │ ├── Album.d.ts │ │ ├── Album.d.ts.map │ │ ├── Album.js │ │ ├── Album.js.map │ │ ├── Artist.d.ts │ │ ├── Artist.d.ts.map │ │ ├── Artist.js │ │ ├── Artist.js.map │ │ ├── BaseEntity.d.ts │ │ ├── BaseEntity.d.ts.map │ │ ├── BaseEntity.js │ │ ├── BaseEntity.js.map │ │ ├── Collection.d.ts │ │ ├── Collection.d.ts.map │ │ ├── Collection.js │ │ ├── Collection.js.map │ │ ├── Folder.d.ts │ │ ├── Folder.d.ts.map │ │ ├── Folder.js │ │ ├── Folder.js.map │ │ ├── Genre.d.ts │ │ ├── Genre.d.ts.map │ │ ├── Genre.js │ │ ├── Genre.js.map │ │ ├── Playlist.d.ts │ │ ├── Playlist.d.ts.map │ │ ├── Playlist.js │ │ ├── Playlist.js.map │ │ ├── Server.d.ts │ │ ├── Server.d.ts.map │ │ ├── Server.js │ │ ├── Server.js.map │ │ ├── Song.d.ts │ │ ├── Song.d.ts.map │ │ ├── Song.js │ │ ├── Song.js.map │ │ ├── UserView.d.ts │ │ ├── UserView.d.ts.map │ │ ├── UserView.js │ │ ├── UserView.js.map │ │ ├── index.d.ts │ │ ├── index.d.ts.map │ │ ├── index.js │ │ └── index.js.map │ ├── model │ │ ├── AlbumModel.d.ts │ │ ├── AlbumModel.d.ts.map │ │ ├── AlbumModel.js │ │ ├── AlbumModel.js.map │ │ ├── ArtistModel.d.ts │ │ ├── ArtistModel.d.ts.map │ │ ├── ArtistModel.js │ │ ├── ArtistModel.js.map │ │ ├── BaseModel.d.ts │ │ ├── BaseModel.d.ts.map │ │ ├── BaseModel.js │ │ ├── BaseModel.js.map │ │ ├── CollectionModel.d.ts │ │ ├── CollectionModel.d.ts.map │ │ ├── CollectionModel.js │ │ ├── CollectionModel.js.map │ │ ├── FolderModel.d.ts │ │ ├── FolderModel.d.ts.map │ │ ├── FolderModel.js │ │ ├── FolderModel.js.map │ │ ├── GenreModel.d.ts │ │ ├── GenreModel.d.ts.map │ │ ├── GenreModel.js │ │ ├── GenreModel.js.map │ │ ├── PlaylistModel.d.ts │ │ ├── PlaylistModel.d.ts.map │ │ ├── PlaylistModel.js │ │ ├── PlaylistModel.js.map │ │ ├── SongModel.d.ts │ │ ├── SongModel.d.ts.map │ │ ├── SongModel.js │ │ ├── SongModel.js.map │ │ ├── UserViewModel.d.ts │ │ ├── UserViewModel.d.ts.map │ │ ├── UserViewModel.js │ │ ├── UserViewModel.js.map │ │ ├── filter │ │ │ ├── AZFilterModel.d.ts │ │ │ ├── AZFilterModel.d.ts.map │ │ │ ├── AZFilterModel.js │ │ │ ├── AZFilterModel.js.map │ │ │ ├── FilterFilterModel.d.ts │ │ │ ├── FilterFilterModel.d.ts.map │ │ │ ├── FilterFilterModel.js │ │ │ ├── FilterFilterModel.js.map │ │ │ ├── FilterModel.d.ts │ │ │ ├── FilterModel.d.ts.map │ │ │ ├── FilterModel.js │ │ │ ├── FilterModel.js.map │ │ │ ├── GenreFilterModel.d.ts │ │ │ ├── GenreFilterModel.d.ts.map │ │ │ ├── GenreFilterModel.js │ │ │ ├── GenreFilterModel.js.map │ │ │ ├── SortFilterModel.d.ts │ │ │ ├── SortFilterModel.d.ts.map │ │ │ ├── SortFilterModel.js │ │ │ ├── SortFilterModel.js.map │ │ │ ├── YearFilterModel.d.ts │ │ │ ├── YearFilterModel.d.ts.map │ │ │ ├── YearFilterModel.js │ │ │ └── YearFilterModel.js.map │ │ ├── index.d.ts │ │ ├── index.d.ts.map │ │ ├── index.js │ │ ├── index.js.map │ │ └── parser │ │ │ ├── AlbumParser.d.ts │ │ │ ├── AlbumParser.d.ts.map │ │ │ ├── AlbumParser.js │ │ │ ├── AlbumParser.js.map │ │ │ ├── ArtistParser.d.ts │ │ │ ├── ArtistParser.d.ts.map │ │ │ ├── ArtistParser.js │ │ │ ├── ArtistParser.js.map │ │ │ ├── BaseParser.d.ts │ │ │ ├── BaseParser.d.ts.map │ │ │ ├── BaseParser.js │ │ │ ├── BaseParser.js.map │ │ │ ├── CollectionParser.d.ts │ │ │ ├── CollectionParser.d.ts.map │ │ │ ├── CollectionParser.js │ │ │ ├── CollectionParser.js.map │ │ │ ├── FolderContentParser.d.ts │ │ │ ├── FolderContentParser.d.ts.map │ │ │ ├── FolderContentParser.js │ │ │ ├── FolderContentParser.js.map │ │ │ ├── FolderParser.d.ts │ │ │ ├── FolderParser.d.ts.map │ │ │ ├── FolderParser.js │ │ │ ├── FolderParser.js.map │ │ │ ├── GenreParser.d.ts │ │ │ ├── GenreParser.d.ts.map │ │ │ ├── GenreParser.js │ │ │ ├── GenreParser.js.map │ │ │ ├── LyricsParser.d.ts │ │ │ ├── LyricsParser.d.ts.map │ │ │ ├── LyricsParser.js │ │ │ ├── LyricsParser.js.map │ │ │ ├── Parser.d.ts │ │ │ ├── Parser.d.ts.map │ │ │ ├── Parser.js │ │ │ ├── Parser.js.map │ │ │ ├── PlaylistParser.d.ts │ │ │ ├── PlaylistParser.d.ts.map │ │ │ ├── PlaylistParser.js │ │ │ ├── PlaylistParser.js.map │ │ │ ├── SongParser.d.ts │ │ │ ├── SongParser.d.ts.map │ │ │ ├── SongParser.js │ │ │ ├── SongParser.js.map │ │ │ ├── UserViewParser.d.ts │ │ │ ├── UserViewParser.d.ts.map │ │ │ ├── UserViewParser.js │ │ │ └── UserViewParser.js.map │ └── util │ │ ├── AlbumArtHandler.d.ts │ │ ├── AlbumArtHandler.d.ts.map │ │ ├── AlbumArtHandler.js │ │ ├── AlbumArtHandler.js.map │ │ ├── JellyfinNowPlayingMetadataProvider.d.ts │ │ ├── JellyfinNowPlayingMetadataProvider.d.ts.map │ │ ├── JellyfinNowPlayingMetadataProvider.js │ │ ├── JellyfinNowPlayingMetadataProvider.js.map │ │ ├── PluginConfig.d.ts │ │ ├── PluginConfig.d.ts.map │ │ ├── PluginConfig.js │ │ ├── PluginConfig.js.map │ │ ├── ServerHelper.d.ts │ │ ├── ServerHelper.d.ts.map │ │ ├── ServerHelper.js │ │ ├── ServerHelper.js.map │ │ ├── SongHelper.d.ts │ │ ├── SongHelper.d.ts.map │ │ ├── SongHelper.js │ │ ├── SongHelper.js.map │ │ ├── StopWatch.d.ts │ │ ├── StopWatch.d.ts.map │ │ ├── StopWatch.js │ │ ├── StopWatch.js.map │ │ ├── Type.d.ts │ │ ├── Type.d.ts.map │ │ ├── Type.js │ │ ├── Type.js.map │ │ ├── UI.d.ts │ │ ├── UI.d.ts.map │ │ ├── UI.js │ │ ├── UI.js.map │ │ ├── index.d.ts │ │ ├── index.d.ts.map │ │ ├── index.js │ │ └── index.js.map └── package.json ├── fixup.sh ├── install.sh ├── package.json ├── src ├── UIConfig.json ├── assets │ └── images │ │ ├── album.png │ │ ├── avatar.png │ │ ├── folder.png │ │ ├── folder.xcf │ │ ├── genre.png │ │ ├── jellyfin-mono.png │ │ ├── jellyfin.png │ │ ├── jellyfin.svg │ │ ├── playlist.png │ │ └── song.png ├── config.json ├── i18n │ ├── strings_en.json │ ├── strings_zh.json │ └── strings_zh_TW.json ├── index.ts ├── lib │ ├── JellyfinContext.ts │ ├── connection │ │ ├── ConnectionManager.ts │ │ ├── ServerConnection.ts │ │ └── ServerPoller.ts │ ├── controller │ │ ├── browse │ │ │ ├── index.ts │ │ │ └── view-handlers │ │ │ │ ├── AlbumViewHandler.ts │ │ │ │ ├── ArtistViewHandler.ts │ │ │ │ ├── BaseViewHandler.ts │ │ │ │ ├── CollectionViewHandler.ts │ │ │ │ ├── CollectionsViewHandler.ts │ │ │ │ ├── Explodable.ts │ │ │ │ ├── FilterSelectionViewHandler.ts │ │ │ │ ├── FilterableViewHandler.ts │ │ │ │ ├── FolderViewHandler.ts │ │ │ │ ├── GenreViewHandler.ts │ │ │ │ ├── LibraryViewHandler.ts │ │ │ │ ├── PlaylistViewHandler.ts │ │ │ │ ├── RootViewHandler.ts │ │ │ │ ├── SongViewHandler.ts │ │ │ │ ├── UserViewViewHandler.ts │ │ │ │ ├── View.ts │ │ │ │ ├── ViewHandler.ts │ │ │ │ ├── ViewHandlerFactory.ts │ │ │ │ ├── ViewHelper.ts │ │ │ │ └── renderer │ │ │ │ ├── AlbumRenderer.ts │ │ │ │ ├── ArtistRenderer.ts │ │ │ │ ├── BaseRenderer.ts │ │ │ │ ├── CollectionRenderer.ts │ │ │ │ ├── FolderRenderer.ts │ │ │ │ ├── GenreRenderer.ts │ │ │ │ ├── PlaylistRenderer.ts │ │ │ │ ├── ServerRenderer.ts │ │ │ │ ├── SongRenderer.ts │ │ │ │ ├── UserViewRenderer.ts │ │ │ │ └── index.ts │ │ ├── play │ │ │ └── PlayController.ts │ │ └── search │ │ │ └── SearchController.ts │ ├── entities │ │ ├── Album.ts │ │ ├── Artist.ts │ │ ├── BaseEntity.ts │ │ ├── Collection.ts │ │ ├── Folder.ts │ │ ├── Genre.ts │ │ ├── Playlist.ts │ │ ├── Server.ts │ │ ├── Song.ts │ │ ├── UserView.ts │ │ └── index.ts │ ├── model │ │ ├── AlbumModel.ts │ │ ├── ArtistModel.ts │ │ ├── BaseModel.ts │ │ ├── CollectionModel.ts │ │ ├── FolderModel.ts │ │ ├── GenreModel.ts │ │ ├── PlaylistModel.ts │ │ ├── SongModel.ts │ │ ├── UserViewModel.ts │ │ ├── filter │ │ │ ├── AZFilterModel.ts │ │ │ ├── FilterFilterModel.ts │ │ │ ├── FilterModel.ts │ │ │ ├── GenreFilterModel.ts │ │ │ ├── SortFilterModel.ts │ │ │ └── YearFilterModel.ts │ │ ├── index.ts │ │ └── parser │ │ │ ├── AlbumParser.ts │ │ │ ├── ArtistParser.ts │ │ │ ├── BaseParser.ts │ │ │ ├── CollectionParser.ts │ │ │ ├── FolderContentParser.ts │ │ │ ├── FolderParser.ts │ │ │ ├── GenreParser.ts │ │ │ ├── LyricsParser.ts │ │ │ ├── Parser.ts │ │ │ ├── PlaylistParser.ts │ │ │ ├── SongParser.ts │ │ │ └── UserViewParser.ts │ └── util │ │ ├── AlbumArtHandler.ts │ │ ├── JellyfinNowPlayingMetadataProvider.ts │ │ ├── PluginConfig.ts │ │ ├── ServerHelper.ts │ │ ├── SongHelper.ts │ │ ├── StopWatch.ts │ │ ├── Type.ts │ │ ├── UI.ts │ │ └── index.ts └── tsconfig.json ├── tsconfig.json └── uninstall.sh /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | test 3 | tsconfig.tsbuildinfo -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dep/jellyfin-sdk-0.10.0-1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dep/jellyfin-sdk-0.10.0-1.tgz -------------------------------------------------------------------------------- /dist/UIConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/UIConfig.json -------------------------------------------------------------------------------- /dist/assets/images/album.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/assets/images/album.png -------------------------------------------------------------------------------- /dist/assets/images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/assets/images/avatar.png -------------------------------------------------------------------------------- /dist/assets/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/assets/images/folder.png -------------------------------------------------------------------------------- /dist/assets/images/folder.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/assets/images/folder.xcf -------------------------------------------------------------------------------- /dist/assets/images/genre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/assets/images/genre.png -------------------------------------------------------------------------------- /dist/assets/images/jellyfin-mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/assets/images/jellyfin-mono.png -------------------------------------------------------------------------------- /dist/assets/images/jellyfin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/assets/images/jellyfin.png -------------------------------------------------------------------------------- /dist/assets/images/jellyfin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/assets/images/jellyfin.svg -------------------------------------------------------------------------------- /dist/assets/images/playlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/assets/images/playlist.png -------------------------------------------------------------------------------- /dist/assets/images/song.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/assets/images/song.png -------------------------------------------------------------------------------- /dist/i18n/strings_en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/i18n/strings_en.json -------------------------------------------------------------------------------- /dist/i18n/strings_zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/i18n/strings_zh.json -------------------------------------------------------------------------------- /dist/i18n/strings_zh_TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/i18n/strings_zh_TW.json -------------------------------------------------------------------------------- /dist/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/index.d.ts -------------------------------------------------------------------------------- /dist/index.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/index.d.ts.map -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/index.js.map -------------------------------------------------------------------------------- /dist/lib/JellyfinContext.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/JellyfinContext.d.ts -------------------------------------------------------------------------------- /dist/lib/JellyfinContext.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/JellyfinContext.d.ts.map -------------------------------------------------------------------------------- /dist/lib/JellyfinContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/JellyfinContext.js -------------------------------------------------------------------------------- /dist/lib/JellyfinContext.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/JellyfinContext.js.map -------------------------------------------------------------------------------- /dist/lib/connection/ConnectionManager.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/connection/ConnectionManager.d.ts -------------------------------------------------------------------------------- /dist/lib/connection/ConnectionManager.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/connection/ConnectionManager.d.ts.map -------------------------------------------------------------------------------- /dist/lib/connection/ConnectionManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/connection/ConnectionManager.js -------------------------------------------------------------------------------- /dist/lib/connection/ConnectionManager.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/connection/ConnectionManager.js.map -------------------------------------------------------------------------------- /dist/lib/connection/ServerConnection.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/connection/ServerConnection.d.ts -------------------------------------------------------------------------------- /dist/lib/connection/ServerConnection.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/connection/ServerConnection.d.ts.map -------------------------------------------------------------------------------- /dist/lib/connection/ServerConnection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/connection/ServerConnection.js -------------------------------------------------------------------------------- /dist/lib/connection/ServerConnection.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/connection/ServerConnection.js.map -------------------------------------------------------------------------------- /dist/lib/connection/ServerPoller.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/connection/ServerPoller.d.ts -------------------------------------------------------------------------------- /dist/lib/connection/ServerPoller.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/connection/ServerPoller.d.ts.map -------------------------------------------------------------------------------- /dist/lib/connection/ServerPoller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/connection/ServerPoller.js -------------------------------------------------------------------------------- /dist/lib/connection/ServerPoller.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/connection/ServerPoller.js.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/index.d.ts -------------------------------------------------------------------------------- /dist/lib/controller/browse/index.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/index.d.ts.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/index.js -------------------------------------------------------------------------------- /dist/lib/controller/browse/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/index.js.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/AlbumViewHandler.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/AlbumViewHandler.d.ts -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/AlbumViewHandler.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/AlbumViewHandler.d.ts.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/AlbumViewHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/AlbumViewHandler.js -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/AlbumViewHandler.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/AlbumViewHandler.js.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/ArtistViewHandler.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/ArtistViewHandler.d.ts -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/ArtistViewHandler.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/ArtistViewHandler.d.ts.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/ArtistViewHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/ArtistViewHandler.js -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/ArtistViewHandler.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/ArtistViewHandler.js.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/BaseViewHandler.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/BaseViewHandler.d.ts -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/BaseViewHandler.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/BaseViewHandler.d.ts.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/BaseViewHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/BaseViewHandler.js -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/BaseViewHandler.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/BaseViewHandler.js.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/CollectionViewHandler.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/CollectionViewHandler.d.ts -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/CollectionViewHandler.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/CollectionViewHandler.d.ts.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/CollectionViewHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/CollectionViewHandler.js -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/CollectionViewHandler.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/CollectionViewHandler.js.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/CollectionsViewHandler.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/CollectionsViewHandler.d.ts -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/CollectionsViewHandler.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/CollectionsViewHandler.d.ts.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/CollectionsViewHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/CollectionsViewHandler.js -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/CollectionsViewHandler.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/CollectionsViewHandler.js.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/Explodable.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/Explodable.d.ts -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/Explodable.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/Explodable.d.ts.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/Explodable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/Explodable.js -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/Explodable.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/Explodable.js.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/FilterSelectionViewHandler.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/FilterSelectionViewHandler.d.ts -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/FilterSelectionViewHandler.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/FilterSelectionViewHandler.d.ts.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/FilterSelectionViewHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/FilterSelectionViewHandler.js -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/FilterSelectionViewHandler.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/FilterSelectionViewHandler.js.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/FilterableViewHandler.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/FilterableViewHandler.d.ts -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/FilterableViewHandler.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/FilterableViewHandler.d.ts.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/FilterableViewHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/FilterableViewHandler.js -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/FilterableViewHandler.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/FilterableViewHandler.js.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/FolderViewHandler.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/FolderViewHandler.d.ts -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/FolderViewHandler.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/FolderViewHandler.d.ts.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/FolderViewHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/FolderViewHandler.js -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/FolderViewHandler.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/FolderViewHandler.js.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/GenreViewHandler.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/GenreViewHandler.d.ts -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/GenreViewHandler.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/GenreViewHandler.d.ts.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/GenreViewHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/GenreViewHandler.js -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/GenreViewHandler.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/GenreViewHandler.js.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/LibraryViewHandler.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/LibraryViewHandler.d.ts -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/LibraryViewHandler.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/LibraryViewHandler.d.ts.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/LibraryViewHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/LibraryViewHandler.js -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/LibraryViewHandler.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/LibraryViewHandler.js.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/PlaylistViewHandler.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/PlaylistViewHandler.d.ts -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/PlaylistViewHandler.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/PlaylistViewHandler.d.ts.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/PlaylistViewHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/PlaylistViewHandler.js -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/PlaylistViewHandler.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/PlaylistViewHandler.js.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/RootViewHandler.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/RootViewHandler.d.ts -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/RootViewHandler.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/RootViewHandler.d.ts.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/RootViewHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/RootViewHandler.js -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/RootViewHandler.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/RootViewHandler.js.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/SongViewHandler.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/SongViewHandler.d.ts -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/SongViewHandler.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/SongViewHandler.d.ts.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/SongViewHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/SongViewHandler.js -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/SongViewHandler.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/SongViewHandler.js.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/UserViewViewHandler.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/UserViewViewHandler.d.ts -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/UserViewViewHandler.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/UserViewViewHandler.d.ts.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/UserViewViewHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/UserViewViewHandler.js -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/UserViewViewHandler.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/UserViewViewHandler.js.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/View.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/View.d.ts -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/View.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/View.d.ts.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/View.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/View.js -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/View.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/View.js.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/ViewHandler.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/ViewHandler.d.ts -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/ViewHandler.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/ViewHandler.d.ts.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/ViewHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/ViewHandler.js -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/ViewHandler.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/ViewHandler.js.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/ViewHandlerFactory.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/ViewHandlerFactory.d.ts -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/ViewHandlerFactory.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/ViewHandlerFactory.d.ts.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/ViewHandlerFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/ViewHandlerFactory.js -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/ViewHandlerFactory.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/ViewHandlerFactory.js.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/ViewHelper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/ViewHelper.d.ts -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/ViewHelper.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/ViewHelper.d.ts.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/ViewHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/ViewHelper.js -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/ViewHelper.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/ViewHelper.js.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/renderer/AlbumRenderer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/renderer/AlbumRenderer.d.ts -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/renderer/AlbumRenderer.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/renderer/AlbumRenderer.d.ts.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/renderer/AlbumRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/renderer/AlbumRenderer.js -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/renderer/AlbumRenderer.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/renderer/AlbumRenderer.js.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/renderer/ArtistRenderer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/renderer/ArtistRenderer.d.ts -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/renderer/ArtistRenderer.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/renderer/ArtistRenderer.d.ts.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/renderer/ArtistRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/renderer/ArtistRenderer.js -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/renderer/ArtistRenderer.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/renderer/ArtistRenderer.js.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/renderer/BaseRenderer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/renderer/BaseRenderer.d.ts -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/renderer/BaseRenderer.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/renderer/BaseRenderer.d.ts.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/renderer/BaseRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/renderer/BaseRenderer.js -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/renderer/BaseRenderer.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/renderer/BaseRenderer.js.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/renderer/CollectionRenderer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/renderer/CollectionRenderer.d.ts -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/renderer/CollectionRenderer.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/renderer/CollectionRenderer.d.ts.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/renderer/CollectionRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/renderer/CollectionRenderer.js -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/renderer/CollectionRenderer.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/renderer/CollectionRenderer.js.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/renderer/FolderRenderer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/renderer/FolderRenderer.d.ts -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/renderer/FolderRenderer.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/renderer/FolderRenderer.d.ts.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/renderer/FolderRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/renderer/FolderRenderer.js -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/renderer/FolderRenderer.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/renderer/FolderRenderer.js.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/renderer/GenreRenderer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/renderer/GenreRenderer.d.ts -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/renderer/GenreRenderer.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/renderer/GenreRenderer.d.ts.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/renderer/GenreRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/renderer/GenreRenderer.js -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/renderer/GenreRenderer.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/renderer/GenreRenderer.js.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/renderer/PlaylistRenderer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/renderer/PlaylistRenderer.d.ts -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/renderer/PlaylistRenderer.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/renderer/PlaylistRenderer.d.ts.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/renderer/PlaylistRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/renderer/PlaylistRenderer.js -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/renderer/PlaylistRenderer.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/renderer/PlaylistRenderer.js.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/renderer/ServerRenderer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/renderer/ServerRenderer.d.ts -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/renderer/ServerRenderer.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/renderer/ServerRenderer.d.ts.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/renderer/ServerRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/renderer/ServerRenderer.js -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/renderer/ServerRenderer.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/renderer/ServerRenderer.js.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/renderer/SongRenderer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/renderer/SongRenderer.d.ts -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/renderer/SongRenderer.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/renderer/SongRenderer.d.ts.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/renderer/SongRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/renderer/SongRenderer.js -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/renderer/SongRenderer.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/renderer/SongRenderer.js.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/renderer/UserViewRenderer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/renderer/UserViewRenderer.d.ts -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/renderer/UserViewRenderer.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/renderer/UserViewRenderer.d.ts.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/renderer/UserViewRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/renderer/UserViewRenderer.js -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/renderer/UserViewRenderer.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/renderer/UserViewRenderer.js.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/renderer/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/renderer/index.d.ts -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/renderer/index.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/renderer/index.d.ts.map -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/renderer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/renderer/index.js -------------------------------------------------------------------------------- /dist/lib/controller/browse/view-handlers/renderer/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/browse/view-handlers/renderer/index.js.map -------------------------------------------------------------------------------- /dist/lib/controller/play/PlayController.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/play/PlayController.d.ts -------------------------------------------------------------------------------- /dist/lib/controller/play/PlayController.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/play/PlayController.d.ts.map -------------------------------------------------------------------------------- /dist/lib/controller/play/PlayController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/play/PlayController.js -------------------------------------------------------------------------------- /dist/lib/controller/play/PlayController.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/play/PlayController.js.map -------------------------------------------------------------------------------- /dist/lib/controller/search/SearchController.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/search/SearchController.d.ts -------------------------------------------------------------------------------- /dist/lib/controller/search/SearchController.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/search/SearchController.d.ts.map -------------------------------------------------------------------------------- /dist/lib/controller/search/SearchController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/search/SearchController.js -------------------------------------------------------------------------------- /dist/lib/controller/search/SearchController.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/controller/search/SearchController.js.map -------------------------------------------------------------------------------- /dist/lib/entities/Album.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/entities/Album.d.ts -------------------------------------------------------------------------------- /dist/lib/entities/Album.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/entities/Album.d.ts.map -------------------------------------------------------------------------------- /dist/lib/entities/Album.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/entities/Album.js -------------------------------------------------------------------------------- /dist/lib/entities/Album.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/entities/Album.js.map -------------------------------------------------------------------------------- /dist/lib/entities/Artist.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/entities/Artist.d.ts -------------------------------------------------------------------------------- /dist/lib/entities/Artist.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/entities/Artist.d.ts.map -------------------------------------------------------------------------------- /dist/lib/entities/Artist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/entities/Artist.js -------------------------------------------------------------------------------- /dist/lib/entities/Artist.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/entities/Artist.js.map -------------------------------------------------------------------------------- /dist/lib/entities/BaseEntity.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/entities/BaseEntity.d.ts -------------------------------------------------------------------------------- /dist/lib/entities/BaseEntity.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/entities/BaseEntity.d.ts.map -------------------------------------------------------------------------------- /dist/lib/entities/BaseEntity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/entities/BaseEntity.js -------------------------------------------------------------------------------- /dist/lib/entities/BaseEntity.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/entities/BaseEntity.js.map -------------------------------------------------------------------------------- /dist/lib/entities/Collection.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/entities/Collection.d.ts -------------------------------------------------------------------------------- /dist/lib/entities/Collection.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/entities/Collection.d.ts.map -------------------------------------------------------------------------------- /dist/lib/entities/Collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/entities/Collection.js -------------------------------------------------------------------------------- /dist/lib/entities/Collection.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/entities/Collection.js.map -------------------------------------------------------------------------------- /dist/lib/entities/Folder.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/entities/Folder.d.ts -------------------------------------------------------------------------------- /dist/lib/entities/Folder.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/entities/Folder.d.ts.map -------------------------------------------------------------------------------- /dist/lib/entities/Folder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/entities/Folder.js -------------------------------------------------------------------------------- /dist/lib/entities/Folder.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/entities/Folder.js.map -------------------------------------------------------------------------------- /dist/lib/entities/Genre.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/entities/Genre.d.ts -------------------------------------------------------------------------------- /dist/lib/entities/Genre.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/entities/Genre.d.ts.map -------------------------------------------------------------------------------- /dist/lib/entities/Genre.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/entities/Genre.js -------------------------------------------------------------------------------- /dist/lib/entities/Genre.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/entities/Genre.js.map -------------------------------------------------------------------------------- /dist/lib/entities/Playlist.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/entities/Playlist.d.ts -------------------------------------------------------------------------------- /dist/lib/entities/Playlist.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/entities/Playlist.d.ts.map -------------------------------------------------------------------------------- /dist/lib/entities/Playlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/entities/Playlist.js -------------------------------------------------------------------------------- /dist/lib/entities/Playlist.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/entities/Playlist.js.map -------------------------------------------------------------------------------- /dist/lib/entities/Server.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/entities/Server.d.ts -------------------------------------------------------------------------------- /dist/lib/entities/Server.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/entities/Server.d.ts.map -------------------------------------------------------------------------------- /dist/lib/entities/Server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/entities/Server.js -------------------------------------------------------------------------------- /dist/lib/entities/Server.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/entities/Server.js.map -------------------------------------------------------------------------------- /dist/lib/entities/Song.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/entities/Song.d.ts -------------------------------------------------------------------------------- /dist/lib/entities/Song.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/entities/Song.d.ts.map -------------------------------------------------------------------------------- /dist/lib/entities/Song.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/entities/Song.js -------------------------------------------------------------------------------- /dist/lib/entities/Song.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/entities/Song.js.map -------------------------------------------------------------------------------- /dist/lib/entities/UserView.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/entities/UserView.d.ts -------------------------------------------------------------------------------- /dist/lib/entities/UserView.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/entities/UserView.d.ts.map -------------------------------------------------------------------------------- /dist/lib/entities/UserView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/entities/UserView.js -------------------------------------------------------------------------------- /dist/lib/entities/UserView.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/entities/UserView.js.map -------------------------------------------------------------------------------- /dist/lib/entities/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/entities/index.d.ts -------------------------------------------------------------------------------- /dist/lib/entities/index.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/entities/index.d.ts.map -------------------------------------------------------------------------------- /dist/lib/entities/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/entities/index.js -------------------------------------------------------------------------------- /dist/lib/entities/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/entities/index.js.map -------------------------------------------------------------------------------- /dist/lib/model/AlbumModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/AlbumModel.d.ts -------------------------------------------------------------------------------- /dist/lib/model/AlbumModel.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/AlbumModel.d.ts.map -------------------------------------------------------------------------------- /dist/lib/model/AlbumModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/AlbumModel.js -------------------------------------------------------------------------------- /dist/lib/model/AlbumModel.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/AlbumModel.js.map -------------------------------------------------------------------------------- /dist/lib/model/ArtistModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/ArtistModel.d.ts -------------------------------------------------------------------------------- /dist/lib/model/ArtistModel.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/ArtistModel.d.ts.map -------------------------------------------------------------------------------- /dist/lib/model/ArtistModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/ArtistModel.js -------------------------------------------------------------------------------- /dist/lib/model/ArtistModel.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/ArtistModel.js.map -------------------------------------------------------------------------------- /dist/lib/model/BaseModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/BaseModel.d.ts -------------------------------------------------------------------------------- /dist/lib/model/BaseModel.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/BaseModel.d.ts.map -------------------------------------------------------------------------------- /dist/lib/model/BaseModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/BaseModel.js -------------------------------------------------------------------------------- /dist/lib/model/BaseModel.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/BaseModel.js.map -------------------------------------------------------------------------------- /dist/lib/model/CollectionModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/CollectionModel.d.ts -------------------------------------------------------------------------------- /dist/lib/model/CollectionModel.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/CollectionModel.d.ts.map -------------------------------------------------------------------------------- /dist/lib/model/CollectionModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/CollectionModel.js -------------------------------------------------------------------------------- /dist/lib/model/CollectionModel.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/CollectionModel.js.map -------------------------------------------------------------------------------- /dist/lib/model/FolderModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/FolderModel.d.ts -------------------------------------------------------------------------------- /dist/lib/model/FolderModel.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/FolderModel.d.ts.map -------------------------------------------------------------------------------- /dist/lib/model/FolderModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/FolderModel.js -------------------------------------------------------------------------------- /dist/lib/model/FolderModel.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/FolderModel.js.map -------------------------------------------------------------------------------- /dist/lib/model/GenreModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/GenreModel.d.ts -------------------------------------------------------------------------------- /dist/lib/model/GenreModel.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/GenreModel.d.ts.map -------------------------------------------------------------------------------- /dist/lib/model/GenreModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/GenreModel.js -------------------------------------------------------------------------------- /dist/lib/model/GenreModel.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/GenreModel.js.map -------------------------------------------------------------------------------- /dist/lib/model/PlaylistModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/PlaylistModel.d.ts -------------------------------------------------------------------------------- /dist/lib/model/PlaylistModel.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/PlaylistModel.d.ts.map -------------------------------------------------------------------------------- /dist/lib/model/PlaylistModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/PlaylistModel.js -------------------------------------------------------------------------------- /dist/lib/model/PlaylistModel.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/PlaylistModel.js.map -------------------------------------------------------------------------------- /dist/lib/model/SongModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/SongModel.d.ts -------------------------------------------------------------------------------- /dist/lib/model/SongModel.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/SongModel.d.ts.map -------------------------------------------------------------------------------- /dist/lib/model/SongModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/SongModel.js -------------------------------------------------------------------------------- /dist/lib/model/SongModel.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/SongModel.js.map -------------------------------------------------------------------------------- /dist/lib/model/UserViewModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/UserViewModel.d.ts -------------------------------------------------------------------------------- /dist/lib/model/UserViewModel.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/UserViewModel.d.ts.map -------------------------------------------------------------------------------- /dist/lib/model/UserViewModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/UserViewModel.js -------------------------------------------------------------------------------- /dist/lib/model/UserViewModel.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/UserViewModel.js.map -------------------------------------------------------------------------------- /dist/lib/model/filter/AZFilterModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/filter/AZFilterModel.d.ts -------------------------------------------------------------------------------- /dist/lib/model/filter/AZFilterModel.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/filter/AZFilterModel.d.ts.map -------------------------------------------------------------------------------- /dist/lib/model/filter/AZFilterModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/filter/AZFilterModel.js -------------------------------------------------------------------------------- /dist/lib/model/filter/AZFilterModel.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/filter/AZFilterModel.js.map -------------------------------------------------------------------------------- /dist/lib/model/filter/FilterFilterModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/filter/FilterFilterModel.d.ts -------------------------------------------------------------------------------- /dist/lib/model/filter/FilterFilterModel.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/filter/FilterFilterModel.d.ts.map -------------------------------------------------------------------------------- /dist/lib/model/filter/FilterFilterModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/filter/FilterFilterModel.js -------------------------------------------------------------------------------- /dist/lib/model/filter/FilterFilterModel.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/filter/FilterFilterModel.js.map -------------------------------------------------------------------------------- /dist/lib/model/filter/FilterModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/filter/FilterModel.d.ts -------------------------------------------------------------------------------- /dist/lib/model/filter/FilterModel.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/filter/FilterModel.d.ts.map -------------------------------------------------------------------------------- /dist/lib/model/filter/FilterModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/filter/FilterModel.js -------------------------------------------------------------------------------- /dist/lib/model/filter/FilterModel.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/filter/FilterModel.js.map -------------------------------------------------------------------------------- /dist/lib/model/filter/GenreFilterModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/filter/GenreFilterModel.d.ts -------------------------------------------------------------------------------- /dist/lib/model/filter/GenreFilterModel.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/filter/GenreFilterModel.d.ts.map -------------------------------------------------------------------------------- /dist/lib/model/filter/GenreFilterModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/filter/GenreFilterModel.js -------------------------------------------------------------------------------- /dist/lib/model/filter/GenreFilterModel.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/filter/GenreFilterModel.js.map -------------------------------------------------------------------------------- /dist/lib/model/filter/SortFilterModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/filter/SortFilterModel.d.ts -------------------------------------------------------------------------------- /dist/lib/model/filter/SortFilterModel.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/filter/SortFilterModel.d.ts.map -------------------------------------------------------------------------------- /dist/lib/model/filter/SortFilterModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/filter/SortFilterModel.js -------------------------------------------------------------------------------- /dist/lib/model/filter/SortFilterModel.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/filter/SortFilterModel.js.map -------------------------------------------------------------------------------- /dist/lib/model/filter/YearFilterModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/filter/YearFilterModel.d.ts -------------------------------------------------------------------------------- /dist/lib/model/filter/YearFilterModel.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/filter/YearFilterModel.d.ts.map -------------------------------------------------------------------------------- /dist/lib/model/filter/YearFilterModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/filter/YearFilterModel.js -------------------------------------------------------------------------------- /dist/lib/model/filter/YearFilterModel.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/filter/YearFilterModel.js.map -------------------------------------------------------------------------------- /dist/lib/model/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/index.d.ts -------------------------------------------------------------------------------- /dist/lib/model/index.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/index.d.ts.map -------------------------------------------------------------------------------- /dist/lib/model/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/index.js -------------------------------------------------------------------------------- /dist/lib/model/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/index.js.map -------------------------------------------------------------------------------- /dist/lib/model/parser/AlbumParser.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/parser/AlbumParser.d.ts -------------------------------------------------------------------------------- /dist/lib/model/parser/AlbumParser.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/parser/AlbumParser.d.ts.map -------------------------------------------------------------------------------- /dist/lib/model/parser/AlbumParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/parser/AlbumParser.js -------------------------------------------------------------------------------- /dist/lib/model/parser/AlbumParser.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/parser/AlbumParser.js.map -------------------------------------------------------------------------------- /dist/lib/model/parser/ArtistParser.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/parser/ArtistParser.d.ts -------------------------------------------------------------------------------- /dist/lib/model/parser/ArtistParser.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/parser/ArtistParser.d.ts.map -------------------------------------------------------------------------------- /dist/lib/model/parser/ArtistParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/parser/ArtistParser.js -------------------------------------------------------------------------------- /dist/lib/model/parser/ArtistParser.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/parser/ArtistParser.js.map -------------------------------------------------------------------------------- /dist/lib/model/parser/BaseParser.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/parser/BaseParser.d.ts -------------------------------------------------------------------------------- /dist/lib/model/parser/BaseParser.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/parser/BaseParser.d.ts.map -------------------------------------------------------------------------------- /dist/lib/model/parser/BaseParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/parser/BaseParser.js -------------------------------------------------------------------------------- /dist/lib/model/parser/BaseParser.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/parser/BaseParser.js.map -------------------------------------------------------------------------------- /dist/lib/model/parser/CollectionParser.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/parser/CollectionParser.d.ts -------------------------------------------------------------------------------- /dist/lib/model/parser/CollectionParser.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/parser/CollectionParser.d.ts.map -------------------------------------------------------------------------------- /dist/lib/model/parser/CollectionParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/parser/CollectionParser.js -------------------------------------------------------------------------------- /dist/lib/model/parser/CollectionParser.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/parser/CollectionParser.js.map -------------------------------------------------------------------------------- /dist/lib/model/parser/FolderContentParser.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/parser/FolderContentParser.d.ts -------------------------------------------------------------------------------- /dist/lib/model/parser/FolderContentParser.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/parser/FolderContentParser.d.ts.map -------------------------------------------------------------------------------- /dist/lib/model/parser/FolderContentParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/parser/FolderContentParser.js -------------------------------------------------------------------------------- /dist/lib/model/parser/FolderContentParser.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/parser/FolderContentParser.js.map -------------------------------------------------------------------------------- /dist/lib/model/parser/FolderParser.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/parser/FolderParser.d.ts -------------------------------------------------------------------------------- /dist/lib/model/parser/FolderParser.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/parser/FolderParser.d.ts.map -------------------------------------------------------------------------------- /dist/lib/model/parser/FolderParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/parser/FolderParser.js -------------------------------------------------------------------------------- /dist/lib/model/parser/FolderParser.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/parser/FolderParser.js.map -------------------------------------------------------------------------------- /dist/lib/model/parser/GenreParser.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/parser/GenreParser.d.ts -------------------------------------------------------------------------------- /dist/lib/model/parser/GenreParser.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/parser/GenreParser.d.ts.map -------------------------------------------------------------------------------- /dist/lib/model/parser/GenreParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/parser/GenreParser.js -------------------------------------------------------------------------------- /dist/lib/model/parser/GenreParser.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/parser/GenreParser.js.map -------------------------------------------------------------------------------- /dist/lib/model/parser/LyricsParser.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/parser/LyricsParser.d.ts -------------------------------------------------------------------------------- /dist/lib/model/parser/LyricsParser.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/parser/LyricsParser.d.ts.map -------------------------------------------------------------------------------- /dist/lib/model/parser/LyricsParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/parser/LyricsParser.js -------------------------------------------------------------------------------- /dist/lib/model/parser/LyricsParser.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/parser/LyricsParser.js.map -------------------------------------------------------------------------------- /dist/lib/model/parser/Parser.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/parser/Parser.d.ts -------------------------------------------------------------------------------- /dist/lib/model/parser/Parser.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/parser/Parser.d.ts.map -------------------------------------------------------------------------------- /dist/lib/model/parser/Parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/parser/Parser.js -------------------------------------------------------------------------------- /dist/lib/model/parser/Parser.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/parser/Parser.js.map -------------------------------------------------------------------------------- /dist/lib/model/parser/PlaylistParser.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/parser/PlaylistParser.d.ts -------------------------------------------------------------------------------- /dist/lib/model/parser/PlaylistParser.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/parser/PlaylistParser.d.ts.map -------------------------------------------------------------------------------- /dist/lib/model/parser/PlaylistParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/parser/PlaylistParser.js -------------------------------------------------------------------------------- /dist/lib/model/parser/PlaylistParser.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/parser/PlaylistParser.js.map -------------------------------------------------------------------------------- /dist/lib/model/parser/SongParser.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/parser/SongParser.d.ts -------------------------------------------------------------------------------- /dist/lib/model/parser/SongParser.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/parser/SongParser.d.ts.map -------------------------------------------------------------------------------- /dist/lib/model/parser/SongParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/parser/SongParser.js -------------------------------------------------------------------------------- /dist/lib/model/parser/SongParser.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/parser/SongParser.js.map -------------------------------------------------------------------------------- /dist/lib/model/parser/UserViewParser.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/parser/UserViewParser.d.ts -------------------------------------------------------------------------------- /dist/lib/model/parser/UserViewParser.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/parser/UserViewParser.d.ts.map -------------------------------------------------------------------------------- /dist/lib/model/parser/UserViewParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/parser/UserViewParser.js -------------------------------------------------------------------------------- /dist/lib/model/parser/UserViewParser.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/model/parser/UserViewParser.js.map -------------------------------------------------------------------------------- /dist/lib/util/AlbumArtHandler.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/util/AlbumArtHandler.d.ts -------------------------------------------------------------------------------- /dist/lib/util/AlbumArtHandler.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/util/AlbumArtHandler.d.ts.map -------------------------------------------------------------------------------- /dist/lib/util/AlbumArtHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/util/AlbumArtHandler.js -------------------------------------------------------------------------------- /dist/lib/util/AlbumArtHandler.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/util/AlbumArtHandler.js.map -------------------------------------------------------------------------------- /dist/lib/util/JellyfinNowPlayingMetadataProvider.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/util/JellyfinNowPlayingMetadataProvider.d.ts -------------------------------------------------------------------------------- /dist/lib/util/JellyfinNowPlayingMetadataProvider.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/util/JellyfinNowPlayingMetadataProvider.d.ts.map -------------------------------------------------------------------------------- /dist/lib/util/JellyfinNowPlayingMetadataProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/util/JellyfinNowPlayingMetadataProvider.js -------------------------------------------------------------------------------- /dist/lib/util/JellyfinNowPlayingMetadataProvider.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/util/JellyfinNowPlayingMetadataProvider.js.map -------------------------------------------------------------------------------- /dist/lib/util/PluginConfig.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/util/PluginConfig.d.ts -------------------------------------------------------------------------------- /dist/lib/util/PluginConfig.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/util/PluginConfig.d.ts.map -------------------------------------------------------------------------------- /dist/lib/util/PluginConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/util/PluginConfig.js -------------------------------------------------------------------------------- /dist/lib/util/PluginConfig.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/util/PluginConfig.js.map -------------------------------------------------------------------------------- /dist/lib/util/ServerHelper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/util/ServerHelper.d.ts -------------------------------------------------------------------------------- /dist/lib/util/ServerHelper.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/util/ServerHelper.d.ts.map -------------------------------------------------------------------------------- /dist/lib/util/ServerHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/util/ServerHelper.js -------------------------------------------------------------------------------- /dist/lib/util/ServerHelper.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/util/ServerHelper.js.map -------------------------------------------------------------------------------- /dist/lib/util/SongHelper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/util/SongHelper.d.ts -------------------------------------------------------------------------------- /dist/lib/util/SongHelper.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/util/SongHelper.d.ts.map -------------------------------------------------------------------------------- /dist/lib/util/SongHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/util/SongHelper.js -------------------------------------------------------------------------------- /dist/lib/util/SongHelper.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/util/SongHelper.js.map -------------------------------------------------------------------------------- /dist/lib/util/StopWatch.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/util/StopWatch.d.ts -------------------------------------------------------------------------------- /dist/lib/util/StopWatch.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/util/StopWatch.d.ts.map -------------------------------------------------------------------------------- /dist/lib/util/StopWatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/util/StopWatch.js -------------------------------------------------------------------------------- /dist/lib/util/StopWatch.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/util/StopWatch.js.map -------------------------------------------------------------------------------- /dist/lib/util/Type.d.ts: -------------------------------------------------------------------------------- 1 | export type ValueOf = T[keyof T]; 2 | //# sourceMappingURL=Type.d.ts.map -------------------------------------------------------------------------------- /dist/lib/util/Type.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/util/Type.d.ts.map -------------------------------------------------------------------------------- /dist/lib/util/Type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/util/Type.js -------------------------------------------------------------------------------- /dist/lib/util/Type.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/util/Type.js.map -------------------------------------------------------------------------------- /dist/lib/util/UI.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/util/UI.d.ts -------------------------------------------------------------------------------- /dist/lib/util/UI.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/util/UI.d.ts.map -------------------------------------------------------------------------------- /dist/lib/util/UI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/util/UI.js -------------------------------------------------------------------------------- /dist/lib/util/UI.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/util/UI.js.map -------------------------------------------------------------------------------- /dist/lib/util/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/util/index.d.ts -------------------------------------------------------------------------------- /dist/lib/util/index.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/util/index.d.ts.map -------------------------------------------------------------------------------- /dist/lib/util/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/util/index.js -------------------------------------------------------------------------------- /dist/lib/util/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/dist/lib/util/index.js.map -------------------------------------------------------------------------------- /dist/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "commonjs" 3 | } 4 | -------------------------------------------------------------------------------- /fixup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/fixup.sh -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/install.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/package.json -------------------------------------------------------------------------------- /src/UIConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/UIConfig.json -------------------------------------------------------------------------------- /src/assets/images/album.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/assets/images/album.png -------------------------------------------------------------------------------- /src/assets/images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/assets/images/avatar.png -------------------------------------------------------------------------------- /src/assets/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/assets/images/folder.png -------------------------------------------------------------------------------- /src/assets/images/folder.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/assets/images/folder.xcf -------------------------------------------------------------------------------- /src/assets/images/genre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/assets/images/genre.png -------------------------------------------------------------------------------- /src/assets/images/jellyfin-mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/assets/images/jellyfin-mono.png -------------------------------------------------------------------------------- /src/assets/images/jellyfin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/assets/images/jellyfin.png -------------------------------------------------------------------------------- /src/assets/images/jellyfin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/assets/images/jellyfin.svg -------------------------------------------------------------------------------- /src/assets/images/playlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/assets/images/playlist.png -------------------------------------------------------------------------------- /src/assets/images/song.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/assets/images/song.png -------------------------------------------------------------------------------- /src/config.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/i18n/strings_en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/i18n/strings_en.json -------------------------------------------------------------------------------- /src/i18n/strings_zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/i18n/strings_zh.json -------------------------------------------------------------------------------- /src/i18n/strings_zh_TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/i18n/strings_zh_TW.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/lib/JellyfinContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/JellyfinContext.ts -------------------------------------------------------------------------------- /src/lib/connection/ConnectionManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/connection/ConnectionManager.ts -------------------------------------------------------------------------------- /src/lib/connection/ServerConnection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/connection/ServerConnection.ts -------------------------------------------------------------------------------- /src/lib/connection/ServerPoller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/connection/ServerPoller.ts -------------------------------------------------------------------------------- /src/lib/controller/browse/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/controller/browse/index.ts -------------------------------------------------------------------------------- /src/lib/controller/browse/view-handlers/AlbumViewHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/controller/browse/view-handlers/AlbumViewHandler.ts -------------------------------------------------------------------------------- /src/lib/controller/browse/view-handlers/ArtistViewHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/controller/browse/view-handlers/ArtistViewHandler.ts -------------------------------------------------------------------------------- /src/lib/controller/browse/view-handlers/BaseViewHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/controller/browse/view-handlers/BaseViewHandler.ts -------------------------------------------------------------------------------- /src/lib/controller/browse/view-handlers/CollectionViewHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/controller/browse/view-handlers/CollectionViewHandler.ts -------------------------------------------------------------------------------- /src/lib/controller/browse/view-handlers/CollectionsViewHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/controller/browse/view-handlers/CollectionsViewHandler.ts -------------------------------------------------------------------------------- /src/lib/controller/browse/view-handlers/Explodable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/controller/browse/view-handlers/Explodable.ts -------------------------------------------------------------------------------- /src/lib/controller/browse/view-handlers/FilterSelectionViewHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/controller/browse/view-handlers/FilterSelectionViewHandler.ts -------------------------------------------------------------------------------- /src/lib/controller/browse/view-handlers/FilterableViewHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/controller/browse/view-handlers/FilterableViewHandler.ts -------------------------------------------------------------------------------- /src/lib/controller/browse/view-handlers/FolderViewHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/controller/browse/view-handlers/FolderViewHandler.ts -------------------------------------------------------------------------------- /src/lib/controller/browse/view-handlers/GenreViewHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/controller/browse/view-handlers/GenreViewHandler.ts -------------------------------------------------------------------------------- /src/lib/controller/browse/view-handlers/LibraryViewHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/controller/browse/view-handlers/LibraryViewHandler.ts -------------------------------------------------------------------------------- /src/lib/controller/browse/view-handlers/PlaylistViewHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/controller/browse/view-handlers/PlaylistViewHandler.ts -------------------------------------------------------------------------------- /src/lib/controller/browse/view-handlers/RootViewHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/controller/browse/view-handlers/RootViewHandler.ts -------------------------------------------------------------------------------- /src/lib/controller/browse/view-handlers/SongViewHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/controller/browse/view-handlers/SongViewHandler.ts -------------------------------------------------------------------------------- /src/lib/controller/browse/view-handlers/UserViewViewHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/controller/browse/view-handlers/UserViewViewHandler.ts -------------------------------------------------------------------------------- /src/lib/controller/browse/view-handlers/View.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/controller/browse/view-handlers/View.ts -------------------------------------------------------------------------------- /src/lib/controller/browse/view-handlers/ViewHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/controller/browse/view-handlers/ViewHandler.ts -------------------------------------------------------------------------------- /src/lib/controller/browse/view-handlers/ViewHandlerFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/controller/browse/view-handlers/ViewHandlerFactory.ts -------------------------------------------------------------------------------- /src/lib/controller/browse/view-handlers/ViewHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/controller/browse/view-handlers/ViewHelper.ts -------------------------------------------------------------------------------- /src/lib/controller/browse/view-handlers/renderer/AlbumRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/controller/browse/view-handlers/renderer/AlbumRenderer.ts -------------------------------------------------------------------------------- /src/lib/controller/browse/view-handlers/renderer/ArtistRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/controller/browse/view-handlers/renderer/ArtistRenderer.ts -------------------------------------------------------------------------------- /src/lib/controller/browse/view-handlers/renderer/BaseRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/controller/browse/view-handlers/renderer/BaseRenderer.ts -------------------------------------------------------------------------------- /src/lib/controller/browse/view-handlers/renderer/CollectionRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/controller/browse/view-handlers/renderer/CollectionRenderer.ts -------------------------------------------------------------------------------- /src/lib/controller/browse/view-handlers/renderer/FolderRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/controller/browse/view-handlers/renderer/FolderRenderer.ts -------------------------------------------------------------------------------- /src/lib/controller/browse/view-handlers/renderer/GenreRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/controller/browse/view-handlers/renderer/GenreRenderer.ts -------------------------------------------------------------------------------- /src/lib/controller/browse/view-handlers/renderer/PlaylistRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/controller/browse/view-handlers/renderer/PlaylistRenderer.ts -------------------------------------------------------------------------------- /src/lib/controller/browse/view-handlers/renderer/ServerRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/controller/browse/view-handlers/renderer/ServerRenderer.ts -------------------------------------------------------------------------------- /src/lib/controller/browse/view-handlers/renderer/SongRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/controller/browse/view-handlers/renderer/SongRenderer.ts -------------------------------------------------------------------------------- /src/lib/controller/browse/view-handlers/renderer/UserViewRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/controller/browse/view-handlers/renderer/UserViewRenderer.ts -------------------------------------------------------------------------------- /src/lib/controller/browse/view-handlers/renderer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/controller/browse/view-handlers/renderer/index.ts -------------------------------------------------------------------------------- /src/lib/controller/play/PlayController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/controller/play/PlayController.ts -------------------------------------------------------------------------------- /src/lib/controller/search/SearchController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/controller/search/SearchController.ts -------------------------------------------------------------------------------- /src/lib/entities/Album.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/entities/Album.ts -------------------------------------------------------------------------------- /src/lib/entities/Artist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/entities/Artist.ts -------------------------------------------------------------------------------- /src/lib/entities/BaseEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/entities/BaseEntity.ts -------------------------------------------------------------------------------- /src/lib/entities/Collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/entities/Collection.ts -------------------------------------------------------------------------------- /src/lib/entities/Folder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/entities/Folder.ts -------------------------------------------------------------------------------- /src/lib/entities/Genre.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/entities/Genre.ts -------------------------------------------------------------------------------- /src/lib/entities/Playlist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/entities/Playlist.ts -------------------------------------------------------------------------------- /src/lib/entities/Server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/entities/Server.ts -------------------------------------------------------------------------------- /src/lib/entities/Song.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/entities/Song.ts -------------------------------------------------------------------------------- /src/lib/entities/UserView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/entities/UserView.ts -------------------------------------------------------------------------------- /src/lib/entities/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/entities/index.ts -------------------------------------------------------------------------------- /src/lib/model/AlbumModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/model/AlbumModel.ts -------------------------------------------------------------------------------- /src/lib/model/ArtistModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/model/ArtistModel.ts -------------------------------------------------------------------------------- /src/lib/model/BaseModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/model/BaseModel.ts -------------------------------------------------------------------------------- /src/lib/model/CollectionModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/model/CollectionModel.ts -------------------------------------------------------------------------------- /src/lib/model/FolderModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/model/FolderModel.ts -------------------------------------------------------------------------------- /src/lib/model/GenreModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/model/GenreModel.ts -------------------------------------------------------------------------------- /src/lib/model/PlaylistModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/model/PlaylistModel.ts -------------------------------------------------------------------------------- /src/lib/model/SongModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/model/SongModel.ts -------------------------------------------------------------------------------- /src/lib/model/UserViewModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/model/UserViewModel.ts -------------------------------------------------------------------------------- /src/lib/model/filter/AZFilterModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/model/filter/AZFilterModel.ts -------------------------------------------------------------------------------- /src/lib/model/filter/FilterFilterModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/model/filter/FilterFilterModel.ts -------------------------------------------------------------------------------- /src/lib/model/filter/FilterModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/model/filter/FilterModel.ts -------------------------------------------------------------------------------- /src/lib/model/filter/GenreFilterModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/model/filter/GenreFilterModel.ts -------------------------------------------------------------------------------- /src/lib/model/filter/SortFilterModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/model/filter/SortFilterModel.ts -------------------------------------------------------------------------------- /src/lib/model/filter/YearFilterModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/model/filter/YearFilterModel.ts -------------------------------------------------------------------------------- /src/lib/model/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/model/index.ts -------------------------------------------------------------------------------- /src/lib/model/parser/AlbumParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/model/parser/AlbumParser.ts -------------------------------------------------------------------------------- /src/lib/model/parser/ArtistParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/model/parser/ArtistParser.ts -------------------------------------------------------------------------------- /src/lib/model/parser/BaseParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/model/parser/BaseParser.ts -------------------------------------------------------------------------------- /src/lib/model/parser/CollectionParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/model/parser/CollectionParser.ts -------------------------------------------------------------------------------- /src/lib/model/parser/FolderContentParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/model/parser/FolderContentParser.ts -------------------------------------------------------------------------------- /src/lib/model/parser/FolderParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/model/parser/FolderParser.ts -------------------------------------------------------------------------------- /src/lib/model/parser/GenreParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/model/parser/GenreParser.ts -------------------------------------------------------------------------------- /src/lib/model/parser/LyricsParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/model/parser/LyricsParser.ts -------------------------------------------------------------------------------- /src/lib/model/parser/Parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/model/parser/Parser.ts -------------------------------------------------------------------------------- /src/lib/model/parser/PlaylistParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/model/parser/PlaylistParser.ts -------------------------------------------------------------------------------- /src/lib/model/parser/SongParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/model/parser/SongParser.ts -------------------------------------------------------------------------------- /src/lib/model/parser/UserViewParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/model/parser/UserViewParser.ts -------------------------------------------------------------------------------- /src/lib/util/AlbumArtHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/util/AlbumArtHandler.ts -------------------------------------------------------------------------------- /src/lib/util/JellyfinNowPlayingMetadataProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/util/JellyfinNowPlayingMetadataProvider.ts -------------------------------------------------------------------------------- /src/lib/util/PluginConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/util/PluginConfig.ts -------------------------------------------------------------------------------- /src/lib/util/ServerHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/util/ServerHelper.ts -------------------------------------------------------------------------------- /src/lib/util/SongHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/util/SongHelper.ts -------------------------------------------------------------------------------- /src/lib/util/StopWatch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/util/StopWatch.ts -------------------------------------------------------------------------------- /src/lib/util/Type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/util/Type.ts -------------------------------------------------------------------------------- /src/lib/util/UI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/util/UI.ts -------------------------------------------------------------------------------- /src/lib/util/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/lib/util/index.ts -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/src/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkfkan/volumio-jellyfin/HEAD/tsconfig.json -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "Jellyfin plugin uninstalled" 3 | --------------------------------------------------------------------------------