diff --git a/IRIS_VERSION b/IRIS_VERSION index 9b57023a..deedb06e 100755 --- a/IRIS_VERSION +++ b/IRIS_VERSION @@ -1 +1 @@ -3.62.0 +3.63.0 diff --git a/mopidy_iris/static/assets/backgrounds/browse-jellyfin.jpg b/mopidy_iris/static/assets/backgrounds/browse-jellyfin.jpg new file mode 100644 index 00000000..9f0fa63b Binary files /dev/null and b/mopidy_iris/static/assets/backgrounds/browse-jellyfin.jpg differ diff --git a/mopidy_iris/static/assets/backgrounds/browse-podcasts.jpg b/mopidy_iris/static/assets/backgrounds/browse-podcasts.jpg new file mode 100644 index 00000000..62e64996 Binary files /dev/null and b/mopidy_iris/static/assets/backgrounds/browse-podcasts.jpg differ diff --git a/src/js/views/Library/Browse.js b/src/js/views/Library/Browse.js index c8f0a326..4887a966 100755 --- a/src/js/views/Library/Browse.js +++ b/src/js/views/Library/Browse.js @@ -83,9 +83,17 @@ class Browse extends React.Component { subdirectory.icons = ['/iris/assets/backgrounds/browse-itunes.jpg']; break; - case 'Soma FM': + case 'SomaFM': subdirectory.icons = ['/iris/assets/backgrounds/browse-somafm.jpg']; break; + + case 'Jellyfin': + subdirectory.icons = ['/iris/assets/backgrounds/browse-jellyfin.jpg']; + break; + + case 'Podcasts': + subdirectory.icons = ['/iris/assets/backgrounds/browse-podcasts.jpg']; + break; case 'Tidal': subdirectory.icons = ['/iris/assets/backgrounds/browse-tidal.jpg'];