Skip to content

Commit

Permalink
Bump roonapi to 0.0.32 (#46286)
Browse files Browse the repository at this point in the history
  • Loading branch information
pavoni authored and frenck committed Feb 11, 2021
1 parent bf2a346 commit 1c2f72a
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 14 deletions.
2 changes: 1 addition & 1 deletion homeassistant/components/roon/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"config_flow": true,
"documentation": "https://www.home-assistant.io/integrations/roon",
"requirements": [
"roonapi==0.0.31"
"roonapi==0.0.32"
],
"codeowners": [
"@pavoni"
Expand Down
11 changes: 0 additions & 11 deletions homeassistant/components/roon/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,17 +141,6 @@ async def async_update_players(self):
async_dispatcher_send(self.hass, "roon_media_player", player_data)
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):
"""Create player object dict by combining zone with output."""
new_dict = zone.copy()
Expand Down
2 changes: 1 addition & 1 deletion requirements_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1961,7 +1961,7 @@ rokuecp==0.6.0
roombapy==1.6.2

# homeassistant.components.roon
roonapi==0.0.31
roonapi==0.0.32

# homeassistant.components.rova
rova==0.1.0
Expand Down
2 changes: 1 addition & 1 deletion requirements_test_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -983,7 +983,7 @@ rokuecp==0.6.0
roombapy==1.6.2

# homeassistant.components.roon
roonapi==0.0.31
roonapi==0.0.32

# homeassistant.components.rpi_power
rpi-bad-power==0.1.0
Expand Down

0 comments on commit 1c2f72a

Please sign in to comment.