diff options
author | Eddy Pedroni <eddy@0xf7.com> | 2022-01-04 14:58:39 +0100 |
---|---|---|
committer | Eddy Pedroni <eddy@0xf7.com> | 2022-01-04 14:58:39 +0100 |
commit | 3eed7537f8cc0221a81951b24ef965f6b7f35d6e (patch) | |
tree | 11158ffd5c6d4d7403e6bde07308b0c3c4e65999 /notifier.py | |
parent | 3066dbcdd863342d3c9534886434d6e8aaa45367 (diff) |
Added song and AB limits change notification
Diffstat (limited to 'notifier.py')
-rw-r--r-- | notifier.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/notifier.py b/notifier.py index 99be1ce..fc91e8c 100644 --- a/notifier.py +++ b/notifier.py @@ -3,6 +3,8 @@ class Notifier: PLAYING_STATE_EVENT = 0 PLAYBACK_VOLUME_EVENT = 1 PLAYBACK_RATE_EVENT = 2 + CURRENT_SONG_EVENT = 3 + CURRENT_AB_EVENT = 4 def __init__(self, player): self._callbacks = dict() |