From a6d9868c7d15cca2c93a550b765630420f06bb06 Mon Sep 17 00:00:00 2001 From: Marcus Westin Date: Thu, 19 Mar 2020 11:11:22 +0100 Subject: [PATCH] disabled apparmor since lots of issues with that --- plejd/api.js | 2 +- plejd/config.json | 3 ++- plejd/main.js | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) 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);