diff --git a/plejd/Dockerfile b/plejd/Dockerfile index 33e07c9..fa7fd34 100644 --- a/plejd/Dockerfile +++ b/plejd/Dockerfile @@ -14,6 +14,7 @@ COPY ./mqtt.js /plejd/ COPY ./package.json /plejd/ COPY ./ble.js /plejd/ COPY ./ble.bluez.js /plejd/ +COPY ./scene.manager.js /plejd/ ARG BUILD_ARCH @@ -67,4 +68,5 @@ LABEL \ org.label-schema.schema-version="1.0" \ org.label-schema.usage="https://github.com/icanos/hassio-plejd/tree/master/README.md" \ org.label-schema.vcs-ref=${BUILD_REF} \ - org.label-schema.vcs-url="https://github.com/icanos/hassio-plejd" \ No newline at end of file + org.label-schema.vcs-url="https://github.com/icanos/hassio-plejd" + \ No newline at end of file diff --git a/plejd/config.json b/plejd/config.json index 3e59077..e543442 100644 --- a/plejd/config.json +++ b/plejd/config.json @@ -1,6 +1,6 @@ { "name": "Plejd", - "version": "0.4.0", + "version": "0.4.1", "slug": "plejd", "description": "Adds support for the Swedish home automation devices from Plejd.", "url": "https://github.com/icanos/hassio-plejd/", diff --git a/plejd/main.js b/plejd/main.js index 83e200e..73e5f5e 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.0"; +const version = "0.4.1"; async function main() { console.log('starting Plejd add-on v. ' + version);