python-linkplay 0.2.8__tar.gz → 0.2.9__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (24) hide show
  1. {python_linkplay-0.2.8/src/python_linkplay.egg-info → python_linkplay-0.2.9}/PKG-INFO +1 -1
  2. python_linkplay-0.2.9/src/linkplay/__version__.py +1 -0
  3. {python_linkplay-0.2.8 → python_linkplay-0.2.9}/src/linkplay/consts.py +2 -0
  4. {python_linkplay-0.2.8 → python_linkplay-0.2.9/src/python_linkplay.egg-info}/PKG-INFO +1 -1
  5. python_linkplay-0.2.8/src/linkplay/__version__.py +0 -1
  6. {python_linkplay-0.2.8 → python_linkplay-0.2.9}/LICENSE +0 -0
  7. {python_linkplay-0.2.8 → python_linkplay-0.2.9}/README.md +0 -0
  8. {python_linkplay-0.2.8 → python_linkplay-0.2.9}/pyproject.toml +0 -0
  9. {python_linkplay-0.2.8 → python_linkplay-0.2.9}/setup.cfg +0 -0
  10. {python_linkplay-0.2.8 → python_linkplay-0.2.9}/setup.py +0 -0
  11. {python_linkplay-0.2.8 → python_linkplay-0.2.9}/src/linkplay/__init__.py +0 -0
  12. {python_linkplay-0.2.8 → python_linkplay-0.2.9}/src/linkplay/__main__.py +0 -0
  13. {python_linkplay-0.2.8 → python_linkplay-0.2.9}/src/linkplay/bridge.py +0 -0
  14. {python_linkplay-0.2.8 → python_linkplay-0.2.9}/src/linkplay/controller.py +0 -0
  15. {python_linkplay-0.2.8 → python_linkplay-0.2.9}/src/linkplay/discovery.py +0 -0
  16. {python_linkplay-0.2.8 → python_linkplay-0.2.9}/src/linkplay/endpoint.py +0 -0
  17. {python_linkplay-0.2.8 → python_linkplay-0.2.9}/src/linkplay/exceptions.py +0 -0
  18. {python_linkplay-0.2.8 → python_linkplay-0.2.9}/src/linkplay/manufacturers.py +0 -0
  19. {python_linkplay-0.2.8 → python_linkplay-0.2.9}/src/linkplay/utils.py +0 -0
  20. {python_linkplay-0.2.8 → python_linkplay-0.2.9}/src/python_linkplay.egg-info/SOURCES.txt +0 -0
  21. {python_linkplay-0.2.8 → python_linkplay-0.2.9}/src/python_linkplay.egg-info/dependency_links.txt +0 -0
  22. {python_linkplay-0.2.8 → python_linkplay-0.2.9}/src/python_linkplay.egg-info/not-zip-safe +0 -0
  23. {python_linkplay-0.2.8 → python_linkplay-0.2.9}/src/python_linkplay.egg-info/requires.txt +0 -0
  24. {python_linkplay-0.2.8 → python_linkplay-0.2.9}/src/python_linkplay.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python_linkplay
3
- Version: 0.2.8
3
+ Version: 0.2.9
4
4
  Summary: A Python Library for Seamless LinkPlay Device Control
5
5
  Author: Velleman Group nv
6
6
  License: MIT
@@ -0,0 +1 @@
1
+ __version__ = '0.2.9'
@@ -152,6 +152,7 @@ class PlayingMode(StrEnum):
152
152
  ALARM = "30"
153
153
  SPOTIFY = "31"
154
154
  TIDAL = "32"
155
+ QOBUZ = "36"
155
156
  LINE_IN = "40"
156
157
  BLUETOOTH = "41"
157
158
  OPTICAL = "43"
@@ -187,6 +188,7 @@ PLAY_MODE_SEND_MAP: dict[PlayingMode, str] = { # case sensitive!
187
188
  PlayingMode.ALARM: "Alarm",
188
189
  PlayingMode.SPOTIFY: "Spotify",
189
190
  PlayingMode.TIDAL: "Tidal",
191
+ PlayingMode.QOBUZ: "Qobuz",
190
192
  PlayingMode.LINE_IN: "line-in",
191
193
  PlayingMode.BLUETOOTH: "bluetooth",
192
194
  PlayingMode.OPTICAL: "optical",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python_linkplay
3
- Version: 0.2.8
3
+ Version: 0.2.9
4
4
  Summary: A Python Library for Seamless LinkPlay Device Control
5
5
  Author: Velleman Group nv
6
6
  License: MIT
@@ -1 +0,0 @@
1
- __version__ = '0.2.8'
File without changes