homebridge-tasmota-control 0.4.0 → 0.4.1

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/CHANGELOG.md CHANGED
@@ -3,15 +3,21 @@ All notable changes to this project will be documented in this file.
3
3
 
4
4
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
5
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
+ ## [0.4.1] - (08.04.2022)
7
+ ## Changes
8
+ - update dependencies
9
+
6
10
  ## [0.4.0] - (25.02.2022)
7
11
  ## Added
8
12
  - automatically check channels count
13
+
9
14
  ## Changes
10
15
  - removed channelsCount properties from config.json
11
16
 
12
17
  ## [0.3.47] - (18.01.2022)
13
18
  ## Changes
14
19
  - update dependencies
20
+
15
21
  ## [0.3.46] - (17.01.2022)
16
22
  ## Changes
17
23
  - update dependencies
package/index.js CHANGED
@@ -128,11 +128,12 @@ class tasmotaDevice {
128
128
  const firmwareRevision = response.data.StatusFWR.Version;
129
129
  const channelsCount = response.data.Status.FriendlyName.length;
130
130
 
131
- this.log(`----- ${deviceName} ${channelsCount}CH -----`);
132
- this.log('Manufacturer: %s', this.manufacturer);
133
- this.log('Hardware: %s', modelName);
134
- this.log('Serialnr: %s', addressMac);
135
- this.log('Firmware: %s', firmwareRevision);
131
+ this.log(`----- ${deviceName} -----`);
132
+ this.log(`Manufacturer: ${this.manufacturer}`);
133
+ this.log(`Hardware: ${modelName}`);
134
+ this.log(`Serialnr: ${addressMac}`);
135
+ this.log(`Firmware: ${firmwareRevision}`);
136
+ this.log(`Channels: ${channelsCount}`);
136
137
  this.log('----------------------------------');
137
138
 
138
139
  this.modelName = modelName;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "displayName": "Tasmota Control",
3
3
  "name": "homebridge-tasmota-control",
4
- "version": "0.4.0",
4
+ "version": "0.4.1",
5
5
  "description": "Homebridge plugin (https://github.com/homebridge/homebridge) to control Tasmota flashed devices.",
6
6
  "license": "MIT",
7
7
  "author": "grzegorz914",
@@ -31,7 +31,7 @@
31
31
  "homebridge": ">=1.3.0"
32
32
  },
33
33
  "dependencies": {
34
- "axios": "^0.26.0"
34
+ "axios": "^0.26.1"
35
35
  },
36
36
  "keywords": [
37
37
  "homebridge",
@@ -43,4 +43,4 @@
43
43
  "scripts": {
44
44
  "test": "echo \"Error: no test specified\" && exit 1"
45
45
  }
46
- }
46
+ }