python-linkplay 0.2.8__tar.gz → 0.2.10__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.
- {python_linkplay-0.2.8/src/python_linkplay.egg-info → python_linkplay-0.2.10}/PKG-INFO +1 -1
- python_linkplay-0.2.10/src/linkplay/__version__.py +1 -0
- {python_linkplay-0.2.8 → python_linkplay-0.2.10}/src/linkplay/consts.py +2 -0
- {python_linkplay-0.2.8 → python_linkplay-0.2.10}/src/linkplay/manufacturers.py +7 -2
- {python_linkplay-0.2.8 → python_linkplay-0.2.10/src/python_linkplay.egg-info}/PKG-INFO +1 -1
- python_linkplay-0.2.8/src/linkplay/__version__.py +0 -1
- {python_linkplay-0.2.8 → python_linkplay-0.2.10}/LICENSE +0 -0
- {python_linkplay-0.2.8 → python_linkplay-0.2.10}/README.md +0 -0
- {python_linkplay-0.2.8 → python_linkplay-0.2.10}/pyproject.toml +0 -0
- {python_linkplay-0.2.8 → python_linkplay-0.2.10}/setup.cfg +0 -0
- {python_linkplay-0.2.8 → python_linkplay-0.2.10}/setup.py +0 -0
- {python_linkplay-0.2.8 → python_linkplay-0.2.10}/src/linkplay/__init__.py +0 -0
- {python_linkplay-0.2.8 → python_linkplay-0.2.10}/src/linkplay/__main__.py +0 -0
- {python_linkplay-0.2.8 → python_linkplay-0.2.10}/src/linkplay/bridge.py +0 -0
- {python_linkplay-0.2.8 → python_linkplay-0.2.10}/src/linkplay/controller.py +0 -0
- {python_linkplay-0.2.8 → python_linkplay-0.2.10}/src/linkplay/discovery.py +0 -0
- {python_linkplay-0.2.8 → python_linkplay-0.2.10}/src/linkplay/endpoint.py +0 -0
- {python_linkplay-0.2.8 → python_linkplay-0.2.10}/src/linkplay/exceptions.py +0 -0
- {python_linkplay-0.2.8 → python_linkplay-0.2.10}/src/linkplay/utils.py +0 -0
- {python_linkplay-0.2.8 → python_linkplay-0.2.10}/src/python_linkplay.egg-info/SOURCES.txt +0 -0
- {python_linkplay-0.2.8 → python_linkplay-0.2.10}/src/python_linkplay.egg-info/dependency_links.txt +0 -0
- {python_linkplay-0.2.8 → python_linkplay-0.2.10}/src/python_linkplay.egg-info/not-zip-safe +0 -0
- {python_linkplay-0.2.8 → python_linkplay-0.2.10}/src/python_linkplay.egg-info/requires.txt +0 -0
- {python_linkplay-0.2.8 → python_linkplay-0.2.10}/src/python_linkplay.egg-info/top_level.txt +0 -0
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = '0.2.10'
|
@@ -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",
|
@@ -22,14 +22,17 @@ MODELS_ARYLIC_UP2STREAM_AMP: Final[str] = "Up2Stream Amp 2.0"
|
|
22
22
|
MODELS_ARYLIC_UP2STREAM_AMP_2P1: Final[str] = "Up2Stream Amp 2.1"
|
23
23
|
MODELS_ARYLIC_UP2STREAM_AMP_V3: Final[str] = "Up2Stream Amp v3"
|
24
24
|
MODELS_ARYLIC_UP2STREAM_AMP_V4: Final[str] = "Up2Stream Amp v4"
|
25
|
+
MODELS_ARYLIC_UP2STREAM_MINI: Final[str] = "Up2Stream Mini"
|
25
26
|
MODELS_ARYLIC_UP2STREAM_PRO: Final[str] = "Up2Stream Pro v1"
|
26
27
|
MODELS_ARYLIC_UP2STREAM_PRO_V3: Final[str] = "Up2Stream Pro v3"
|
28
|
+
MODELS_ARYLIC_UP2STREAM_PRO_V4: Final[str] = "Up2Stream Pro v4"
|
27
29
|
MODELS_ARYLIC_S10P: Final[str] = "Arylic S10+"
|
28
30
|
MODELS_ARYLIC_UP2STREAM_PLATE_AMP: Final[str] = "Up2Stream Plate Amp"
|
29
31
|
MODELS_IEAST_AUDIOCAST_M5: Final[str] = "AudioCast M5"
|
30
32
|
MODELS_WIIM_AMP: Final[str] = "WiiM Amp"
|
31
33
|
MODELS_WIIM_MINI: Final[str] = "WiiM Mini"
|
32
34
|
MODELS_WIIM_PRO: Final[str] = "WiiM Pro"
|
35
|
+
MODELS_WIIM_PRO_PLUS: Final[str] = "WiiM Pro Plus"
|
33
36
|
MODELS_GGMM_GGMM_E2: Final[str] = "GGMM E2"
|
34
37
|
MODELS_MEDION_MD_43970: Final[str] = "Life P66970 (MD 43970)"
|
35
38
|
MODELS_GENERIC: Final[str] = "Generic"
|
@@ -46,9 +49,10 @@ PROJECTID_LOOKUP: Final[dict[str, tuple[str, str]]] = {
|
|
46
49
|
"UP2STREAM_AMP_V3": (MANUFACTURER_ARYLIC, MODELS_ARYLIC_UP2STREAM_AMP_V3),
|
47
50
|
"UP2STREAM_AMP_V4": (MANUFACTURER_ARYLIC, MODELS_ARYLIC_UP2STREAM_AMP_V4),
|
48
51
|
"UP2STREAM_PRO_V3": (MANUFACTURER_ARYLIC, MODELS_ARYLIC_UP2STREAM_PRO_V3),
|
52
|
+
"UP2STREAM_PRO_V4": (MANUFACTURER_ARYLIC, MODELS_ARYLIC_UP2STREAM_PRO_V4),
|
49
53
|
"S10P_WIFI": (MANUFACTURER_ARYLIC, MODELS_ARYLIC_S10P),
|
50
54
|
"ARYLIC_V20": (MANUFACTURER_ARYLIC, MODELS_ARYLIC_UP2STREAM_PLATE_AMP),
|
51
|
-
"UP2STREAM_MINI_V3": (MANUFACTURER_ARYLIC,
|
55
|
+
"UP2STREAM_MINI_V3": (MANUFACTURER_ARYLIC, MODELS_ARYLIC_UP2STREAM_MINI),
|
52
56
|
"UP2STREAM_AMP_2P1": (MANUFACTURER_ARYLIC, MODELS_ARYLIC_UP2STREAM_AMP_2P1),
|
53
57
|
"RP0014_A50C_S": (MANUFACTURER_ARYLIC, MODELS_GENERIC),
|
54
58
|
"ARYLIC_A30": (MANUFACTURER_ARYLIC, MODELS_GENERIC),
|
@@ -65,6 +69,7 @@ PROJECTID_LOOKUP: Final[dict[str, tuple[str, str]]] = {
|
|
65
69
|
"iEAST-02": (MANUFACTURER_IEAST, MODELS_IEAST_AUDIOCAST_M5),
|
66
70
|
"WiiM_Amp_4layer": (MANUFACTURER_WIIM, MODELS_WIIM_AMP),
|
67
71
|
"WiiM_Pro_with_gc4a": (MANUFACTURER_WIIM, MODELS_WIIM_PRO),
|
72
|
+
"Wiim_Pro_Plus": (MANUFACTURER_WIIM, MODELS_WIIM_PRO_PLUS),
|
68
73
|
"Muzo_Mini": (MANUFACTURER_WIIM, MODELS_WIIM_MINI),
|
69
74
|
"GGMM_E2A": (MANUFACTURER_GGMM, MODELS_GGMM_GGMM_E2),
|
70
75
|
"A16": (MANUFACTURER_MEDION, MODELS_MEDION_MD_43970),
|
@@ -75,7 +80,7 @@ def get_info_from_project(project: str) -> tuple[str, str]:
|
|
75
80
|
"""Get manufacturer and model info based on given project."""
|
76
81
|
if project not in PROJECTID_LOOKUP:
|
77
82
|
LOGGER.warning(
|
78
|
-
"The
|
83
|
+
"The project name '%s' is not found in the manufacturer list. Kindly open an issue at https://github.com/velleman/python-linkplay/issues with the project name %s and mention the manufacturer of this product and the product name.",
|
79
84
|
project,
|
80
85
|
project,
|
81
86
|
)
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = '0.2.8'
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{python_linkplay-0.2.8 → python_linkplay-0.2.10}/src/python_linkplay.egg-info/dependency_links.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|