Skip to content

Commit

Permalink
Release 0.5.0 / 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
deviantintegral committed Feb 17, 2024
2 parents 547bea4 + 452b8b7 commit d4eca54
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 6 deletions.
4 changes: 4 additions & 0 deletions rtl_433/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [0.5.0] - 2024-02-16

* Update to rtl_433 23.11 for the stable addon

## [0.4.1] - 2023-10-27

* Fix wrong retain value when setting in mqtt connection string #149 by @cserem
Expand Down
2 changes: 1 addition & 1 deletion rtl_433/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ RUN git clone https://github.com/merbanan/rtl_433
WORKDIR ./rtl_433

# Build a specific commit or tag.
ARG rtl433GitRevision=22.11
ARG rtl433GitRevision=23.11
RUN git checkout ${rtl433GitRevision}
WORKDIR ./build
RUN cmake ..
Expand Down
2 changes: 2 additions & 0 deletions rtl_433/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ For a "zero configuration" setup, install the [Mosquitto broker](https://github.

For more advanced configuration, take a look at the example config file included in the rtl_433 source code: [rtl_433.example.conf](https://github.com/merbanan/rtl_433/blob/master/conf/rtl_433.example.conf)

Note that since the configuration file has bash variables in it, **dollar signs and other special shell characters need to be escaped**. For example, to use the literal string `$GPRMC` in the configuration file, use `\$GPRMC`.

The `retain` option controls if MQTT's `retain` flag is enabled or disabled by default. It can be overridden on a per-radio basis by setting `retain` to `true` or `false` in the `output` setting.

When configuring manually, assuming that you intend to get the rtl_433 data into Home Assistant, the absolute minimum that you need to specify in the config file is the [MQTT connection and authentication information](https://triq.org/rtl_433/OPERATION.html#mqtt-output):
Expand Down
2 changes: 1 addition & 1 deletion rtl_433/config.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "rtl_433",
"image": "ghcr.io/pbkhrv/rtl_433-hass-addons-rtl_433-{arch}",
"version": "0.4.1",
"version": "0.5.0",
"slug": "rtl433",
"description": "Receive wireless sensor data via an SDR dongle and rtl_433",
"url": "https://github.com/pbkhrv/rtl_433-hass-addons/tree/main/rtl_433",
Expand Down
2 changes: 1 addition & 1 deletion rtl_433_mqtt_autodiscovery-next/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"mqtt_port": 1883,
"mqtt_user": "",
"mqtt_password": "",
"mqtt_retain": false,
"mqtt_retain": true,
"rtl_topic": "rtl_433/+/events",
"device_topic_suffix": "",
"discovery_prefix": "homeassistant",
Expand Down
6 changes: 6 additions & 0 deletions rtl_433_mqtt_autodiscovery/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [0.8.0] - 2024-02-16

* Update to rtl_433 23.11 for the stable addon
* The new release will properly support `device_topic_suffix` in the stable branch of this addon #173
* Default `retain` to true. The recommended approach to running the addon is to only run discovery when actually trying to add a device.

## [0.7.0] - 2023-10-27

* `device_topic_suffix` support added by @unverbraucht #144
Expand Down
2 changes: 1 addition & 1 deletion rtl_433_mqtt_autodiscovery/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ARG BUILD_FROM=ghcr.io/home-assistant/amd64-base-python:3.12-alpine3.18
FROM ${BUILD_FROM} as builder

ARG rtl433GitRevision=22.11
ARG rtl433GitRevision=23.11

RUN wget https://raw.githubusercontent.com/merbanan/rtl_433/${rtl433GitRevision}/examples/rtl_433_mqtt_hass.py -O rtl_433_mqtt_hass.py

Expand Down
4 changes: 2 additions & 2 deletions rtl_433_mqtt_autodiscovery/config.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "rtl_433 MQTT Auto Discovery",
"image": "ghcr.io/pbkhrv/rtl_433-hass-addons-rtl_433_mqtt_autodiscovery-{arch}",
"version": "0.7.0",
"version": "0.8.0",
"slug": "rtl433mqttautodiscovery",
"description": "Automatic discovery of rtl_433 device information via MQTT",
"url": "https://github.com/pbkhrv/rtl_433-hass-addons/tree/main/rtl_433_mqtt_autodiscovery",
Expand All @@ -14,7 +14,7 @@
"mqtt_port": 1883,
"mqtt_user": "",
"mqtt_password": "",
"mqtt_retain": false,
"mqtt_retain": true,
"rtl_topic": "rtl_433/+/events",
"device_topic_suffix": "",
"discovery_prefix": "homeassistant",
Expand Down

0 comments on commit d4eca54

Please sign in to comment.