iobroker.iot 4.1.11 → 4.2.0
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 +5 -5
- package/admin/assets/{index-BFf1e8D3.js → index-C4_fq7Q6.js} +91 -91
- package/admin/index_m.html +1 -1
- package/admin/rules/assets/{index-HzrazDZT.js → index-QzfpqQ-y.js} +77 -77
- package/admin/rules/customRuleBlocks.js +2 -2
- package/build/lib/AlexaSmartHomeV3/Alexa/Properties/Base.js +2 -0
- package/build/lib/AlexaSmartHomeV3/Alexa/Properties/Base.js.map +1 -1
- package/build/lib/AlexaSmartHomeV3/Alexa/Properties/Brightness.js +16 -12
- package/build/lib/AlexaSmartHomeV3/Alexa/Properties/Brightness.js.map +1 -1
- package/build/lib/AlexaSmartHomeV3/Controls/Control.js +4 -0
- package/build/lib/AlexaSmartHomeV3/Controls/Control.js.map +1 -1
- package/build/lib/AlexaSmartHomeV3/Controls/Ct.js +26 -40
- package/build/lib/AlexaSmartHomeV3/Controls/Ct.js.map +1 -1
- package/build/lib/AlexaSmartHomeV3/Controls/Dimmer.js +33 -4
- package/build/lib/AlexaSmartHomeV3/Controls/Dimmer.js.map +1 -1
- package/build/lib/AlexaSmartHomeV3/Controls/Hue.js +32 -40
- package/build/lib/AlexaSmartHomeV3/Controls/Hue.js.map +1 -1
- package/build/lib/AlexaSmartHomeV3/Controls/Motion.js +20 -1
- package/build/lib/AlexaSmartHomeV3/Controls/Motion.js.map +1 -1
- package/build/lib/AlexaSmartHomeV3/Controls/Rgb.js +33 -43
- package/build/lib/AlexaSmartHomeV3/Controls/Rgb.js.map +1 -1
- package/build/lib/AlexaSmartHomeV3/Controls/RgbSingle.js +49 -11
- package/build/lib/AlexaSmartHomeV3/Controls/RgbSingle.js.map +1 -1
- package/build/lib/AlexaSmartHomeV3/Controls/RgbwSingle.js +38 -46
- package/build/lib/AlexaSmartHomeV3/Controls/RgbwSingle.js.map +1 -1
- package/build/lib/AlexaSmartHomeV3/Device.js +4 -0
- package/build/lib/AlexaSmartHomeV3/Device.js.map +1 -1
- package/build/lib/AlexaSmartHomeV3/DeviceManager.js +32 -14
- package/build/lib/AlexaSmartHomeV3/DeviceManager.js.map +1 -1
- package/build/lib/AlexaSmartHomeV3/Helpers/AdapterProvider.js +9 -0
- package/build/lib/AlexaSmartHomeV3/Helpers/AdapterProvider.js.map +1 -1
- package/build/lib/AlexaSmartHomeV3/Helpers/Utils.js +33 -7
- package/build/lib/AlexaSmartHomeV3/Helpers/Utils.js.map +1 -1
- package/build/lib/alexaSmartHomeV3.js +2 -0
- package/build/lib/alexaSmartHomeV3.js.map +1 -1
- package/io-package.json +27 -27
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -350,6 +350,11 @@ setState('iot.0.app.message', JSON.stringify({
|
|
|
350
350
|
### **WORK IN PROGRESS**
|
|
351
351
|
-->
|
|
352
352
|
## Changelog
|
|
353
|
+
### 4.2.0 (2025-10-21)
|
|
354
|
+
- (@GermanBluefox) Added debug information
|
|
355
|
+
- (@GermanBluefox) Better handling of HUE devices
|
|
356
|
+
- (@GermanBluefox) Updated type detector
|
|
357
|
+
|
|
353
358
|
### 4.1.11 (2025-10-20)
|
|
354
359
|
- (@GermanBluefox) Added humidity sensor
|
|
355
360
|
- (@GermanBluefox) Added unreach indicator
|
|
@@ -365,11 +370,6 @@ setState('iot.0.app.message', JSON.stringify({
|
|
|
365
370
|
### 4.1.5 (2025-10-18)
|
|
366
371
|
- (@GermanBluefox) Better handling of color temperatures
|
|
367
372
|
|
|
368
|
-
### 4.1.4 (2025-10-17)
|
|
369
|
-
- (@GermanBluefox) Implemented stored values for Alexa V3
|
|
370
|
-
- (@GermanBluefox) Added RGB(W) with individual states to Alexa V3
|
|
371
|
-
- (@GermanBluefox) Added dedicated checkbox for alexa custom skill
|
|
372
|
-
|
|
373
373
|
## License
|
|
374
374
|
|
|
375
375
|
The MIT License (MIT)
|