Skip to content

Commit

Permalink
Update for version 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vingerha committed May 8, 2024
1 parent 046de7b commit bd0b369
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 15 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ Main differences are in the login method, now using virtual browser (old method
For usage and installation etc. see [DOCUMENTATION](https://github.com/vingerha/gazpar_2_mqtt/wiki)

## Changelogs :
- 0.6.0
- Fix issue with double naming in the HA sensor
- Fix issue with incorrect device_classes for the sensors
- Fix issue with restarting due to non-copied hass_ws.py
- 0.5.0
- Use webservice for loading data to Home Assistant, previously this was a spook (app) api
- collect published measures (periodically values registered by GRDF)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.5.0
0.6.0
17 changes: 6 additions & 11 deletions addon/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.6.0 (08-05-2024)

Fix issue with double naming in the HA sensor
Fix issue with incorrect device_classes for the sensors
Fix issue with restarting due to non-copied hass_ws.py

## 0.5.0 (03/04-05-2024) - addon + container

Add webservice as main process to push Long Term Stats
Expand All @@ -7,16 +13,5 @@ Fix issues, e.g standalone mode

introduce addon, small modifications to the core code

## 0.3.0 (29-04-2024) - container-only

enable influx params in docker-compose

## 0.2.0 (27-04-2024) - container-only

add export to HA Long Term Statistic

## 0.1.0 (21-04-2024) - container-only

Basis from yukulehe/gazpar2mqtt
add login via selenium

2 changes: 1 addition & 1 deletion addon/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ CMD ["python3", "app/gazpar2mqtt.py"]
############

LABEL \
io.hass.version="0.5.0" \
io.hass.version="0.6.0" \
io.hass.type="addon" \
io.hass.arch="armv7|amd64|arm64"

Expand Down
2 changes: 1 addition & 1 deletion addon/config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: "Gazpar 2 MQTT"
description: "Extracts GRDF data into MQTT a.o."
version: "0.5.x"
version: "0.6.0"
slug: "gazpar_2_mqtt"
init: false
homeassistant_api: true
Expand Down
2 changes: 1 addition & 1 deletion app/gazpar2mqtt.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@


# gazpar2mqtt constants
G2M_VERSION = '0.5.0'
G2M_VERSION = '0.6.0'
G2M_DB_VERSION = '0.2.0'
G2M_INFLUXDB_VERSION = '0.1.0'

Expand Down

0 comments on commit bd0b369

Please sign in to comment.