homebridge-smartsystem 7.1.16 → 7.1.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/duotecno/master.js +2 -2
- package/package.json +5 -4
package/duotecno/master.js
CHANGED
|
@@ -773,9 +773,9 @@ class Master extends base_1.Base {
|
|
|
773
773
|
}
|
|
774
774
|
setRegisterValue(register, value) {
|
|
775
775
|
return __awaiter(this, void 0, void 0, function* () {
|
|
776
|
-
this.
|
|
776
|
+
this.info(`### setRegisterValue called: register=${register}, value=${value}, protocol=${this.protocol}`);
|
|
777
777
|
if (this.protocol >= 209) {
|
|
778
|
-
this.
|
|
778
|
+
this.info(`### Sending register update to ${this.getAddress()}: register ${register} = ${value}`);
|
|
779
779
|
yield this.send(protocol_1.Protocol.buildRegister(register, value));
|
|
780
780
|
this.log(`### Register ${register} set to ${value} successfully`);
|
|
781
781
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "homebridge-smartsystem",
|
|
3
3
|
"displayname": "Duotecno Bridge",
|
|
4
|
-
"version": "7.1.
|
|
4
|
+
"version": "7.1.17",
|
|
5
5
|
"description": "SmartServer (Proxy TCP sockets to the cloud, Smappee MQTT, Duotecno IP Nodes, Homekit interface)",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"author": "Johan Coppieters",
|
|
@@ -13,9 +13,10 @@
|
|
|
13
13
|
"build": "npx tsc --build",
|
|
14
14
|
"unpublish": "npm unpublish --force homebridge-smartsystem@6.8.17",
|
|
15
15
|
"prepublishOnly": "npm run build",
|
|
16
|
-
"
|
|
17
|
-
"release:
|
|
18
|
-
"release:
|
|
16
|
+
"check-published": "npm view homebridge-smartsystem version",
|
|
17
|
+
"release:patch": "echo 'npm login !!' && git add -A && git commit -m 'pre-release' --allow-empty && npm version patch && npm publish && git push && git push --tags && echo 'Waiting for npm to propagate...' && sleep 5 && npm run check-published",
|
|
18
|
+
"release:minor": "echo 'npm login !!' && git add -A && git commit -m 'pre-release' --allow-empty && npm version minor && npm publish && git push && git push --tags && echo 'Waiting for npm to propagate...' && sleep 5 && npm run check-published",
|
|
19
|
+
"release:major": "git add -A && git commit -m 'pre-release' --allow-empty && npm version major && npm publish && git push && git push --tags && echo 'Waiting for npm to propagate...' && sleep 5 && npm run check-published"
|
|
19
20
|
},
|
|
20
21
|
"engines": {
|
|
21
22
|
"node": "^18.20.4 || ^20.15.1 || ^22",
|