iobroker.homewizard 0.1.0 → 0.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 +4 -0
- package/admin/jsonConfig.json +3 -1
- package/io-package.json +14 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/admin/jsonConfig.json
CHANGED
|
@@ -10,12 +10,13 @@
|
|
|
10
10
|
"_devicesInfo": {
|
|
11
11
|
"type": "staticText",
|
|
12
12
|
"text": "devicesInfo",
|
|
13
|
+
"xs": 12, "sm": 12, "md": 12, "lg": 12, "xl": 12,
|
|
13
14
|
"style": { "fontSize": 14, "marginBottom": 16 }
|
|
14
15
|
},
|
|
15
16
|
"devices": {
|
|
16
17
|
"type": "table",
|
|
17
18
|
"label": "labelDevices",
|
|
18
|
-
"sm": 12,
|
|
19
|
+
"xs": 12, "sm": 12, "md": 12, "lg": 12, "xl": 12,
|
|
19
20
|
"items": [
|
|
20
21
|
{
|
|
21
22
|
"type": "text",
|
|
@@ -63,6 +64,7 @@
|
|
|
63
64
|
"_pairingInfo": {
|
|
64
65
|
"type": "staticText",
|
|
65
66
|
"text": "pairingInfo",
|
|
67
|
+
"xs": 12, "sm": 12, "md": 12, "lg": 12, "xl": 12,
|
|
66
68
|
"style": { "fontSize": 14, "marginBottom": 16 }
|
|
67
69
|
},
|
|
68
70
|
"_supportHeader": {
|
package/io-package.json
CHANGED
|
@@ -1,8 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"common": {
|
|
3
3
|
"name": "homewizard",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.1",
|
|
5
5
|
"news": {
|
|
6
|
+
"0.1.1": {
|
|
7
|
+
"en": "Add unit tests (129 tests), fix Dependabot config",
|
|
8
|
+
"de": "Unit-Tests hinzugefügt (129 Tests), Dependabot-Konfiguration korrigiert",
|
|
9
|
+
"ru": "Добавлены модульные тесты (129 тестов), исправлена конфигурация Dependabot",
|
|
10
|
+
"pt": "Adicionados testes unitários (129 testes), corrigida configuração do Dependabot",
|
|
11
|
+
"nl": "Unit tests toegevoegd (129 tests), Dependabot-configuratie gecorrigeerd",
|
|
12
|
+
"fr": "Ajout de tests unitaires (129 tests), correction de la configuration Dependabot",
|
|
13
|
+
"it": "Aggiunti test unitari (129 test), corretta configurazione Dependabot",
|
|
14
|
+
"es": "Añadidos tests unitarios (129 tests), corregida configuración de Dependabot",
|
|
15
|
+
"pl": "Dodano testy jednostkowe (129 testów), poprawiono konfigurację Dependabot",
|
|
16
|
+
"uk": "Додано модульні тести (129 тестів), виправлено конфігурацію Dependabot",
|
|
17
|
+
"zh-cn": "添加单元测试(129个测试),修复 Dependabot 配置"
|
|
18
|
+
},
|
|
6
19
|
"0.1.0": {
|
|
7
20
|
"en": "Initial release with API v2, WebSocket push, mDNS discovery, multi-device pairing",
|
|
8
21
|
"de": "Erstveröffentlichung mit API v2, WebSocket-Push, mDNS-Discovery, Multi-Geräte-Pairing",
|
package/package.json
CHANGED