Skip to content

Commit

Permalink
Update denonavr to v1.0.0 (#126703)
Browse files Browse the repository at this point in the history
  • Loading branch information
ol-iver committed Sep 25, 2024
1 parent b48c439 commit 1c33561
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion homeassistant/components/denonavr/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"documentation": "https://www.home-assistant.io/integrations/denonavr",
"iot_class": "local_push",
"loggers": ["denonavr"],
"requirements": ["denonavr==0.11.6"],
"requirements": ["denonavr==1.0.0"],
"ssdp": [
{
"manufacturer": "Denon",
Expand Down
1 change: 0 additions & 1 deletion homeassistant/components/denonavr/media_player.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,6 @@ async def async_setup_entry(
unique_id = f"{config_entry.unique_id}-{receiver_zone.zone}"
else:
unique_id = f"{config_entry.entry_id}-{receiver_zone.zone}"
await receiver_zone.async_setup()
entities.append(
DenonDevice(
receiver_zone,
Expand Down
7 changes: 4 additions & 3 deletions homeassistant/components/denonavr/receiver.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,10 @@ async def async_init_receiver_class(self) -> None:
await receiver.async_setup()
# Do an initial update if telnet is used.
if self._use_telnet:
await receiver.async_update()
if self._update_audyssey:
await receiver.async_update_audyssey()
for zone in receiver.zones.values():
await zone.async_update()
if self._update_audyssey:
await zone.async_update_audyssey()
await receiver.async_telnet_connect()

self._receiver = receiver
2 changes: 1 addition & 1 deletion requirements_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -738,7 +738,7 @@ deluge-client==1.10.2
demetriek==0.4.0

# homeassistant.components.denonavr
denonavr==0.11.6
denonavr==1.0.0

# homeassistant.components.devialet
devialet==1.4.5
Expand Down
2 changes: 1 addition & 1 deletion requirements_test_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,7 @@ deluge-client==1.10.2
demetriek==0.4.0

# homeassistant.components.denonavr
denonavr==0.11.6
denonavr==1.0.0

# homeassistant.components.devialet
devialet==1.4.5
Expand Down

0 comments on commit 1c33561

Please sign in to comment.