iobroker.iot 5.0.2 → 5.0.6
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/README.md +10 -6
- package/admin/assets/{index-CZlHvSGg.js → index-D9hse2qJ.js} +88 -88
- package/admin/index_m.html +1 -1
- package/build/lib/AlexaSmartHomeV3/Alexa/Capabilities/Base.js +0 -3
- package/build/lib/AlexaSmartHomeV3/Alexa/Capabilities/Base.js.map +1 -1
- package/build/lib/AlexaSmartHomeV3/Alexa/Properties/Base.js +3 -0
- package/build/lib/AlexaSmartHomeV3/Alexa/Properties/Base.js.map +1 -1
- package/build/lib/AlexaSmartHomeV3/Alexa/Properties/Color.js +3 -0
- package/build/lib/AlexaSmartHomeV3/Alexa/Properties/Color.js.map +1 -1
- package/build/lib/AlexaSmartHomeV3/Alexa/Properties/PowerState.js +3 -2
- package/build/lib/AlexaSmartHomeV3/Alexa/Properties/PowerState.js.map +1 -1
- package/build/lib/AlexaSmartHomeV3/Alexa/Properties/RelativeHumidity.js +3 -0
- package/build/lib/AlexaSmartHomeV3/Alexa/Properties/RelativeHumidity.js.map +1 -1
- package/build/lib/AlexaSmartHomeV3/Controls/Control.js +1 -1
- package/build/lib/AlexaSmartHomeV3/Controls/Control.js.map +1 -1
- package/build/lib/AlexaSmartHomeV3/Controls/Hue.js +35 -9
- package/build/lib/AlexaSmartHomeV3/Controls/Hue.js.map +1 -1
- package/build/lib/AlexaSmartHomeV3/DeviceManager.js +6 -6
- package/build/lib/AlexaSmartHomeV3/DeviceManager.js.map +1 -1
- package/build/lib/AlexaSmartHomeV3/Helpers/Utils.js +34 -0
- package/build/lib/AlexaSmartHomeV3/Helpers/Utils.js.map +1 -1
- package/build/main.js +1 -1
- package/build/main.js.map +1 -1
- package/io-package.json +27 -27
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -19,6 +19,8 @@ It is not for remote access to your ioBroker instance. Use ioBroker.cloud adapte
|
|
|
19
19
|
|
|
20
20
|
To use the iot adapter, you should first register on the ioBroker cloud [https://iobroker.pro](https://iobroker.pro).
|
|
21
21
|
|
|
22
|
+
Note: Humidity sensor cannot be shown alone without temperature sensor, because Alexa and Google Home do not support such devices.
|
|
23
|
+
|
|
22
24
|
[Reference to google API type settings](https://developers.google.com/actions/smarthome/guides/)
|
|
23
25
|
|
|
24
26
|

|
|
@@ -350,6 +352,14 @@ setState('iot.0.app.message', JSON.stringify({
|
|
|
350
352
|
### **WORK IN PROGRESS**
|
|
351
353
|
-->
|
|
352
354
|
## Changelog
|
|
355
|
+
### 5.0.6 (2025-11-01)
|
|
356
|
+
- (@GermanBluefox) Added logs to detect the issues with detection
|
|
357
|
+
- (@GermanBluefox) Added possibility to use the 0/1 state as socket
|
|
358
|
+
- (@GermanBluefox) Added dialog to bulk manage the smart names of one device
|
|
359
|
+
|
|
360
|
+
### 5.0.5 (2025-10-31)
|
|
361
|
+
- (@GermanBluefox) Changed behavior of HUE lamps
|
|
362
|
+
|
|
353
363
|
### 5.0.2 (2025-10-30)
|
|
354
364
|
- (@GermanBluefox) Added mireds<->kelvin conversion for color temperature
|
|
355
365
|
- (@GermanBluefox) It is possible to edit a type
|
|
@@ -365,12 +375,6 @@ setState('iot.0.app.message', JSON.stringify({
|
|
|
365
375
|
- (@GermanBluefox) Create the service states at the instance start
|
|
366
376
|
- (@GermanBluefox) Corrected error with gates
|
|
367
377
|
|
|
368
|
-
### 4.2.5 (2025-10-25)
|
|
369
|
-
- (@GermanBluefox) Modified the creation of EndpointID for devices with Umlauts.
|
|
370
|
-
|
|
371
|
-
### 4.2.3 (2025-10-23)
|
|
372
|
-
- (@GermanBluefox) Better auto-detection
|
|
373
|
-
|
|
374
378
|
## License
|
|
375
379
|
|
|
376
380
|
The MIT License (MIT)
|