Merge pull request #66 from icanos/feature/scenes

added missing file to dockerfile
This commit is contained in:
Marcus Westin 2020-02-29 17:07:27 +01:00 committed by GitHub
commit 5dc6888d67
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 3 deletions

View file

@ -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
@ -68,3 +69,4 @@ LABEL \
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"

View file

@ -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/",

View file

@ -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);