Skip to content

Commit

Permalink
Merge pull request #84 from icanos/feature/new-api-version
Browse files Browse the repository at this point in the history
fixed build error
  • Loading branch information
icanos authored May 6, 2020
2 parents 160e10e + 97e3216 commit 38b8b8f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions plejd/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ RUN \
libc-dev=0.7.1-r0 \
linux-headers=4.19.36-r0 \
make=4.2.1-r2 \
python=2.7.16-r2 \
python \
bluez \
eudev-dev=3.2.8-r0 \
\
Expand Down Expand Up @@ -69,4 +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"


4 changes: 2 additions & 2 deletions plejd/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Plejd",
"version": "0.4.5",
"version": "0.4.6",
"slug": "plejd",
"description": "Adds support for the Swedish home automation devices from Plejd.",
"url": "https://github.com/icanos/hassio-plejd/",
Expand Down Expand Up @@ -38,4 +38,4 @@
"connectionTimeout": "int",
"writeQueueWaitTime": "int"
}
}
}
4 changes: 2 additions & 2 deletions plejd/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const fs = require('fs');
const PlejdService = require('./ble.bluez');
const SceneManager = require('./scene.manager');

const version = "0.4.5";
const version = "0.4.6";

async function main() {
console.log('starting Plejd add-on v. ' + version);
Expand Down Expand Up @@ -112,4 +112,4 @@ async function main() {
});
}

main();
main();

0 comments on commit 38b8b8f

Please sign in to comment.