python-linkplay 0.2.11__tar.gz → 0.2.12__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.11/src/python_linkplay.egg-info → python_linkplay-0.2.12}/PKG-INFO +1 -1
- python_linkplay-0.2.12/src/linkplay/__version__.py +1 -0
- {python_linkplay-0.2.11 → python_linkplay-0.2.12}/src/linkplay/manufacturers.py +7 -6
- {python_linkplay-0.2.11 → python_linkplay-0.2.12/src/python_linkplay.egg-info}/PKG-INFO +1 -1
- python_linkplay-0.2.11/src/linkplay/__version__.py +0 -1
- {python_linkplay-0.2.11 → python_linkplay-0.2.12}/LICENSE +0 -0
- {python_linkplay-0.2.11 → python_linkplay-0.2.12}/README.md +0 -0
- {python_linkplay-0.2.11 → python_linkplay-0.2.12}/pyproject.toml +0 -0
- {python_linkplay-0.2.11 → python_linkplay-0.2.12}/setup.cfg +0 -0
- {python_linkplay-0.2.11 → python_linkplay-0.2.12}/setup.py +0 -0
- {python_linkplay-0.2.11 → python_linkplay-0.2.12}/src/linkplay/__init__.py +0 -0
- {python_linkplay-0.2.11 → python_linkplay-0.2.12}/src/linkplay/__main__.py +0 -0
- {python_linkplay-0.2.11 → python_linkplay-0.2.12}/src/linkplay/bridge.py +0 -0
- {python_linkplay-0.2.11 → python_linkplay-0.2.12}/src/linkplay/consts.py +0 -0
- {python_linkplay-0.2.11 → python_linkplay-0.2.12}/src/linkplay/controller.py +0 -0
- {python_linkplay-0.2.11 → python_linkplay-0.2.12}/src/linkplay/discovery.py +0 -0
- {python_linkplay-0.2.11 → python_linkplay-0.2.12}/src/linkplay/endpoint.py +0 -0
- {python_linkplay-0.2.11 → python_linkplay-0.2.12}/src/linkplay/exceptions.py +0 -0
- {python_linkplay-0.2.11 → python_linkplay-0.2.12}/src/linkplay/utils.py +0 -0
- {python_linkplay-0.2.11 → python_linkplay-0.2.12}/src/python_linkplay.egg-info/SOURCES.txt +0 -0
- {python_linkplay-0.2.11 → python_linkplay-0.2.12}/src/python_linkplay.egg-info/dependency_links.txt +0 -0
- {python_linkplay-0.2.11 → python_linkplay-0.2.12}/src/python_linkplay.egg-info/not-zip-safe +0 -0
- {python_linkplay-0.2.11 → python_linkplay-0.2.12}/src/python_linkplay.egg-info/requires.txt +0 -0
- {python_linkplay-0.2.11 → python_linkplay-0.2.12}/src/python_linkplay.egg-info/top_level.txt +0 -0
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = '0.2.12'
|
@@ -70,6 +70,7 @@ PROJECTID_LOOKUP: Final[dict[str, tuple[str, str]]] = {
|
|
70
70
|
"WiiM_Amp_4layer": (MANUFACTURER_WIIM, MODELS_WIIM_AMP),
|
71
71
|
"WiiM_Pro_with_gc4a": (MANUFACTURER_WIIM, MODELS_WIIM_PRO),
|
72
72
|
"WiiM_Pro_Plus": (MANUFACTURER_WIIM, MODELS_WIIM_PRO_PLUS),
|
73
|
+
"WiiM_AMP": (MANUFACTURER_WIIM, MODELS_WIIM_AMP),
|
73
74
|
"Muzo_Mini": (MANUFACTURER_WIIM, MODELS_WIIM_MINI),
|
74
75
|
"GGMM_E2A": (MANUFACTURER_GGMM, MODELS_GGMM_GGMM_E2),
|
75
76
|
"A16": (MANUFACTURER_MEDION, MODELS_MEDION_MD_43970),
|
@@ -78,10 +79,10 @@ PROJECTID_LOOKUP: Final[dict[str, tuple[str, str]]] = {
|
|
78
79
|
|
79
80
|
def get_info_from_project(project: str) -> tuple[str, str]:
|
80
81
|
"""Get manufacturer and model info based on given project."""
|
81
|
-
if project not in PROJECTID_LOOKUP:
|
82
|
-
LOGGER.warning(
|
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.",
|
84
|
-
project,
|
85
|
-
project,
|
86
|
-
)
|
82
|
+
# if project not in PROJECTID_LOOKUP:
|
83
|
+
# LOGGER.warning(
|
84
|
+
# "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.",
|
85
|
+
# project,
|
86
|
+
# project,
|
87
|
+
# )
|
87
88
|
return PROJECTID_LOOKUP.get(project, (MANUFACTURER_GENERIC, MODELS_GENERIC))
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = '0.2.11'
|
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
|
File without changes
|
{python_linkplay-0.2.11 → python_linkplay-0.2.12}/src/python_linkplay.egg-info/dependency_links.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|
{python_linkplay-0.2.11 → python_linkplay-0.2.12}/src/python_linkplay.egg-info/top_level.txt
RENAMED
File without changes
|