iobroker.iot 5.0.8 → 5.0.12
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 -11
- package/admin/assets/index-jI5Tax_m.js +766 -0
- package/admin/index_m.html +1 -1
- package/admin/rules/assets/{ActionVisu-CRxreF9A.js → ActionVisu-BvWg4aqg.js} +3 -3
- package/admin/rules/assets/ActionVisu__loadShare__react__loadShare__-5Bv9wGPU.js +1 -0
- package/admin/rules/assets/ActionVisu__loadShare__react_mf_2_dom__loadShare__-DUk47PjY.js +9 -0
- package/admin/rules/assets/ActionVisu__mf_v__runtimeInit__mf_v__-BUkKpfUR.js +1 -0
- package/admin/rules/assets/bootstrap-BPw119x4.js +1 -0
- package/admin/rules/assets/hostInit-Dxp6BaAc.js +2 -2
- package/admin/rules/assets/{index-B4eX908S.js → index-DAfe9TMn.js} +1 -1
- package/admin/rules/assets/index-NkHakkqA.js +2 -0
- package/admin/rules/assets/{index-DR6CejZ4.js → index-iefDESue.js} +37 -37
- package/admin/rules/assets/index.cjs-DyuWoUPi.js +8 -0
- package/admin/rules/assets/{virtualExposes-fQM_6VMq.js → virtualExposes-BQXgT6g9.js} +2 -2
- package/admin/rules/customRuleBlocks.js +2 -2
- package/build/lib/AlexaSmartHomeV3/Alexa/Properties/Base.js.map +1 -1
- package/build/lib/AlexaSmartHomeV3/Controls/Percentage.js +13 -0
- package/build/lib/AlexaSmartHomeV3/Controls/Percentage.js.map +1 -0
- package/build/lib/AlexaSmartHomeV3/Controls/index.js +7 -3
- package/build/lib/AlexaSmartHomeV3/Controls/index.js.map +1 -1
- package/build/lib/AlexaSmartHomeV3/DeviceManager.js +30 -30
- package/build/lib/AlexaSmartHomeV3/DeviceManager.js.map +1 -1
- package/build/lib/AlexaSmartHomeV3/Helpers/AdapterProvider.js.map +1 -1
- package/build/lib/AlexaSmartHomeV3/Helpers/Logger.js +2 -1
- package/build/lib/AlexaSmartHomeV3/Helpers/Logger.js.map +1 -1
- package/build/lib/adminCommonSocket.js.map +1 -1
- package/build/lib/alexaCustom.js.map +1 -1
- package/build/lib/alexaSmartHomeV3.js.map +1 -1
- package/build/lib/remote.js.map +1 -1
- package/build/lib/visuApp.js.map +1 -1
- package/build/main.js +1 -2
- package/build/main.js.map +1 -1
- package/doc/ifttt.md +118 -121
- package/io-package.json +53 -53
- package/package.json +9 -8
- package/admin/assets/index-CAyjR82w.js +0 -759
- package/admin/rules/assets/ActionVisu__loadShare__react__loadShare__-DD24U9rt.js +0 -1
- package/admin/rules/assets/ActionVisu__loadShare__react_mf_2_dom__loadShare__-DByPam44.js +0 -9
- package/admin/rules/assets/ActionVisu__mf_v__runtimeInit__mf_v__-C2JRFvAF.js +0 -5
- package/admin/rules/assets/bootstrap-B41OwrCv.js +0 -1
- package/admin/rules/assets/index-CWRtmMP6.js +0 -2
package/README.md
CHANGED
|
@@ -387,7 +387,7 @@ setState('iot.0.app.priority', 'normal'); // optional. Priority: 'high' or 'norm
|
|
|
387
387
|
setState('iot.0.app.title', 'ioBroker'); // optional. Default "ioBroker"
|
|
388
388
|
setState('iot.0.app.message', 'Message text'); // important, that ack=false (default)
|
|
389
389
|
|
|
390
|
-
// or just one state (this also allows to use payload -> `actions`, `devices` and `
|
|
390
|
+
// or just one state (this also allows to use payload -> `actions`, `devices` and `openUrl` property)
|
|
391
391
|
// only message is mandatory. All other are optional
|
|
392
392
|
// Note that, if you are using `actions`or `devices`, the app needs to handle the notification in the background before showing it
|
|
393
393
|
// in some scenarios, e.g. low power or spamming to many notifications the OS may decide to not show the notification at all
|
|
@@ -416,10 +416,18 @@ setState('iot.0.app.message', JSON.stringify({
|
|
|
416
416
|
### **WORK IN PROGRESS**
|
|
417
417
|
-->
|
|
418
418
|
## Changelog
|
|
419
|
+
### 5.0.12 (2025-12-21)
|
|
420
|
+
- (@GermanBluefox) Added copy of credentials from cloud instance
|
|
421
|
+
- (@GermanBluefox) Added QR code to fast connect the ioBroker visu app
|
|
422
|
+
|
|
423
|
+
### 5.0.11 (2025-12-16)
|
|
424
|
+
- (@GermanBluefox) Added percentual control
|
|
425
|
+
- (@GermanBluefox) Correcting creation for complex groups
|
|
426
|
+
|
|
419
427
|
### 5.0.8 (2025-11-28)
|
|
420
428
|
- (@GermanBluefox) Showed last controller ID in `smart.lastObjectID`
|
|
421
429
|
- (@GermanBluefox) Showed subscription valid period in `info.validTill` and GUI
|
|
422
|
-
- (@Copilot) Implemented increasing reconnect
|
|
430
|
+
- (@Copilot) Implemented increasing reconnect interval
|
|
423
431
|
- (@GermanBluefox) Added automatically conversion of type TV (alexaV3) to button (alexaV3)
|
|
424
432
|
- (@GermanBluefox) Optimized the update of devices in GUI
|
|
425
433
|
- (@GermanBluefox) Implemented slider with custom min/max values
|
|
@@ -434,15 +442,6 @@ setState('iot.0.app.message', JSON.stringify({
|
|
|
434
442
|
- (@GermanBluefox) Added possibility to use the 0/1 state as socket
|
|
435
443
|
- (@GermanBluefox) Added dialog to bulk manage the smart names of one device
|
|
436
444
|
|
|
437
|
-
### 5.0.5 (2025-10-31)
|
|
438
|
-
- (@GermanBluefox) Changed behavior of HUE lamps
|
|
439
|
-
|
|
440
|
-
### 5.0.2 (2025-10-30)
|
|
441
|
-
- (@GermanBluefox) Added mireds<->kelvin conversion for color temperature
|
|
442
|
-
- (@GermanBluefox) It is possible to edit a type
|
|
443
|
-
- (@GermanBluefox) Correcting creation of complex groups
|
|
444
|
-
- (@GermanBluefox) Same as 4.2.11
|
|
445
|
-
|
|
446
445
|
## License
|
|
447
446
|
|
|
448
447
|
The MIT License (MIT)
|