iobroker.alpha-ess 2.1.4 → 2.1.6
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 +66 -58
- package/admin/i18n/en/translations.json +4 -4
- package/admin/jsonConfig.json +170 -99
- package/io-package.json +27 -27
- package/main.js +1061 -958
- package/package.json +12 -15
package/README.md
CHANGED
|
@@ -45,141 +45,149 @@ The quality attribute of each state is set accordingly to its status:
|
|
|
45
45
|
To be able to use the Alpha-ESS Open API, you have to register your Alpha-ESS device unter https://open.alphaess.com. Once registered, you get a developer ID and a developer key (called "Secret"). You will need these to have access to the Open API.
|
|
46
46
|
How to find SN and Check code for registration is described here: https://github.com/alphaess-developer/alphacloud_open_api
|
|
47
47
|
|
|
48
|
-
-
|
|
49
|
-
-
|
|
50
|
-
-
|
|
51
|
-
-
|
|
52
|
-
-
|
|
53
|
-
-
|
|
54
|
-
-
|
|
55
|
-
-
|
|
56
|
-
-
|
|
57
|
-
-
|
|
48
|
+
- **Personal application ID:** The application ID (see above)
|
|
49
|
+
- **Personal application Secret:** The application Secret (see above)
|
|
50
|
+
- **Alpha-ESS System ID:** The S/N (serial number) of your Alpha-ESS equipment
|
|
51
|
+
- **Interval to read realtime data:** Unit: seconds.
|
|
52
|
+
- **Interval to read energy data:** Unit: minutes.
|
|
53
|
+
- **Interval to read charging settings:** Unit: minutes.
|
|
54
|
+
- **Interval to read discharging settings:** Unit: minutes.
|
|
55
|
+
- **Interval to read summary data:** Unit: minutes.
|
|
56
|
+
- **Interval to read wallbox data:** Unit: minutes. Caution: Currently only one Wallbox is supported.
|
|
57
|
+
- **Update unchanged states:** If this option is checked, states are changed even if the corresponding value is unchanged.
|
|
58
58
|
|
|
59
59
|
## Disclaimer
|
|
60
60
|
|
|
61
61
|
**All product and company names or logos are trademarks™ or registered® trademarks of their respective holders. Use of them does not imply any affiliation with or endorsement by them or any associated subsidiaries! This personal project is maintained in spare time and has no business goal.**
|
|
62
62
|
|
|
63
63
|
## Changelog
|
|
64
|
+
### 2.1.6 (2024-12-01)
|
|
65
|
+
|
|
66
|
+
- (Gaspode) Migrated to ESLint 9
|
|
67
|
+
|
|
68
|
+
### 2.1.5 (2024-11-14)
|
|
69
|
+
|
|
70
|
+
- (Gaspode) Optimized GUI for all screen resolutions (responsive design)
|
|
71
|
+
|
|
64
72
|
### 2.1.4 (2024-08-13)
|
|
65
73
|
|
|
66
|
-
-
|
|
74
|
+
- (Gaspode) Updated some formal stuff
|
|
67
75
|
|
|
68
76
|
### 2.1.3 (2024-08-07)
|
|
69
77
|
|
|
70
|
-
-
|
|
78
|
+
- (Gaspode) Increased read timeout from 10 to 20 s
|
|
71
79
|
|
|
72
80
|
### 2.1.2 (2024-08-07)
|
|
73
81
|
|
|
74
|
-
-
|
|
82
|
+
- (Gaspode) Quality of states optimized
|
|
75
83
|
|
|
76
84
|
### 2.1.1 (2024-08-07)
|
|
77
85
|
|
|
78
|
-
-
|
|
86
|
+
- (Gaspode) Do not longer report read timeouts as error. It should be enough to set the quality of concerned states to values according the table above and to display warnings, if values were not updated for a long time. To see details, debug log level must be enabled by the user.
|
|
79
87
|
|
|
80
88
|
### 2.1.0 (2024-08-01)
|
|
81
89
|
|
|
82
|
-
-
|
|
83
|
-
-
|
|
84
|
-
-
|
|
90
|
+
- (Gaspode) Adapter requires node.js >= 18 and js-controller >= 5 now
|
|
91
|
+
- (Gaspode) Dependencies updated
|
|
92
|
+
- (Gaspode) Adapter logo updated. Alpha-ESS has kindly permitted to use the Alpha-ESS logo. This does not imply any affiliation with Alpha-ESS! Alpha-ESS is not the developer or provider of this adapter!
|
|
85
93
|
|
|
86
94
|
### 2.0.2 (2024-01-12)
|
|
87
95
|
|
|
88
|
-
-
|
|
96
|
+
- (Gaspode) Updated Copyright year
|
|
89
97
|
|
|
90
98
|
### 2.0.1 (2024-01-03)
|
|
91
99
|
|
|
92
|
-
-
|
|
100
|
+
- (Gaspode) Adapted timeout to new API restrictions
|
|
93
101
|
|
|
94
102
|
### 2.0.0 (2023-12-02)
|
|
95
103
|
|
|
96
|
-
-
|
|
104
|
+
- (Gaspode) Breaking Change: Removed support of Closed API
|
|
97
105
|
|
|
98
106
|
### 1.3.0 (2023-11-22)
|
|
99
107
|
|
|
100
|
-
-
|
|
101
|
-
-
|
|
108
|
+
- (Gaspode) Support wallbox with Open API
|
|
109
|
+
- (Gaspode) Start and stop charging of wallbox with Open API
|
|
102
110
|
|
|
103
111
|
### 1.2.1 (2023-11-11)
|
|
104
112
|
|
|
105
|
-
-
|
|
113
|
+
- (Gaspode) Fixed severe error in ClosedAPI
|
|
106
114
|
|
|
107
115
|
### 1.2.0 (2023-11-10)
|
|
108
116
|
|
|
109
|
-
-
|
|
117
|
+
- (Gaspode) Added additional realtime attributes for OpenAPI
|
|
110
118
|
|
|
111
119
|
### 1.1.1 (2023-11-04)
|
|
112
120
|
|
|
113
|
-
-
|
|
121
|
+
- (Gaspode) Closed API adapted to latest Alpha-ESS changes and enabled again
|
|
114
122
|
|
|
115
123
|
### 1.1.0 (2023-11-04)
|
|
116
124
|
|
|
117
|
-
-
|
|
118
|
-
-
|
|
125
|
+
- (Gaspode) Closed API disabled (temporarily?) because API has been changed by Alpha-ESS
|
|
126
|
+
- (Gaspode) Read back changed settings values 2 seconds after they have been changed
|
|
119
127
|
|
|
120
128
|
### 1.0.2 (2023-10-05)
|
|
121
129
|
|
|
122
|
-
-
|
|
130
|
+
- (mcm1957) Updated required node version to 16 or newer
|
|
123
131
|
|
|
124
132
|
### 1.0.1 (2023-10-03)
|
|
125
133
|
|
|
126
|
-
-
|
|
134
|
+
- (Gaspode) Adapted fetching energy values using 'Closed API' to latest API changes by Alpha-ESS
|
|
127
135
|
|
|
128
136
|
### 1.0.0 (2023-06-20)
|
|
129
137
|
|
|
130
|
-
-
|
|
131
|
-
-
|
|
132
|
-
-
|
|
133
|
-
-
|
|
138
|
+
- (Gaspode) Support also the new official OpenAPI provided by Alpha-ESS
|
|
139
|
+
- (Gaspode) Set state quality accordingly to status of data
|
|
140
|
+
- (Gaspode) Writing charging and discharging settings implemented for 'Closed API' and OpenAPI
|
|
141
|
+
- (Gaspode) Remove no more supported states at startup automatically
|
|
134
142
|
|
|
135
143
|
### 0.4.0 (2023-02-16)
|
|
136
144
|
|
|
137
|
-
-
|
|
138
|
-
-
|
|
145
|
+
- (Gaspode) Optimized deletion of group states
|
|
146
|
+
- (Gaspode) Added new Realtime state for pmeter_dc
|
|
139
147
|
|
|
140
148
|
### 0.3.0 (2023-02-11)
|
|
141
149
|
|
|
142
|
-
-
|
|
143
|
-
-
|
|
144
|
-
-
|
|
145
|
-
-
|
|
146
|
-
-
|
|
147
|
-
-
|
|
148
|
-
-
|
|
149
|
-
-
|
|
150
|
+
- (Gaspode) Read selected statistical data
|
|
151
|
+
- (Gaspode) Added Summary data
|
|
152
|
+
- (Gaspode) Refactored complete implementation
|
|
153
|
+
- (Gaspode) Changed the unit of settings for all intervals, except of realtime data, to minutes (Caution: settings are reset to defaults)
|
|
154
|
+
- (Gaspode) Remove disabled states at adapter startup
|
|
155
|
+
- (Gaspode) Removed no more supported value 'createtime' (state ID Realtime.Last_update).
|
|
156
|
+
- (Gaspode) Optimized rounding for selected values
|
|
157
|
+
- (Gaspode) Added states EV1_power, EV2_power, EV3_power and EV4_power to Realtime folder
|
|
150
158
|
|
|
151
159
|
### 0.1.0 (2023-01-15)
|
|
152
160
|
|
|
153
|
-
-
|
|
154
|
-
-
|
|
155
|
-
-
|
|
156
|
-
-
|
|
157
|
-
-
|
|
158
|
-
-
|
|
159
|
-
-
|
|
161
|
+
- (Gaspode) First release for Latest repository
|
|
162
|
+
- (Gaspode) Corrected typo in state ID Battery_SOC
|
|
163
|
+
- (Gaspode) Implemented improvements as suggested in code review
|
|
164
|
+
- (Gaspode) Slow down requests in case of permanent errors
|
|
165
|
+
- (Gaspode) Changed adapter type from metering to energy
|
|
166
|
+
- (Gaspode) Correction for NPM
|
|
167
|
+
- (Gaspode) Enable NPM
|
|
160
168
|
|
|
161
169
|
### 0.0.5
|
|
162
170
|
|
|
163
|
-
-
|
|
164
|
-
-
|
|
165
|
-
-
|
|
171
|
+
- (Gaspode) Use meaningful state names
|
|
172
|
+
- (Gaspode) Use suitable state roles
|
|
173
|
+
- (Gaspode) Added new state for Alpha-ESS settings parameter 'upsReserve'
|
|
166
174
|
|
|
167
175
|
### 0.0.4
|
|
168
176
|
|
|
169
|
-
-
|
|
170
|
-
-
|
|
177
|
+
- (Gaspode) use axios to perform Alpha-ESS API calls instead of deprecated request
|
|
178
|
+
- (Gaspode) New option "Update unchanged states" added
|
|
171
179
|
|
|
172
180
|
### 0.0.3
|
|
173
181
|
|
|
174
|
-
-
|
|
182
|
+
- (Gaspode) refactored API calls, added daily energy values
|
|
175
183
|
|
|
176
184
|
### 0.0.2
|
|
177
185
|
|
|
178
|
-
-
|
|
186
|
+
- (Gaspode) corrected api call for realtime data
|
|
179
187
|
|
|
180
188
|
### 0.0.1
|
|
181
189
|
|
|
182
|
-
-
|
|
190
|
+
- (Gaspode) initial release
|
|
183
191
|
|
|
184
192
|
## License
|
|
185
193
|
|
|
@@ -9,10 +9,10 @@
|
|
|
9
9
|
"Interval to read statistical data (today)": "Interval to read statistical data (today) [min]",
|
|
10
10
|
"Interval to read summary data": "Interval to read summary data [min]",
|
|
11
11
|
"Update unchanged states": "Update unchanged states",
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
12
|
+
"Personal APP ID": "Personal Application ID",
|
|
13
|
+
"Personal APP Secret": "Personal Application Secret",
|
|
14
|
+
"Interval to read charging settings": "Interval to read charging settings [min]",
|
|
15
|
+
"Interval to read discharging settings": "Interval to read discharging settings [min]",
|
|
16
16
|
"Interval to read wallbox data": "Interval to read wallbox data [min]",
|
|
17
17
|
"Sorry. Closed API currently not supported!": "Sorry. Closed API currently not supported due to changes by Alpha-ESS!"
|
|
18
18
|
}
|
package/admin/jsonConfig.json
CHANGED
|
@@ -1,102 +1,173 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
2
|
+
"i18n": true,
|
|
3
|
+
"type": "panel",
|
|
4
|
+
"items": {
|
|
5
|
+
"appID": {
|
|
6
|
+
"xs": 11,
|
|
7
|
+
"sm": 8,
|
|
8
|
+
"md": 4,
|
|
9
|
+
"lg": 3,
|
|
10
|
+
"xl": 3,
|
|
11
|
+
"type": "text",
|
|
12
|
+
"label": "Personal APP ID",
|
|
13
|
+
"newLine": true
|
|
14
|
+
},
|
|
15
|
+
"appSecret": {
|
|
16
|
+
"xs": 11,
|
|
17
|
+
"sm": 8,
|
|
18
|
+
"md": 4,
|
|
19
|
+
"lg": 3,
|
|
20
|
+
"xl": 3,
|
|
21
|
+
"type": "password",
|
|
22
|
+
"label": "Personal APP Secret",
|
|
23
|
+
"newLine": true
|
|
24
|
+
},
|
|
25
|
+
"systemId": {
|
|
26
|
+
"xs": 11,
|
|
27
|
+
"sm": 8,
|
|
28
|
+
"md": 4,
|
|
29
|
+
"lg": 3,
|
|
30
|
+
"xl": 3,
|
|
31
|
+
"type": "text",
|
|
32
|
+
"label": "Alpha ESS System ID",
|
|
33
|
+
"newLine": true,
|
|
34
|
+
"disabled": "data.apiType == 3"
|
|
35
|
+
},
|
|
36
|
+
"oAEnableRealtime": {
|
|
37
|
+
"xs": 1.1,
|
|
38
|
+
"sm": 0.6,
|
|
39
|
+
"md": 0.4,
|
|
40
|
+
"lg": 0.2,
|
|
41
|
+
"xl": 0.2,
|
|
42
|
+
"type": "checkbox",
|
|
43
|
+
"newLine": true
|
|
44
|
+
},
|
|
45
|
+
"oAIntervalRealtime": {
|
|
46
|
+
"xs": 9.9,
|
|
47
|
+
"sm": 7.4,
|
|
48
|
+
"md": 3.6,
|
|
49
|
+
"lg": 2.8,
|
|
50
|
+
"xl": 2.8,
|
|
51
|
+
"min": 10,
|
|
52
|
+
"type": "number",
|
|
53
|
+
"label": "Interval to read realtime data",
|
|
54
|
+
"newLine": false,
|
|
55
|
+
"disabled": "!data.oAEnableRealtime"
|
|
56
|
+
},
|
|
57
|
+
"oAEnableEnergy": {
|
|
58
|
+
"xs": 1.1,
|
|
59
|
+
"sm": 0.6,
|
|
60
|
+
"md": 0.4,
|
|
61
|
+
"lg": 0.2,
|
|
62
|
+
"xl": 0.2,
|
|
63
|
+
"type": "checkbox",
|
|
64
|
+
"newLine": true
|
|
65
|
+
},
|
|
66
|
+
"oAIntervalEnergyMins": {
|
|
67
|
+
"xs": 9.9,
|
|
68
|
+
"sm": 7.4,
|
|
69
|
+
"md": 3.6,
|
|
70
|
+
"lg": 2.8,
|
|
71
|
+
"xl": 2.8,
|
|
72
|
+
"min": 5,
|
|
73
|
+
"type": "number",
|
|
74
|
+
"label": "Interval to read energy data",
|
|
75
|
+
"newLine": false,
|
|
76
|
+
"disabled": "!data.oAEnableEnergy"
|
|
77
|
+
},
|
|
78
|
+
"oAEnableSettingsCharge": {
|
|
79
|
+
"xs": 1.1,
|
|
80
|
+
"sm": 0.6,
|
|
81
|
+
"md": 0.4,
|
|
82
|
+
"lg": 0.2,
|
|
83
|
+
"xl": 0.2,
|
|
84
|
+
"type": "checkbox",
|
|
85
|
+
"newLine": true
|
|
86
|
+
},
|
|
87
|
+
"oAIntervalSettingsChargeMins": {
|
|
88
|
+
"xs": 9.9,
|
|
89
|
+
"sm": 7.4,
|
|
90
|
+
"md": 3.6,
|
|
91
|
+
"lg": 2.8,
|
|
92
|
+
"xl": 2.8,
|
|
93
|
+
"min": 1,
|
|
94
|
+
"type": "number",
|
|
95
|
+
"label": "Interval to read charging settings",
|
|
96
|
+
"newLine": false,
|
|
97
|
+
"disabled": "!data.oAEnableSettingsCharge"
|
|
98
|
+
},
|
|
99
|
+
"oAEnableSettingsDischarge": {
|
|
100
|
+
"xs": 1.1,
|
|
101
|
+
"sm": 0.6,
|
|
102
|
+
"md": 0.4,
|
|
103
|
+
"lg": 0.2,
|
|
104
|
+
"xl": 0.2,
|
|
105
|
+
"type": "checkbox",
|
|
106
|
+
"newLine": true
|
|
107
|
+
},
|
|
108
|
+
"oAIntervalSettingsDischargeMins": {
|
|
109
|
+
"xs": 9.9,
|
|
110
|
+
"sm": 7.4,
|
|
111
|
+
"md": 3.6,
|
|
112
|
+
"lg": 2.8,
|
|
113
|
+
"xl": 2.8,
|
|
114
|
+
"min": 1,
|
|
115
|
+
"type": "number",
|
|
116
|
+
"label": "Interval to read discharging settings",
|
|
117
|
+
"newLine": false,
|
|
118
|
+
"disabled": "!data.oAEnableSettingsDischarge"
|
|
119
|
+
},
|
|
120
|
+
"oAEnableSummary": {
|
|
121
|
+
"xs": 1.1,
|
|
122
|
+
"sm": 0.6,
|
|
123
|
+
"md": 0.4,
|
|
124
|
+
"lg": 0.2,
|
|
125
|
+
"xl": 0.2,
|
|
126
|
+
"type": "checkbox",
|
|
127
|
+
"newLine": true
|
|
128
|
+
},
|
|
129
|
+
"oAIntervalSummaryMins": {
|
|
130
|
+
"xs": 9.9,
|
|
131
|
+
"sm": 7.4,
|
|
132
|
+
"md": 3.6,
|
|
133
|
+
"lg": 2.8,
|
|
134
|
+
"xl": 2.8,
|
|
135
|
+
"min": 5,
|
|
136
|
+
"type": "number",
|
|
137
|
+
"label": "Interval to read summary data",
|
|
138
|
+
"newLine": false,
|
|
139
|
+
"disabled": "!data.oAEnableSummary"
|
|
140
|
+
},
|
|
141
|
+
"oAEnableWallbox": {
|
|
142
|
+
"xs": 1.1,
|
|
143
|
+
"sm": 0.6,
|
|
144
|
+
"md": 0.4,
|
|
145
|
+
"lg": 0.2,
|
|
146
|
+
"xl": 0.2,
|
|
147
|
+
"type": "checkbox",
|
|
148
|
+
"newLine": true
|
|
149
|
+
},
|
|
150
|
+
"oAIntervalWallboxMins": {
|
|
151
|
+
"xs": 9.9,
|
|
152
|
+
"sm": 7.4,
|
|
153
|
+
"md": 3.6,
|
|
154
|
+
"lg": 2.8,
|
|
155
|
+
"xl": 2.8,
|
|
156
|
+
"min": 1,
|
|
157
|
+
"type": "number",
|
|
158
|
+
"label": "Interval to read wallbox data",
|
|
159
|
+
"newLine": false,
|
|
160
|
+
"disabled": "!data.oAEnableWallbox"
|
|
161
|
+
},
|
|
162
|
+
"updateUnchangedStates": {
|
|
163
|
+
"xs": 11,
|
|
164
|
+
"sm": 8,
|
|
165
|
+
"md": 4,
|
|
166
|
+
"lg": 3,
|
|
167
|
+
"xl": 3,
|
|
168
|
+
"type": "checkbox",
|
|
169
|
+
"label": "Update unchanged states",
|
|
170
|
+
"newLine": true
|
|
171
|
+
}
|
|
100
172
|
}
|
|
101
|
-
}
|
|
102
173
|
}
|
package/io-package.json
CHANGED
|
@@ -1,8 +1,34 @@
|
|
|
1
1
|
{
|
|
2
2
|
"common": {
|
|
3
3
|
"name": "alpha-ess",
|
|
4
|
-
"version": "2.1.
|
|
4
|
+
"version": "2.1.6",
|
|
5
5
|
"news": {
|
|
6
|
+
"2.1.6": {
|
|
7
|
+
"en": "Migrated to ESLint 9",
|
|
8
|
+
"de": "Zu ESLint 9 migriert",
|
|
9
|
+
"ru": "Migrated to ESLint 9",
|
|
10
|
+
"pt": "Migrado para ESLint 9",
|
|
11
|
+
"nl": "Verplaatst naar ESLint 9",
|
|
12
|
+
"fr": "Migrées à ESLint 9",
|
|
13
|
+
"it": "Migrato a ESLint 9",
|
|
14
|
+
"es": "Migrated to ESLint 9",
|
|
15
|
+
"pl": "Migrant to ESLint 9",
|
|
16
|
+
"uk": "Міграція до ESLint 9",
|
|
17
|
+
"zh-cn": "迁移到 ESLint 9"
|
|
18
|
+
},
|
|
19
|
+
"2.1.5": {
|
|
20
|
+
"en": "Optimized GUI for all screen resolutions (responsive design)",
|
|
21
|
+
"de": "GUI für alle Bildschirmauflösungen optimiert (Responsive Design)",
|
|
22
|
+
"ru": "Оптимизированный графический интерфейс для всех экранных решений (ответственный дизайн)",
|
|
23
|
+
"pt": "GUI otimizada para todas as resoluções de tela (design responsivo)",
|
|
24
|
+
"nl": "Geoptimaliseerde GUI voor alle schermresoluties (responsief ontwerp)",
|
|
25
|
+
"fr": "IGU optimisé pour toutes les résolutions d'écran (conception sensible)",
|
|
26
|
+
"it": "GUI ottimizzata per tutte le risoluzioni dello schermo (progetto reattivo)",
|
|
27
|
+
"es": "Optimizado GUI para todas las resoluciones de pantalla (diseño responsable)",
|
|
28
|
+
"pl": "Zoptymalizowany interfejs graficzny dla wszystkich rozdzielczości ekranu (responsible design)",
|
|
29
|
+
"uk": "Оптимізований графічний інтерфейс для всіх дозволів екрану (відповідальний дизайн)",
|
|
30
|
+
"zh-cn": "优化所有屏幕分辨率的图形用户界面(响应设计)"
|
|
31
|
+
},
|
|
6
32
|
"2.1.4": {
|
|
7
33
|
"en": "Updated some formal stuff",
|
|
8
34
|
"de": "Einige Formalien aktualisiert",
|
|
@@ -67,32 +93,6 @@
|
|
|
67
93
|
"pl": "Adapter wymaga node.js > = 18 i kontroler js- > = 5 teraz\nAktualizacja zależności\nAktualizacja logo adaptera. Alpha- ESS uprzejmie zezwolił na użycie logo Alpha- ESS. To nie oznacza żadnego związku z AlphaESS! Alpha- ESS nie jest deweloperem ani dostawcą tego adaptera!",
|
|
68
94
|
"uk": "Адаптер вимагає node.js >= 18 і js-controller >= 5 тепер\nЗалежність оновлено\nОновлено логотип адаптера. Альфа-ESS дозволяє використовувати логотип Альфа-ESS. Це не означає афілію Альфа-ESS! Альфа-ESS не є розробником або постачальником цього адаптера!",
|
|
69
95
|
"zh-cn": "适配器需要节点.js QQ18和js控制器 QQ 现在5号\n更新的依赖关系\n适配器标志更新. Alpha-ESS允许使用Alpha-ESS标志。 这并不意味着与Alpha -ESS有任何关系! Alpha-ESS不是这个适配器的开发者或提供者!"
|
|
70
|
-
},
|
|
71
|
-
"2.0.2": {
|
|
72
|
-
"en": "Updated Copyright year",
|
|
73
|
-
"de": "Aktualisierung des Copyright-Jahres",
|
|
74
|
-
"ru": "Обновленный год авторского права",
|
|
75
|
-
"pt": "Ano de direitos autorais atualizado",
|
|
76
|
-
"nl": "Bijgewerkt Copyrightjaar",
|
|
77
|
-
"fr": "Mise à jour de l'année de droit d'auteur",
|
|
78
|
-
"it": "Aggiornato Copyright anno",
|
|
79
|
-
"es": "Actualizado Año de Copyright",
|
|
80
|
-
"pl": "Aktualizacja roku Copyright",
|
|
81
|
-
"uk": "Оновлений рік авторського права",
|
|
82
|
-
"zh-cn": "更新版权年度"
|
|
83
|
-
},
|
|
84
|
-
"2.0.1": {
|
|
85
|
-
"en": "Adapted timeout to new API restrictions",
|
|
86
|
-
"de": "Timeout Werte an neue API-Beschränkungen angepasst",
|
|
87
|
-
"ru": "Адаптированное таймирование к новым ограничениям API",
|
|
88
|
-
"pt": "Timeout adaptado para novas restrições de API",
|
|
89
|
-
"nl": "Vertaling:",
|
|
90
|
-
"fr": "Timeout adapté aux nouvelles restrictions de l'API",
|
|
91
|
-
"it": "Adeguato timeout alle nuove restrizioni API",
|
|
92
|
-
"es": "Tiempo de adaptación a nuevas restricciones de API",
|
|
93
|
-
"pl": "Zastosowany czas do nowych ograniczeń API",
|
|
94
|
-
"uk": "Адаптивний час для нових обмежень API",
|
|
95
|
-
"zh-cn": "A. 取消新优惠制度限制的时间"
|
|
96
96
|
}
|
|
97
97
|
},
|
|
98
98
|
"titleLang": {
|