Skip to content

Commit

Permalink
typo correction
Browse files Browse the repository at this point in the history
  • Loading branch information
empierre committed Sep 20, 2017
1 parent 58b025d commit 2c8d0f6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ RUN curl -sL https://deb.nodesource.com/setup_4.x | bash -
RUN apt-get install -y nodejs
#RUN apt-get install npm
RUN npm install -g npm@2.x
RUN wget http://www.e-nef.com/domoticz/mdah/node-mydomoathome-0.2.21.deb
RUN dpkg -i node-mydomoathome-0.2.21.deb
RUN wget http://www.e-nef.com/domoticz/mdah/node-mydomoathome-0.2.22.deb
RUN dpkg -i node-mydomoathome-0.2.22.deb
RUN mv /etc/mydomoathome/config.json /etc/mydomoathome/config.json.old
VOLUME /etc/mydomoathome/

Expand Down
2 changes: 1 addition & 1 deletion mdah.js
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,7 @@ function DevShutterInverted(data) {

params = [];
//params.push({"key": "Status", "value": status});
if (data.HaveDimmer === 'true') || (data.HaveDimmer === true)) {
if ((data.HaveDimmer === 'true') || (data.HaveDimmer === true)) {
params.push({"key": "Level", "value": lvl.toString()});
}
params.push({"key": "stopable", "value": stoppable.toString()});
Expand Down
2 changes: 1 addition & 1 deletion packaging/debian/deb-src/DEBIAN/control
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: MyDomoAtHome
Version: 0.2.20
Version: 0.2.21
Section: base
Priority: extra
Provides: MyDomoAtHome
Expand Down
4 changes: 2 additions & 2 deletions packaging/synology/build/INFO
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package="MyDomoAtHome"
version="0.2.20"
version="0.2.21"
description="Node MyDomoAtHome! The installable NodeJS System Service for Imperihome ISS to Domoticz gateway"
support_url="https://github.com/empierre/MyDomoAtHome/issues"
arch="noarch"
Expand All @@ -13,7 +13,7 @@ displayname="MyDomoAtHome"
dsmuidir="app"
adminport="3002"
changelog="First version"
checksum="96eaee9356db7a8f8d00678ed66b9466"
checksum="9fffeec6b8e38eb5286a0779649e1630"
checkport="yes"
startable="yes"
helpurl="https://github.com/empierre/MyDomoAtHome/"
Expand Down

0 comments on commit 2c8d0f6

Please sign in to comment.