iobroker.solectrus-influxdb 0.1.4 → 0.1.5

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 CHANGED
@@ -178,6 +178,10 @@ Nur aktivierte Sensoren werden verarbeitet.
178
178
  Placeholder for the next version (at the beginning of the line):
179
179
  ### **WORK IN PROGRESS**
180
180
  -->
181
+ ### 0.1.5 (2026-01-17)
182
+
183
+ * (Felliglanz) Improve sensor configuration UI (accordion)
184
+
181
185
  ### 0.1.4 (2026-01-15)
182
186
 
183
187
  * (patricknitsch) Bugfix with Icon
@@ -77,8 +77,10 @@
77
77
  "label": "Sensors Settings",
78
78
  "items": {
79
79
  "sensors": {
80
- "type": "table",
80
+ "type": "accordion",
81
81
  "label": "SOLECTRUS Sensors",
82
+ "titleAttr": "SensorName",
83
+ "clone": true,
82
84
  "sm": 12,
83
85
  "md": 12,
84
86
  "lg": 12,
@@ -87,25 +89,36 @@
87
89
  "items": [
88
90
  {
89
91
  "attr": "enabled",
90
- "title": "Enabled",
92
+ "label": "Enabled",
91
93
  "type": "checkbox",
92
- "width": "80px"
94
+ "xs": 12,
95
+ "sm": 2,
96
+ "md": 2,
97
+ "lg": 2
93
98
  },
94
99
  {
95
100
  "attr": "SensorName",
96
- "title": "Sensor Name",
101
+ "label": "Sensor Name",
97
102
  "type": "text",
98
- "width": "250px"
103
+ "xs": 12,
104
+ "sm": 10,
105
+ "md": 4,
106
+ "lg": 4
99
107
  },
100
108
  {
101
109
  "attr": "sourceState",
102
- "title": "ioBroker Source State",
110
+ "label": "ioBroker Source State",
103
111
  "type": "objectId",
104
- "width": "300px"
112
+ "types": ["state"],
113
+ "newLine": true,
114
+ "xs": 12,
115
+ "sm": 12,
116
+ "md": 12,
117
+ "lg": 12
105
118
  },
106
119
  {
107
120
  "attr": "type",
108
- "title": "Datatype",
121
+ "label": "Datatype",
109
122
  "type": "select",
110
123
  "options": [
111
124
  { "label": "Default", "value": "" },
@@ -114,20 +127,30 @@
114
127
  { "label": "Boolean", "value": "bool" },
115
128
  { "label": "String", "value": "string" }
116
129
  ],
117
- "width": "120px"
130
+ "newLine": true,
131
+ "xs": 12,
132
+ "sm": 4,
133
+ "md": 3,
134
+ "lg": 3
118
135
  },
119
136
  {
120
137
  "attr": "measurement",
121
- "title": "Influx Measurement",
138
+ "label": "Influx Measurement",
122
139
  "type": "text",
123
140
  "default": "solectrus",
124
- "width": "150px"
141
+ "xs": 12,
142
+ "sm": 4,
143
+ "md": 5,
144
+ "lg": 5
125
145
  },
126
146
  {
127
147
  "attr": "field",
128
- "title": "Influx Field",
148
+ "label": "Influx Field",
129
149
  "type": "text",
130
- "width": "150px"
150
+ "xs": 12,
151
+ "sm": 4,
152
+ "md": 4,
153
+ "lg": 4
131
154
  }
132
155
  ],
133
156
  "default": [
package/io-package.json CHANGED
@@ -1,8 +1,21 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "solectrus-influxdb",
4
- "version": "0.1.4",
4
+ "version": "0.1.5",
5
5
  "news": {
6
+ "0.1.5": {
7
+ "en": "Improve sensor configuration UI (accordion)",
8
+ "de": "Verbessern Sie die Sensorkonfiguration UI (Aufzeichnung)",
9
+ "ru": "Улучшение конфигурации датчика UI (аккордеон)",
10
+ "pt": "Melhorar a configuração do sensor UI (acordão)",
11
+ "nl": "Verbeter sensorconfiguratie UI (accordion)",
12
+ "fr": "Améliorer la configuration du capteur UI (accordement)",
13
+ "it": "Migliorare la configurazione del sensore UI (secondo)",
14
+ "es": "Mejorar la configuración de sensores UI (accordión)",
15
+ "pl": "Ulepszenie konfiguracji czujnika UI (akordeon)",
16
+ "uk": "Покращення конфігурації датчика UI (акордеон)",
17
+ "zh-cn": "改进传感器配置 UI (accordion)"
18
+ },
6
19
  "0.1.4": {
7
20
  "en": "Bugfix with Icon",
8
21
  "de": "Bugfix mit Icon",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker.solectrus-influxdb",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "Configure Sensors for SOLECTRUS and push to InfluxDB",
5
5
  "author": {
6
6
  "name": "patricknitsch",