mirror of
https://github.com/mtan93/homeassistant-addons.git
synced 2026-04-05 22:04:30 +01:00
Update toogoodtogo-ha-mqtt-bridge to v1.1.0
This commit is contained in:
@@ -1,6 +1,9 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## [1.0.0] - 2020-12-31
|
## [1.1.0] - 2021-01-16
|
||||||
|
- Update `toogoodtogo-ha-mqtt-bridge` to `1.1.0` (see [release notes](https://github.com/MaxWinterstein/toogoodtogo-ha-mqtt-bridge/releases))
|
||||||
|
|
||||||
|
## [1.0.0] - 2021-01-14
|
||||||
- Update `toogoodtogo-ha-mqtt-bridge` to `1.0.0` (see [release notes](https://github.com/MaxWinterstein/toogoodtogo-ha-mqtt-bridge/releases))
|
- Update `toogoodtogo-ha-mqtt-bridge` to `1.0.0` (see [release notes](https://github.com/MaxWinterstein/toogoodtogo-ha-mqtt-bridge/releases))
|
||||||
- Add config for the new pull interval setting `every_n_minutes`.
|
- Add config for the new pull interval setting `every_n_minutes`.
|
||||||
**Add `every_n_minutes: 10` to your configuration! (See example config)**
|
**Add `every_n_minutes: 10` to your configuration! (See example config)**
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
# sneaky trick to get around the requirement of {arch}-variabe based docker repositories
|
# sneaky trick to get around the requirement of {arch}-variabe based docker repositories
|
||||||
|
|
||||||
FROM maxwinterstein/homeassistant-addon-toogoodtogo-ha-mqtt-bridge:1.0.0
|
FROM maxwinterstein/homeassistant-addon-toogoodtogo-ha-mqtt-bridge:1.1.0
|
||||||
@@ -11,7 +11,7 @@ RUN poetry config virtualenvs.create false
|
|||||||
ADD "https://www.random.org/cgi-bin/randbyte?nbytes=10&format=h" skipcache
|
ADD "https://www.random.org/cgi-bin/randbyte?nbytes=10&format=h" skipcache
|
||||||
|
|
||||||
# add source and unpack
|
# add source and unpack
|
||||||
ADD "https://github.com/MaxWinterstein/toogoodtogo-ha-mqtt-bridge/archive/v1.0.0.tar.gz" /src.tar.gz
|
ADD "https://github.com/MaxWinterstein/toogoodtogo-ha-mqtt-bridge/archive/v1.1.0.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
|
||||||
|
|||||||
@@ -16,4 +16,6 @@ tgtg:
|
|||||||
email: me@example.ocm
|
email: me@example.ocm
|
||||||
password: iliketurtles
|
password: iliketurtles
|
||||||
every_n_minutes: 10
|
every_n_minutes: 10
|
||||||
|
timezone: Europe/Berlin
|
||||||
|
locale: en_us
|
||||||
```
|
```
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "TooGoodToGo Home Assistant MQTT Bridge",
|
"name": "TooGoodToGo Home Assistant MQTT Bridge",
|
||||||
"version": "1.0.0",
|
"version": "1.1.0",
|
||||||
"slug": "tgtg-ha-mqtt-bridge",
|
"slug": "tgtg-ha-mqtt-bridge",
|
||||||
"description": "Publish TooGoodToGo stock as MQTT messages",
|
"description": "Publish TooGoodToGo stock as MQTT messages",
|
||||||
"arch": [
|
"arch": [
|
||||||
@@ -22,7 +22,9 @@
|
|||||||
"email": "me@example.com",
|
"email": "me@example.com",
|
||||||
"password": "iliketurtles",
|
"password": "iliketurtles",
|
||||||
"every_n_minutes": 5
|
"every_n_minutes": 5
|
||||||
}
|
},
|
||||||
|
"timezone": "Europe/Berlin",
|
||||||
|
"locale": "en_us"
|
||||||
},
|
},
|
||||||
"schema": {
|
"schema": {
|
||||||
"mqtt": {
|
"mqtt": {
|
||||||
@@ -35,10 +37,12 @@
|
|||||||
"email": "str",
|
"email": "str",
|
||||||
"password": "str",
|
"password": "str",
|
||||||
"every_n_minutes": "float(0.1,)"
|
"every_n_minutes": "float(0.1,)"
|
||||||
}
|
},
|
||||||
|
"timezone": "str?",
|
||||||
|
"locale": "str?"
|
||||||
},
|
},
|
||||||
"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
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user