From a5e36b3d41198b8938c9ddaf7c42840fa30d3a4b Mon Sep 17 00:00:00 2001 From: Max Date: Mon, 27 Jan 2025 16:59:06 -0500 Subject: [PATCH 1/2] Add photo albums and photos to favorites section --- src/controllers/favorites.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/controllers/favorites.js b/src/controllers/favorites.js index 9e9cd0f26e..89d0569a98 100644 --- a/src/controllers/favorites.js +++ b/src/controllers/favorites.js @@ -135,6 +135,22 @@ function getSections() { overlayPlayButton: true, overlayText: false, centerText: true + }, { + name: 'HeaderPhotoAlbums', + types: 'PhotoAlbum', + shape: getBackdropShape(enableScrollX()), + showTitle: true, + overlayPlayButton: true, + overlayText: false, + centerText: true + }, { + name: 'Photos', + types: 'Photo', + shape: getBackdropShape(enableScrollX()), + showTitle: true, + overlayPlayButton: true, + overlayText: false, + centerText: true }]; } From 57ab403bf639a835903f5650e02acaa27d8360a4 Mon Sep 17 00:00:00 2001 From: Max Date: Tue, 11 Feb 2025 10:14:10 -0500 Subject: [PATCH 2/2] Add music videos --- src/controllers/favorites.js | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/controllers/favorites.js b/src/controllers/favorites.js index 89d0569a98..6a6be74600 100644 --- a/src/controllers/favorites.js +++ b/src/controllers/favorites.js @@ -54,6 +54,15 @@ function getSections() { overlayPlayButton: true, overlayText: false, centerText: true + }, { + name: 'MusicVideos', + types: 'MusicVideo', + shape: getBackdropShape(enableScrollX()), + preferThumb: true, + showTitle: true, + overlayPlayButton: true, + overlayText: false, + centerText: true }, { name: 'Collections', types: 'BoxSet',