iobroker.iot 4.1.3 → 4.1.4
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 -3
- package/admin/assets/{index-CyfkYMpa.js → index-apVn3YLm.js} +82 -82
- package/admin/index_m.html +1 -1
- package/build/lib/AlexaSmartHomeV3/Alexa/ModeValues/Closed.js +1 -1
- package/build/lib/AlexaSmartHomeV3/Alexa/ModeValues/Closed.js.map +1 -1
- package/build/lib/AlexaSmartHomeV3/Alexa/ModeValues/Open.js +1 -1
- package/build/lib/AlexaSmartHomeV3/Alexa/ModeValues/Open.js.map +1 -1
- 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/PowerState.js +20 -0
- package/build/lib/AlexaSmartHomeV3/Alexa/Properties/PowerState.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/Dimmer.js +31 -11
- package/build/lib/AlexaSmartHomeV3/Controls/Dimmer.js.map +1 -1
- package/build/lib/AlexaSmartHomeV3/Controls/Rgb.js +303 -0
- package/build/lib/AlexaSmartHomeV3/Controls/Rgb.js.map +1 -0
- package/build/lib/AlexaSmartHomeV3/Controls/index.js +5 -0
- package/build/lib/AlexaSmartHomeV3/Controls/index.js.map +1 -1
- package/build/lib/AlexaSmartHomeV3/Helpers/Utils.js +10 -2
- package/build/lib/AlexaSmartHomeV3/Helpers/Utils.js.map +1 -1
- package/build/main.js +12 -1
- package/build/main.js.map +1 -1
- package/io-package.json +14 -14
- package/package.json +1 -1
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.1.4 (2025-10-17)
|
|
354
|
+
- (@GermanBluefox) Implemented stored values for Alexa V3
|
|
355
|
+
- (@GermanBluefox) Added RGB(W) with individual states to Alexa V3
|
|
356
|
+
- (@GermanBluefox) Added dedicated checkbox for alexa custom skill
|
|
357
|
+
|
|
353
358
|
### 4.1.3 (2025-10-15)
|
|
354
359
|
- (@GermanBluefox) Fixed custom skill
|
|
355
360
|
- (@GermanBluefox) Added RGB single and scene support
|
|
@@ -366,9 +371,6 @@ setState('iot.0.app.message', JSON.stringify({
|
|
|
366
371
|
- (@GermanBluefox) Some files were rewritten in TypeScript
|
|
367
372
|
- (@GermanBluefox) Improvement of Alexa V3
|
|
368
373
|
|
|
369
|
-
### 3.6.0 (2025-07-02)
|
|
370
|
-
- (@foxriver76) new features for upcoming Visu App 1.4.0
|
|
371
|
-
|
|
372
374
|
## License
|
|
373
375
|
|
|
374
376
|
The MIT License (MIT)
|