Add long click to home page (#66)

Add a popup when long clicking items on the home page

Also fixes a bug where the latest Recorded TV row would show non-Live TV
items if nothing has ever been recorded.
This commit is contained in:
damontecres 2025-10-26 08:50:24 -04:00 committed by GitHub
parent 2667090485
commit 143fc03d9b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 212 additions and 20 deletions

View file

@ -38,3 +38,13 @@ val supportedCollectionTypes =
CollectionType.BOXSETS,
CollectionType.LIVETV,
)
val supportedPlayableTypes =
setOf(
BaseItemKind.MOVIE,
BaseItemKind.EPISODE,
BaseItemKind.VIDEO,
BaseItemKind.TV_CHANNEL,
BaseItemKind.TV_PROGRAM,
BaseItemKind.RECORDING,
)