iobroker.iot 6.0.1 → 6.1.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 +8 -12
- package/admin/assets/index-DTW1yXOf.js +757 -0
- package/admin/index_m.html +1 -1
- package/admin/jsonCustom.json +450 -0
- package/admin/rules/@mf-types.zip +0 -0
- package/admin/rules/assets/index-B_I0oO9g.js +1187 -0
- package/admin/rules/assets/{localSharedImportMap-CNn4MUou.js → localSharedImportMap-B_FoNVrB.js} +1 -1
- package/admin/rules/customRuleBlocks.js +5 -5
- package/build/i18n/de.json +4 -0
- package/build/i18n/en.json +4 -0
- package/build/i18n/es.json +4 -0
- package/build/i18n/fr.json +4 -0
- package/build/i18n/it.json +4 -0
- package/build/i18n/nl.json +4 -0
- package/build/i18n/pl.json +4 -0
- package/build/i18n/pt.json +4 -0
- package/build/i18n/ru.json +4 -0
- package/build/i18n/uk.json +4 -0
- package/build/i18n/zh-cn.json +4 -0
- package/build/lib/AlexaSmartHomeV3/Alexa/Directives/Discovery.js +9 -0
- package/build/lib/AlexaSmartHomeV3/Alexa/Directives/Discovery.js.map +1 -1
- package/build/lib/AlexaSmartHomeV3/Alexa/Properties/TargetSetpoint.js +8 -1
- package/build/lib/AlexaSmartHomeV3/Alexa/Properties/TargetSetpoint.js.map +1 -1
- package/build/lib/AlexaSmartHomeV3/Alexa/Properties/Temperature.js +8 -1
- package/build/lib/AlexaSmartHomeV3/Alexa/Properties/Temperature.js.map +1 -1
- package/build/lib/AlexaSmartHomeV3/Controls/Cie.js +170 -0
- package/build/lib/AlexaSmartHomeV3/Controls/Cie.js.map +1 -0
- package/build/lib/AlexaSmartHomeV3/Controls/Control.js +7 -0
- package/build/lib/AlexaSmartHomeV3/Controls/Control.js.map +1 -1
- package/build/lib/AlexaSmartHomeV3/Controls/Scene.js +68 -0
- package/build/lib/AlexaSmartHomeV3/Controls/Scene.js.map +1 -0
- package/build/lib/AlexaSmartHomeV3/DeviceManager.js +4 -0
- package/build/lib/AlexaSmartHomeV3/DeviceManager.js.map +1 -1
- package/build/lib/AlexaSmartHomeV3/Helpers/Utils.js +62 -56
- package/build/lib/AlexaSmartHomeV3/Helpers/Utils.js.map +1 -1
- package/build/lib/alexaSmartHomeV2.js +2788 -0
- package/build/lib/alexaSmartHomeV3.js +33 -10
- package/build/lib/alexaSmartHomeV3.js.map +1 -1
- package/build/lib/alisa.js +1086 -1561
- package/build/lib/alisa.js.map +1 -0
- package/build/lib/appNotifications.js +288 -0
- package/build/lib/appNotifications.js.map +1 -0
- package/build/lib/googleHome.js +1262 -1913
- package/build/lib/googleHome.js.map +1 -0
- package/build/lib/remote.js +1 -1
- package/build/lib/remote.js.map +1 -1
- package/build/main.js +47 -17
- package/build/main.js.map +1 -1
- package/io-package.json +32 -27
- package/package.json +10 -10
- package/admin/assets/index-39e7CNHj.js +0 -705
- package/admin/rules/assets/index-DYx5xsZT.js +0 -1187
- package/admin/rules/mf-stats.json +0 -1
package/README.md
CHANGED
|
@@ -416,6 +416,14 @@ setState('iot.0.app.message', JSON.stringify({
|
|
|
416
416
|
### **WORK IN PROGRESS**
|
|
417
417
|
-->
|
|
418
418
|
## Changelog
|
|
419
|
+
### 6.1.0 (2026-06-02)
|
|
420
|
+
- (@GermanBluefox) Implemented new feature to select devices from the list and not by enumeration
|
|
421
|
+
- (@GermanBluefox) Possibilty to send messages to the app directly from the state
|
|
422
|
+
- (@GermanBluefox) Migrated google and alisa to TypeScript
|
|
423
|
+
|
|
424
|
+
### 6.0.3 (2026-04-23)
|
|
425
|
+
- (@GermanBluefox) Allowed to read temperature information via Alexa
|
|
426
|
+
|
|
419
427
|
### 6.0.1 (2026-04-07)
|
|
420
428
|
- (iobroker-bot) Adapter requires node.js >= 20 now.
|
|
421
429
|
- (@GermanBluefox) Removed support for Alexa 2
|
|
@@ -430,18 +438,6 @@ setState('iot.0.app.message', JSON.stringify({
|
|
|
430
438
|
- (@GermanBluefox) Added copy of credentials from cloud instance
|
|
431
439
|
- (@GermanBluefox) Added QR code to fast connect the ioBroker visu app
|
|
432
440
|
|
|
433
|
-
### 5.0.11 (2025-12-16)
|
|
434
|
-
- (@GermanBluefox) Added percentual control
|
|
435
|
-
- (@GermanBluefox) Correcting creation for complex groups
|
|
436
|
-
|
|
437
|
-
### 5.0.8 (2025-11-28)
|
|
438
|
-
- (@GermanBluefox) Showed last controller ID in `smart.lastObjectID`
|
|
439
|
-
- (@GermanBluefox) Showed subscription valid period in `info.validTill` and GUI
|
|
440
|
-
- (@Copilot) Implemented increasing reconnect interval
|
|
441
|
-
- (@GermanBluefox) Added automatically conversion of type TV (alexaV3) to button (alexaV3)
|
|
442
|
-
- (@GermanBluefox) Optimized the update of devices in GUI
|
|
443
|
-
- (@GermanBluefox) Implemented slider with custom min/max values
|
|
444
|
-
|
|
445
441
|
## License
|
|
446
442
|
|
|
447
443
|
The MIT License (MIT)
|