python-linkplay 0.2.9__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.
Files changed (24) hide show
  1. {python_linkplay-0.2.9/src/python_linkplay.egg-info → python_linkplay-0.2.10}/PKG-INFO +1 -1
  2. python_linkplay-0.2.10/src/linkplay/__version__.py +1 -0
  3. {python_linkplay-0.2.9 → python_linkplay-0.2.10}/src/linkplay/manufacturers.py +7 -2
  4. {python_linkplay-0.2.9 → python_linkplay-0.2.10/src/python_linkplay.egg-info}/PKG-INFO +1 -1
  5. python_linkplay-0.2.9/src/linkplay/__version__.py +0 -1
  6. {python_linkplay-0.2.9 → python_linkplay-0.2.10}/LICENSE +0 -0
  7. {python_linkplay-0.2.9 → python_linkplay-0.2.10}/README.md +0 -0
  8. {python_linkplay-0.2.9 → python_linkplay-0.2.10}/pyproject.toml +0 -0
  9. {python_linkplay-0.2.9 → python_linkplay-0.2.10}/setup.cfg +0 -0
  10. {python_linkplay-0.2.9 → python_linkplay-0.2.10}/setup.py +0 -0
  11. {python_linkplay-0.2.9 → python_linkplay-0.2.10}/src/linkplay/__init__.py +0 -0
  12. {python_linkplay-0.2.9 → python_linkplay-0.2.10}/src/linkplay/__main__.py +0 -0
  13. {python_linkplay-0.2.9 → python_linkplay-0.2.10}/src/linkplay/bridge.py +0 -0
  14. {python_linkplay-0.2.9 → python_linkplay-0.2.10}/src/linkplay/consts.py +0 -0
  15. {python_linkplay-0.2.9 → python_linkplay-0.2.10}/src/linkplay/controller.py +0 -0
  16. {python_linkplay-0.2.9 → python_linkplay-0.2.10}/src/linkplay/discovery.py +0 -0
  17. {python_linkplay-0.2.9 → python_linkplay-0.2.10}/src/linkplay/endpoint.py +0 -0
  18. {python_linkplay-0.2.9 → python_linkplay-0.2.10}/src/linkplay/exceptions.py +0 -0
  19. {python_linkplay-0.2.9 → python_linkplay-0.2.10}/src/linkplay/utils.py +0 -0
  20. {python_linkplay-0.2.9 → python_linkplay-0.2.10}/src/python_linkplay.egg-info/SOURCES.txt +0 -0
  21. {python_linkplay-0.2.9 → python_linkplay-0.2.10}/src/python_linkplay.egg-info/dependency_links.txt +0 -0
  22. {python_linkplay-0.2.9 → python_linkplay-0.2.10}/src/python_linkplay.egg-info/not-zip-safe +0 -0
  23. {python_linkplay-0.2.9 → python_linkplay-0.2.10}/src/python_linkplay.egg-info/requires.txt +0 -0
  24. {python_linkplay-0.2.9 → python_linkplay-0.2.10}/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.9
3
+ Version: 0.2.10
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.10'
@@ -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, MODELS_GENERIC),
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 device '%s' is not found in our list. To improve experience, open an issue on GitHub with the project name %s, the manufacturer and the product name.",
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,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python_linkplay
3
- Version: 0.2.9
3
+ Version: 0.2.10
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.9'