Add additional items to REPEAT_MAP in LinkPlay (#123063)

* Upgrade python-linkplay, add items to REPEAT_MAP

* Undo dependency bump
pull/123079/head
Philip Vanloo 2024-08-02 13:38:05 +02:00 committed by GitHub
parent b610b29d28
commit 3de8828358
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

View File

@ -58,6 +58,8 @@ REPEAT_MAP: dict[LoopMode, RepeatMode] = {
LoopMode.CONTINUOUS_PLAYBACK: RepeatMode.ALL,
LoopMode.RANDOM_PLAYBACK: RepeatMode.ALL,
LoopMode.LIST_CYCLE: RepeatMode.ALL,
LoopMode.SHUFF_DISABLED_REPEAT_DISABLED: RepeatMode.OFF,
LoopMode.SHUFF_ENABLED_REPEAT_ENABLED_LOOP_ONCE: RepeatMode.ALL,
}
REPEAT_MAP_INV: dict[RepeatMode, LoopMode] = {v: k for k, v in REPEAT_MAP.items()}