iobroker.iot 6.1.0 → 6.1.1
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 +6 -7
- package/admin/assets/{index-DTW1yXOf.js → index-jqJ64yku.js} +66 -53
- package/admin/index_m.html +1 -1
- package/admin/rules/@mf-types.zip +0 -0
- package/build/lib/alexaSmartHomeV3.js +1 -1
- package/build/lib/alexaSmartHomeV3.js.map +1 -1
- package/build/main.js +65 -21
- package/build/main.js.map +1 -1
- package/io-package.json +16 -16
- package/package.json +5 -5
- package/build/lib/AlexaSmartHomeV3/Controls/Cie.js +0 -170
- package/build/lib/AlexaSmartHomeV3/Controls/Cie.js.map +0 -1
- package/build/lib/AlexaSmartHomeV3/Controls/Scene.js +0 -68
- package/build/lib/AlexaSmartHomeV3/Controls/Scene.js.map +0 -1
- package/build/lib/alexaSmartHomeV2.js +0 -2788
package/README.md
CHANGED
|
@@ -145,7 +145,7 @@ The adapter automatically creates virtual smart home devices by combining inform
|
|
|
145
145
|
|
|
146
146
|
### Understanding Enumerations
|
|
147
147
|
|
|
148
|
-
Enumerations are ioBroker's built-in way to organize devices:
|
|
148
|
+
Enumerations are ioBroker's a built-in way to organize devices:
|
|
149
149
|
- **Rooms enumeration**: Contains locations (living room, bathroom, bedroom, kitchen, etc.)
|
|
150
150
|
- **Functions enumeration**: Contains device types (light, blind, heating, etc.)
|
|
151
151
|
|
|
@@ -263,7 +263,7 @@ sendTo('iot.0', 'getServiceEndpoint', { serviceName: 'custom_myService' }, resul
|
|
|
263
263
|
|
|
264
264
|
### `text2command`
|
|
265
265
|
|
|
266
|
-
You may write `text2command` in white list, you can send POST request to `https://service.iobroker.in/v1/iotService?service=text2command&key=<user-app-key>&user=<USER_EMAIL>` to write data into
|
|
266
|
+
You may write `text2command` in white list, you can send POST request to `https://service.iobroker.in/v1/iotService?service=text2command&key=<user-app-key>&user=<USER_EMAIL>` to write data into `text2command.X.text` variable.
|
|
267
267
|
|
|
268
268
|
You can use GET method too `https://service.iobroker.in/v1/iotService?service=text2command&key=<user-app-key>&user=<USER_EMAIL>&data=<MY COMMAND>`
|
|
269
269
|
|
|
@@ -416,9 +416,12 @@ setState('iot.0.app.message', JSON.stringify({
|
|
|
416
416
|
### **WORK IN PROGRESS**
|
|
417
417
|
-->
|
|
418
418
|
## Changelog
|
|
419
|
+
### 6.1.1 (2026-06-11)
|
|
420
|
+
- (@GermanBluefox) Added support of credentials manager
|
|
421
|
+
|
|
419
422
|
### 6.1.0 (2026-06-02)
|
|
420
423
|
- (@GermanBluefox) Implemented new feature to select devices from the list and not by enumeration
|
|
421
|
-
- (@GermanBluefox)
|
|
424
|
+
- (@GermanBluefox) Possibility to send messages to the app directly from the state
|
|
422
425
|
- (@GermanBluefox) Migrated google and alisa to TypeScript
|
|
423
426
|
|
|
424
427
|
### 6.0.3 (2026-04-23)
|
|
@@ -434,10 +437,6 @@ setState('iot.0.app.message', JSON.stringify({
|
|
|
434
437
|
- (@GermanBluefox) Corrected the handling of the multiple group names
|
|
435
438
|
- (@GermanBluefox) Fixing the license validation
|
|
436
439
|
|
|
437
|
-
### 5.0.12 (2025-12-21)
|
|
438
|
-
- (@GermanBluefox) Added copy of credentials from cloud instance
|
|
439
|
-
- (@GermanBluefox) Added QR code to fast connect the ioBroker visu app
|
|
440
|
-
|
|
441
440
|
## License
|
|
442
441
|
|
|
443
442
|
The MIT License (MIT)
|