python-linkplay 0.0.14__tar.gz → 0.0.15__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.0.14/src/python_linkplay.egg-info → python_linkplay-0.0.15}/PKG-INFO +1 -1
- python_linkplay-0.0.15/src/linkplay/__version__.py +1 -0
- {python_linkplay-0.0.14 → python_linkplay-0.0.15}/src/linkplay/consts.py +1 -1
- {python_linkplay-0.0.14 → python_linkplay-0.0.15}/src/linkplay/controller.py +5 -1
- {python_linkplay-0.0.14 → python_linkplay-0.0.15/src/python_linkplay.egg-info}/PKG-INFO +1 -1
- python_linkplay-0.0.14/src/linkplay/__version__.py +0 -1
- {python_linkplay-0.0.14 → python_linkplay-0.0.15}/LICENSE +0 -0
- {python_linkplay-0.0.14 → python_linkplay-0.0.15}/README.md +0 -0
- {python_linkplay-0.0.14 → python_linkplay-0.0.15}/pyproject.toml +0 -0
- {python_linkplay-0.0.14 → python_linkplay-0.0.15}/setup.cfg +0 -0
- {python_linkplay-0.0.14 → python_linkplay-0.0.15}/setup.py +0 -0
- {python_linkplay-0.0.14 → python_linkplay-0.0.15}/src/linkplay/__init__.py +0 -0
- {python_linkplay-0.0.14 → python_linkplay-0.0.15}/src/linkplay/__main__.py +0 -0
- {python_linkplay-0.0.14 → python_linkplay-0.0.15}/src/linkplay/bridge.py +0 -0
- {python_linkplay-0.0.14 → python_linkplay-0.0.15}/src/linkplay/discovery.py +0 -0
- {python_linkplay-0.0.14 → python_linkplay-0.0.15}/src/linkplay/endpoint.py +0 -0
- {python_linkplay-0.0.14 → python_linkplay-0.0.15}/src/linkplay/exceptions.py +0 -0
- {python_linkplay-0.0.14 → python_linkplay-0.0.15}/src/linkplay/utils.py +0 -0
- {python_linkplay-0.0.14 → python_linkplay-0.0.15}/src/python_linkplay.egg-info/SOURCES.txt +0 -0
- {python_linkplay-0.0.14 → python_linkplay-0.0.15}/src/python_linkplay.egg-info/dependency_links.txt +0 -0
- {python_linkplay-0.0.14 → python_linkplay-0.0.15}/src/python_linkplay.egg-info/not-zip-safe +0 -0
- {python_linkplay-0.0.14 → python_linkplay-0.0.15}/src/python_linkplay.egg-info/requires.txt +0 -0
- {python_linkplay-0.0.14 → python_linkplay-0.0.15}/src/python_linkplay.egg-info/top_level.txt +0 -0
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = '0.0.15'
|
@@ -4,7 +4,7 @@ from enum import IntFlag, StrEnum
|
|
4
4
|
LOGGER = logging.getLogger("linkplay")
|
5
5
|
|
6
6
|
API_ENDPOINT: str = "{}/httpapi.asp?command={}"
|
7
|
-
API_TIMEOUT: int =
|
7
|
+
API_TIMEOUT: int = 5
|
8
8
|
UNKNOWN_TRACK_PLAYING: str = "Unknown"
|
9
9
|
UPNP_DEVICE_TYPE = "urn:schemas-upnp-org:device:MediaRenderer:1"
|
10
10
|
TCPPORT = 8899
|
@@ -41,7 +41,11 @@ class LinkPlayController:
|
|
41
41
|
"""Attempts to discover multirooms on the local network."""
|
42
42
|
|
43
43
|
# Find and update existing multirooms
|
44
|
-
multirooms = [
|
44
|
+
multirooms = [
|
45
|
+
bridge.multiroom
|
46
|
+
for bridge in self.bridges
|
47
|
+
if bridge.multiroom and bridge.multiroom.leader is bridge
|
48
|
+
]
|
45
49
|
|
46
50
|
removed_multirooms = []
|
47
51
|
for multiroom in multirooms:
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = '0.0.14'
|
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.0.14 → python_linkplay-0.0.15}/src/python_linkplay.egg-info/dependency_links.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|
{python_linkplay-0.0.14 → python_linkplay-0.0.15}/src/python_linkplay.egg-info/top_level.txt
RENAMED
File without changes
|