Merge pull request #49 from icanos/bluez

added missing dbus access
This commit is contained in:
Marcus Westin 2020-01-24 11:01:09 +01:00 committed by GitHub
commit 22eddecba4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View file

@ -1,6 +1,6 @@
{ {
"name": "Plejd", "name": "Plejd",
"version": "0.3.0", "version": "0.3.1",
"slug": "plejd", "slug": "plejd",
"description": "Adds support for the Swedish home automation devices from Plejd.", "description": "Adds support for the Swedish home automation devices from Plejd.",
"url": "https://github.com/icanos/hassio-plejd/", "url": "https://github.com/icanos/hassio-plejd/",
@ -14,6 +14,7 @@
"startup": "application", "startup": "application",
"boot": "auto", "boot": "auto",
"host_network": true, "host_network": true,
"host_dbus": true,
"options": { "options": {
"site": "Default Site", "site": "Default Site",
"username": "", "username": "",

View file

@ -3,7 +3,7 @@ const mqtt = require('./mqtt');
const fs = require('fs'); const fs = require('fs');
const PlejdService = require('./ble.bluez'); const PlejdService = require('./ble.bluez');
const version = "0.3.0"; const version = "0.3.1";
async function main() { async function main() {
console.log('starting Plejd add-on v. ' + version); console.log('starting Plejd add-on v. ' + version);