Skip to content

Commit

Permalink
Preparing for release 1.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
briis committed Jan 21, 2024
1 parent 59f9c24 commit 1656d04
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## Release 1.0.7

Date: `NOT RELEASED`

### Changes

- Even though the Station has not transmitted data to WeatherFlow, the device itself, often does, so we are able to post the Voltage, Battery and Power Save Mode from the device itself.
- New binary sensor `Data Available` is added to the system. If WeatherFlow reports an empty dataset, this is set to False, and you should check your hub and see if it is still online.

## Release 1.0.6

Date: `2024-01-20`
Expand Down
5 changes: 5 additions & 0 deletions custom_components/weatherflow_forecast/binary_sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@ class WeatherFlowBinarySensorEntityDescription(BinarySensorEntityDescription):


BINARY_SENSOR_TYPES: tuple[WeatherFlowBinarySensorEntityDescription, ...] = (
WeatherFlowBinarySensorEntityDescription(
key="data_available",
name="Data Available",
icon="mdi:database-check",
),
WeatherFlowBinarySensorEntityDescription(
key="is_freezing",
name="Is Freezing",
Expand Down
4 changes: 2 additions & 2 deletions custom_components/weatherflow_forecast/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"iot_class": "cloud_polling",
"issue_tracker": "https://github.com/briis/weatherflow_forecast/issues",
"requirements": [
"pyweatherflow-forecast==1.0.8"
"git+https://github.com/briis/pyweatherflow_forecast@main#pyweatherflow-forecast==1.0.9"
],
"version": "1.0.6"
"version": "1.0.7"
}

0 comments on commit 1656d04

Please sign in to comment.