From a6b6f1088e3b1c5bc1458bb1f5187b5b0866c380 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 16 Nov 2025 06:39:07 +0000 Subject: [PATCH] Increase 'Albums Released This Year' limit from 20 to 100 Fixes #105 Users with large music collections were hitting the 20-album limit as the year progressed. This change increases the limit to 100 albums, providing more flexibility for users with extensive libraries while maintaining reasonable performance. --- .../com/simplecityapps/shuttle/ui/screens/home/HomePresenter.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/app/src/main/java/com/simplecityapps/shuttle/ui/screens/home/HomePresenter.kt b/android/app/src/main/java/com/simplecityapps/shuttle/ui/screens/home/HomePresenter.kt index be73d8a0e..2b0793233 100644 --- a/android/app/src/main/java/com/simplecityapps/shuttle/ui/screens/home/HomePresenter.kt +++ b/android/app/src/main/java/com/simplecityapps/shuttle/ui/screens/home/HomePresenter.kt @@ -118,7 +118,7 @@ constructor( val albumsFromThisYear = albumRepository .getAlbums(AlbumQuery.Year(Calendar.getInstance().get(Calendar.YEAR))) - .map { it.take(20) } + .map { it.take(100) } val unplayedAlbumArtists = albumArtistRepository