Bump nexia to 2.0.6 (#81474)
* Bump nexia to 2.0.6 - Marks thermostat unavailable when it is offline * is propertypull/81784/head
parent
42444872b9
commit
c93c13d8bf
|
@ -80,6 +80,11 @@ class NexiaThermostatEntity(NexiaEntity):
|
|||
self.hass, f"{SIGNAL_THERMOSTAT_UPDATE}-{self._thermostat.thermostat_id}"
|
||||
)
|
||||
|
||||
@property
|
||||
def available(self) -> bool:
|
||||
"""Return True if thermostat is available and data is available."""
|
||||
return super().available and self._thermostat.is_online
|
||||
|
||||
|
||||
class NexiaThermostatZoneEntity(NexiaThermostatEntity):
|
||||
"""Base class for nexia devices attached to a thermostat."""
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"domain": "nexia",
|
||||
"name": "Nexia/American Standard/Trane",
|
||||
"requirements": ["nexia==2.0.5"],
|
||||
"requirements": ["nexia==2.0.6"],
|
||||
"codeowners": ["@bdraco"],
|
||||
"documentation": "https://www.home-assistant.io/integrations/nexia",
|
||||
"config_flow": true,
|
||||
|
|
|
@ -1135,7 +1135,7 @@ nettigo-air-monitor==1.4.2
|
|||
neurio==0.3.1
|
||||
|
||||
# homeassistant.components.nexia
|
||||
nexia==2.0.5
|
||||
nexia==2.0.6
|
||||
|
||||
# homeassistant.components.nextcloud
|
||||
nextcloudmonitor==1.1.0
|
||||
|
|
|
@ -825,7 +825,7 @@ netmap==0.7.0.2
|
|||
nettigo-air-monitor==1.4.2
|
||||
|
||||
# homeassistant.components.nexia
|
||||
nexia==2.0.5
|
||||
nexia==2.0.6
|
||||
|
||||
# homeassistant.components.discord
|
||||
nextcord==2.0.0a8
|
||||
|
|
Loading…
Reference in New Issue