Update to v1.9.2

This commit is contained in:
Max Winterstein
2021-12-03 11:37:02 +01:00
parent f826d28c67
commit ae8ba286b3
5 changed files with 15 additions and 6 deletions

View File

@@ -1,5 +1,11 @@
# Changelog # Changelog
## [1.9.2] - 2021-11-03
- Update `toogoodtogo-ha-mqtt-bridge` to `1.9.2` (see [release notes])(https://github.com/MaxWinterstein/toogoodtogo-ha-mqtt-bridge/releases))
- Ensure login tokens are stored across reboot.
- Align Add-on version with bridge version.
## [1.9.0] - 2021-11-15 ## [1.9.0] - 2021-11-15
- Update `toogoodtogo-ha-mqtt-bridge` to `1.8.0` (see [release notes])(https://github.com/MaxWinterstein/toogoodtogo-ha-mqtt-bridge/releases)) - Update `toogoodtogo-ha-mqtt-bridge` to `1.8.0` (see [release notes])(https://github.com/MaxWinterstein/toogoodtogo-ha-mqtt-bridge/releases))

View File

@@ -12,7 +12,6 @@ mqtt:
password: mqtt password: mqtt
tgtg: tgtg:
email: me@example.ocm email: me@example.ocm
password: iliketurtles
every_n_minutes: 10 every_n_minutes: 10
timezone: Europe/Berlin timezone: Europe/Berlin
locale: en_us locale: en_us

View File

@@ -7,7 +7,7 @@ ENV PATH=$HOME/.poetry/bin/:${PATH}
RUN poetry config virtualenvs.create false RUN poetry config virtualenvs.create false
# add source and unpack # add source and unpack
ADD "https://github.com/MaxWinterstein/toogoodtogo-ha-mqtt-bridge/archive/v1.8.0.tar.gz" /src.tar.gz ADD "https://github.com/MaxWinterstein/toogoodtogo-ha-mqtt-bridge/archive/v1.9.2.tar.gz" /src.tar.gz
RUN mkdir /app && tar xvfz /src.tar.gz -C /app --strip-components=1 RUN mkdir /app && tar xvfz /src.tar.gz -C /app --strip-components=1
# install # install

View File

@@ -18,6 +18,9 @@
Based on https://github.com/MaxWinterstein/toogoodtogo-ha-mqtt-bridge Based on https://github.com/MaxWinterstein/toogoodtogo-ha-mqtt-bridge
Since Too Good To Go changed to the new password-less login, you will get a email after startup.
Just open the mail and hit `Login`.
[aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg [aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg
[amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg [amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
[armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg [armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg

View File

@@ -1,6 +1,6 @@
{ {
"name": "TooGoodToGo Home Assistant MQTT Bridge", "name": "TooGoodToGo Home Assistant MQTT Bridge",
"version": "1.9.0", "version": "1.9.2",
"image": "maxwinterstein/homeassistant-addon-toogoodtogo-ha-mqtt-bridge-{arch}", "image": "maxwinterstein/homeassistant-addon-toogoodtogo-ha-mqtt-bridge-{arch}",
"slug": "tgtg-ha-mqtt-bridge", "slug": "tgtg-ha-mqtt-bridge",
"description": "Publish TooGoodToGo stock as MQTT messages", "description": "Publish TooGoodToGo stock as MQTT messages",
@@ -16,7 +16,6 @@
}, },
"tgtg": { "tgtg": {
"email": "me@example.com", "email": "me@example.com",
"password": "iliketurtles",
"every_n_minutes": 5 "every_n_minutes": 5
}, },
"timezone": "Europe/Berlin", "timezone": "Europe/Berlin",
@@ -32,7 +31,6 @@
}, },
"tgtg": { "tgtg": {
"email": "str", "email": "str",
"password": "str",
"every_n_minutes": "float(0.1,)" "every_n_minutes": "float(0.1,)"
}, },
"timezone": "str?", "timezone": "str?",
@@ -42,5 +40,8 @@
"stage": "experimental", "stage": "experimental",
"url": "https://github.com/MaxWinterstein/toogoodtogo-ha-mqtt-bridge", "url": "https://github.com/MaxWinterstein/toogoodtogo-ha-mqtt-bridge",
"hassio_role": "default", "hassio_role": "default",
"hassio_api": true "hassio_api": true,
"environment": {
"DYNACONF_DATA_DIR": "/data/"
}
} }