diff --git a/plejd/api.js b/plejd/api.js index 9643b96..de02914 100644 --- a/plejd/api.js +++ b/plejd/api.js @@ -127,7 +127,7 @@ class PlejdApi extends EventEmitter { } getSite(siteId) { - console.log('plejd-api: getSites()'); + console.log('plejd-api: getSite(...)'); const self = this; const instance = axios.create({ diff --git a/plejd/config.json b/plejd/config.json index 3461e30..6e6a2e5 100644 --- a/plejd/config.json +++ b/plejd/config.json @@ -1,6 +1,6 @@ { "name": "Plejd", - "version": "0.4.3", + "version": "0.4.4", "slug": "plejd", "description": "Adds support for the Swedish home automation devices from Plejd.", "url": "https://github.com/icanos/hassio-plejd/", @@ -15,6 +15,7 @@ "boot": "auto", "host_network": true, "host_dbus": true, + "apparmor": false, "options": { "site": "Default Site", "username": "", diff --git a/plejd/main.js b/plejd/main.js index 3d0ba33..97ae785 100644 --- a/plejd/main.js +++ b/plejd/main.js @@ -4,7 +4,7 @@ const fs = require('fs'); const PlejdService = require('./ble.bluez'); const SceneManager = require('./scene.manager'); -const version = "0.4.3"; +const version = "0.4.4"; async function main() { console.log('starting Plejd add-on v. ' + version);