aboutsummaryrefslogtreecommitdiffstats
path: root/solo-tool-project/src/solo_tool/notifier.py
diff options
context:
space:
mode:
authorEddy Pedroni <epedroni@pm.me>2025-02-25 13:38:17 +0100
committerEddy Pedroni <epedroni@pm.me>2025-02-25 13:38:17 +0100
commit62490ac2be04aa3b819222f11389e0549f5909e9 (patch)
tree1d8c79c3e1e0e1fc2fed71bdbcfcdf4ff97b2066 /solo-tool-project/src/solo_tool/notifier.py
parent876071a7a41ee4a1f579739b242a00058bdc160d (diff)
Add song list notification, edge case tests
Diffstat (limited to 'solo-tool-project/src/solo_tool/notifier.py')
-rw-r--r--solo-tool-project/src/solo_tool/notifier.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/solo-tool-project/src/solo_tool/notifier.py b/solo-tool-project/src/solo_tool/notifier.py
index dadf85c..ac1c736 100644
--- a/solo-tool-project/src/solo_tool/notifier.py
+++ b/solo-tool-project/src/solo_tool/notifier.py
@@ -3,8 +3,9 @@ class Notifier:
PLAYBACK_VOLUME_EVENT = 1
PLAYBACK_RATE_EVENT = 2
CURRENT_SONG_EVENT = 3
- CURRENT_KEY_POINT_EVENT = 3
- KEY_POINTS_EVENT = 4
+ SONG_LIST_EVENT = 4
+ CURRENT_KEY_POINT_EVENT = 5
+ KEY_POINTS_EVENT = 6
def __init__(self, player):
self._callbacks = dict()