From 745433802cd1c775b260f7b188e9d4cb7864dae8 Mon Sep 17 00:00:00 2001 From: dchesterton Date: Thu, 11 Feb 2021 23:27:37 +0000 Subject: [PATCH] Bump version to 1.0.22 --- README.md | 6 +++++- config.json | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c0472df..87341d2 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,8 @@ texecom: port: 10002 # Optional: the port used to connect to the panel (default: 10001) mqtt: - host: "mqtt://localhost:1883" # Optional: MQTT server URL (default: "mqtt://localhost:1883") + host: "localhost" # Optional: MQTT server URL (default: "localhost") + port: 1883 # Optional: defaults to 1883 username: my_user # Optional: MQTT server authentication user (default: nothing) password: my_password # Optional: MQTT server authentication password (default: nothing) client_id: texecom2mqtt # Optional: MQTT client ID (default: random) @@ -67,6 +68,9 @@ mqtt: retain: true # Optional: MQTT retain (default: true) retain_log: false # Optional: MQTT retain on log messages (default: false) qos: 2 # Optional: MQTT QoS (default: 0) + ca: /cert/ca.pem # Optional: CA for secure TLS connection + cert: /cert/cert.pem # Optional: certificate for secure TLS connection + key: /cert/key.pem # Optional: private ky for secure TLS connection homeassistant: discovery: true # Optional: enable auto discovery (default: false) diff --git a/config.json b/config.json index 12e3cb3..2ac2b29 100644 --- a/config.json +++ b/config.json @@ -1,6 +1,6 @@ { "name": "texecom2mqtt", - "version": "1.0.21", + "version": "1.0.22", "slug": "texecom2mqtt", "description": "Add-on to interface with Texecom Premier Elite alarm panels using MQTT", "url": "https://github.com/dchesterton/texecom2mqtt-hassio",