Bump roonapi to 0.0.32 (#46286)
This commit is contained in:
parent
175f2f0275
commit
b0b81246f0
4 changed files with 3 additions and 14 deletions
|
@ -4,7 +4,7 @@
|
||||||
"config_flow": true,
|
"config_flow": true,
|
||||||
"documentation": "https://www.home-assistant.io/integrations/roon",
|
"documentation": "https://www.home-assistant.io/integrations/roon",
|
||||||
"requirements": [
|
"requirements": [
|
||||||
"roonapi==0.0.31"
|
"roonapi==0.0.32"
|
||||||
],
|
],
|
||||||
"codeowners": [
|
"codeowners": [
|
||||||
"@pavoni"
|
"@pavoni"
|
||||||
|
|
|
@ -141,17 +141,6 @@ class RoonServer:
|
||||||
async_dispatcher_send(self.hass, "roon_media_player", player_data)
|
async_dispatcher_send(self.hass, "roon_media_player", player_data)
|
||||||
self.offline_devices.add(dev_id)
|
self.offline_devices.add(dev_id)
|
||||||
|
|
||||||
async def async_update_playlists(self):
|
|
||||||
"""Store lists in memory with all playlists - could be used by a custom lovelace card."""
|
|
||||||
all_playlists = []
|
|
||||||
roon_playlists = self.roonapi.playlists()
|
|
||||||
if roon_playlists and "items" in roon_playlists:
|
|
||||||
all_playlists += [item["title"] for item in roon_playlists["items"]]
|
|
||||||
roon_playlists = self.roonapi.internet_radio()
|
|
||||||
if roon_playlists and "items" in roon_playlists:
|
|
||||||
all_playlists += [item["title"] for item in roon_playlists["items"]]
|
|
||||||
self.all_playlists = all_playlists
|
|
||||||
|
|
||||||
async def async_create_player_data(self, zone, output):
|
async def async_create_player_data(self, zone, output):
|
||||||
"""Create player object dict by combining zone with output."""
|
"""Create player object dict by combining zone with output."""
|
||||||
new_dict = zone.copy()
|
new_dict = zone.copy()
|
||||||
|
|
|
@ -1967,7 +1967,7 @@ rokuecp==0.6.0
|
||||||
roombapy==1.6.2
|
roombapy==1.6.2
|
||||||
|
|
||||||
# homeassistant.components.roon
|
# homeassistant.components.roon
|
||||||
roonapi==0.0.31
|
roonapi==0.0.32
|
||||||
|
|
||||||
# homeassistant.components.rova
|
# homeassistant.components.rova
|
||||||
rova==0.2.1
|
rova==0.2.1
|
||||||
|
|
|
@ -998,7 +998,7 @@ rokuecp==0.6.0
|
||||||
roombapy==1.6.2
|
roombapy==1.6.2
|
||||||
|
|
||||||
# homeassistant.components.roon
|
# homeassistant.components.roon
|
||||||
roonapi==0.0.31
|
roonapi==0.0.32
|
||||||
|
|
||||||
# homeassistant.components.rpi_power
|
# homeassistant.components.rpi_power
|
||||||
rpi-bad-power==0.1.0
|
rpi-bad-power==0.1.0
|
||||||
|
|
Loading…
Add table
Reference in a new issue