From 932db62cf6246fba1320e19839054784361d3423 Mon Sep 17 00:00:00 2001 From: Marcus Westin Date: Fri, 24 Jan 2020 11:00:23 +0100 Subject: [PATCH] added dbus access --- plejd/config.json | 3 ++- plejd/main.js | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/plejd/config.json b/plejd/config.json index ffd5f95..48dae09 100644 --- a/plejd/config.json +++ b/plejd/config.json @@ -1,6 +1,6 @@ { "name": "Plejd", - "version": "0.3.0", + "version": "0.3.1", "slug": "plejd", "description": "Adds support for the Swedish home automation devices from Plejd.", "url": "https://github.com/icanos/hassio-plejd/", @@ -14,6 +14,7 @@ "startup": "application", "boot": "auto", "host_network": true, + "host_dbus": true, "options": { "site": "Default Site", "username": "", diff --git a/plejd/main.js b/plejd/main.js index 363b461..7e4b358 100644 --- a/plejd/main.js +++ b/plejd/main.js @@ -3,7 +3,7 @@ const mqtt = require('./mqtt'); const fs = require('fs'); const PlejdService = require('./ble.bluez'); -const version = "0.3.0"; +const version = "0.3.1"; async function main() { console.log('starting Plejd add-on v. ' + version);