Skip to content

Commit

Permalink
v2024.8.2 fix #480
Browse files Browse the repository at this point in the history
  • Loading branch information
jeroenterheerdt committed Aug 26, 2024
1 parent 9a9bf04 commit 1795b9a
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion custom_components/smart_irrigation/const.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Store constants."""

VERSION = "v2024.8.1"
VERSION = "v2024.8.2"
NAME = "Smart Irrigation"
MANUFACTURER = "@jeroenterheerdt"

Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion custom_components/smart_irrigation/frontend/src/const.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const VERSION = "v2024.8.1";
export const VERSION = "v2024.8.2";
export const REPO = "https://github.com/jeroenterheerdt/HASmartIrrigation;";
export const ISSUES_URL = REPO + "/issues";

Expand Down
2 changes: 1 addition & 1 deletion custom_components/smart_irrigation/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
"iot_class": "local_push",
"issue_tracker": "https://github.com/jeroenterheerdt/HASmartIrrigation/issues",
"requirements": [],
"version": "v2024.8.1"
"version": "v2024.8.2"
}
6 changes: 3 additions & 3 deletions custom_components/smart_irrigation/sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,13 +201,13 @@ def extra_state_attributes(self):
"id": self._id,
"size": self._size,
"throughput": self._throughput,
"drainage_rate": float(self._drainage_rate),
"drainage_rate": self._drainage_rate,
"state": self._state,
"bucket": float(self._bucket),
"bucket": self._bucket,
"last_updated": convert_timestamp(self._last_updated),
"last_calculated": convert_timestamp(self._last_calculated),
"number_of_data_points": self._number_of_data_points,
"et_value": float(self._delta),
"et_value": self._delta,
# asyncio.run_coroutine_threadsafe(
# localize("common.attributes.size", "en"), self._hass.loop
# ).result(): self._size,
Expand Down

0 comments on commit 1795b9a

Please sign in to comment.