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.
Files changed (53) hide show
  1. package/README.md +8 -12
  2. package/admin/assets/index-DTW1yXOf.js +757 -0
  3. package/admin/index_m.html +1 -1
  4. package/admin/jsonCustom.json +450 -0
  5. package/admin/rules/@mf-types.zip +0 -0
  6. package/admin/rules/assets/index-B_I0oO9g.js +1187 -0
  7. package/admin/rules/assets/{localSharedImportMap-CNn4MUou.js → localSharedImportMap-B_FoNVrB.js} +1 -1
  8. package/admin/rules/customRuleBlocks.js +5 -5
  9. package/build/i18n/de.json +4 -0
  10. package/build/i18n/en.json +4 -0
  11. package/build/i18n/es.json +4 -0
  12. package/build/i18n/fr.json +4 -0
  13. package/build/i18n/it.json +4 -0
  14. package/build/i18n/nl.json +4 -0
  15. package/build/i18n/pl.json +4 -0
  16. package/build/i18n/pt.json +4 -0
  17. package/build/i18n/ru.json +4 -0
  18. package/build/i18n/uk.json +4 -0
  19. package/build/i18n/zh-cn.json +4 -0
  20. package/build/lib/AlexaSmartHomeV3/Alexa/Directives/Discovery.js +9 -0
  21. package/build/lib/AlexaSmartHomeV3/Alexa/Directives/Discovery.js.map +1 -1
  22. package/build/lib/AlexaSmartHomeV3/Alexa/Properties/TargetSetpoint.js +8 -1
  23. package/build/lib/AlexaSmartHomeV3/Alexa/Properties/TargetSetpoint.js.map +1 -1
  24. package/build/lib/AlexaSmartHomeV3/Alexa/Properties/Temperature.js +8 -1
  25. package/build/lib/AlexaSmartHomeV3/Alexa/Properties/Temperature.js.map +1 -1
  26. package/build/lib/AlexaSmartHomeV3/Controls/Cie.js +170 -0
  27. package/build/lib/AlexaSmartHomeV3/Controls/Cie.js.map +1 -0
  28. package/build/lib/AlexaSmartHomeV3/Controls/Control.js +7 -0
  29. package/build/lib/AlexaSmartHomeV3/Controls/Control.js.map +1 -1
  30. package/build/lib/AlexaSmartHomeV3/Controls/Scene.js +68 -0
  31. package/build/lib/AlexaSmartHomeV3/Controls/Scene.js.map +1 -0
  32. package/build/lib/AlexaSmartHomeV3/DeviceManager.js +4 -0
  33. package/build/lib/AlexaSmartHomeV3/DeviceManager.js.map +1 -1
  34. package/build/lib/AlexaSmartHomeV3/Helpers/Utils.js +62 -56
  35. package/build/lib/AlexaSmartHomeV3/Helpers/Utils.js.map +1 -1
  36. package/build/lib/alexaSmartHomeV2.js +2788 -0
  37. package/build/lib/alexaSmartHomeV3.js +33 -10
  38. package/build/lib/alexaSmartHomeV3.js.map +1 -1
  39. package/build/lib/alisa.js +1086 -1561
  40. package/build/lib/alisa.js.map +1 -0
  41. package/build/lib/appNotifications.js +288 -0
  42. package/build/lib/appNotifications.js.map +1 -0
  43. package/build/lib/googleHome.js +1262 -1913
  44. package/build/lib/googleHome.js.map +1 -0
  45. package/build/lib/remote.js +1 -1
  46. package/build/lib/remote.js.map +1 -1
  47. package/build/main.js +47 -17
  48. package/build/main.js.map +1 -1
  49. package/io-package.json +32 -27
  50. package/package.json +10 -10
  51. package/admin/assets/index-39e7CNHj.js +0 -705
  52. package/admin/rules/assets/index-DYx5xsZT.js +0 -1187
  53. 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)