iobroker.iot 1.12.1 → 1.12.4
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 +7 -0
- package/admin/asset-manifest.json +3 -3
- package/admin/blockly.js +14 -14
- package/admin/index_m.html +1 -1
- package/admin/manifest.json +2 -2
- package/admin/static/js/main.6bf9ef28.js +3 -0
- package/admin/static/js/{main.30cb625a.js.LICENSE.txt → main.6bf9ef28.js.LICENSE.txt} +1 -1
- package/admin/static/js/{main.30cb625a.js.map → main.6bf9ef28.js.map} +1 -1
- package/io-package.json +26 -25
- package/lib/alexaCustom.js +1 -1
- package/package.json +7 -7
- package/admin/static/js/main.30cb625a.js +0 -3
package/README.md
CHANGED
|
@@ -269,6 +269,13 @@ Following types are supported:
|
|
|
269
269
|
-->
|
|
270
270
|
|
|
271
271
|
## Changelog
|
|
272
|
+
### 1.12.4 (2022-11-03)
|
|
273
|
+
* (bluefox) Added ukrainian language
|
|
274
|
+
* (bluefox) Corrected blockly for unknown languages
|
|
275
|
+
|
|
276
|
+
### 1.12.2 (2022-10-01)
|
|
277
|
+
* (Apollon77) Fix crash case
|
|
278
|
+
|
|
272
279
|
### 1.12.1 (2022-09-27)
|
|
273
280
|
* (bluefox) Corrected error in GUI with empty password
|
|
274
281
|
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"files": {
|
|
3
3
|
"main.css": "./static/css/main.96b3c861.css",
|
|
4
|
-
"main.js": "./static/js/main.
|
|
4
|
+
"main.js": "./static/js/main.6bf9ef28.js",
|
|
5
5
|
"index.html": "./index.html",
|
|
6
6
|
"main.96b3c861.css.map": "./static/css/main.96b3c861.css.map",
|
|
7
|
-
"main.
|
|
7
|
+
"main.6bf9ef28.js.map": "./static/js/main.6bf9ef28.js.map"
|
|
8
8
|
},
|
|
9
9
|
"entrypoints": [
|
|
10
10
|
"static/css/main.96b3c861.css",
|
|
11
|
-
"static/js/main.
|
|
11
|
+
"static/js/main.6bf9ef28.js"
|
|
12
12
|
]
|
|
13
13
|
}
|
package/admin/blockly.js
CHANGED
|
@@ -75,32 +75,32 @@ Blockly.Blocks['ifttt_iot'] = {
|
|
|
75
75
|
}
|
|
76
76
|
|
|
77
77
|
this.appendDummyInput('INSTANCE')
|
|
78
|
-
.appendField(Blockly.
|
|
79
|
-
|
|
78
|
+
.appendField(Blockly.Translate('ifttt_iot'))
|
|
79
|
+
.appendField(new Blockly.FieldDropdown(options), 'INSTANCE');
|
|
80
80
|
|
|
81
81
|
this.appendValueInput('EVENT')
|
|
82
|
-
.appendField(Blockly.
|
|
82
|
+
.appendField(Blockly.Translate('ifttt_event'));
|
|
83
83
|
|
|
84
84
|
var input = this.appendValueInput('VALUE1')
|
|
85
|
-
.appendField(Blockly.
|
|
85
|
+
.appendField(Blockly.Translate('ifttt_value1'));
|
|
86
86
|
if (input.connection) input.connection._optional = true;
|
|
87
87
|
|
|
88
88
|
input = this.appendValueInput('VALUE2')
|
|
89
|
-
.appendField(Blockly.
|
|
89
|
+
.appendField(Blockly.Translate('ifttt_value2'));
|
|
90
90
|
if (input.connection) input.connection._optional = true;
|
|
91
91
|
|
|
92
92
|
input = this.appendValueInput('VALUE3')
|
|
93
|
-
.appendField(Blockly.
|
|
93
|
+
.appendField(Blockly.Translate('ifttt_value3'));
|
|
94
94
|
if (input.connection) input.connection._optional = true;
|
|
95
95
|
|
|
96
96
|
this.appendDummyInput('LOG')
|
|
97
|
-
.appendField(Blockly.
|
|
97
|
+
.appendField(Blockly.Translate('ifttt_log'))
|
|
98
98
|
.appendField(new Blockly.FieldDropdown([
|
|
99
|
-
[Blockly.
|
|
100
|
-
[Blockly.
|
|
101
|
-
[Blockly.
|
|
102
|
-
[Blockly.
|
|
103
|
-
[Blockly.
|
|
99
|
+
[Blockly.Translate('ifttt_log_none'), ''],
|
|
100
|
+
[Blockly.Translate('ifttt_log_info'), 'log'],
|
|
101
|
+
[Blockly.Translate('ifttt_log_debug'), 'debug'],
|
|
102
|
+
[Blockly.Translate('ifttt_log_warn'), 'warn'],
|
|
103
|
+
[Blockly.Translate('ifttt_log_error'), 'error']
|
|
104
104
|
]), 'LOG');
|
|
105
105
|
|
|
106
106
|
this.setInputsInline(false);
|
|
@@ -108,8 +108,8 @@ Blockly.Blocks['ifttt_iot'] = {
|
|
|
108
108
|
this.setNextStatement(true, null);
|
|
109
109
|
|
|
110
110
|
this.setColour(Blockly.Sendto.HUE);
|
|
111
|
-
this.setTooltip(Blockly.
|
|
112
|
-
this.setHelpUrl(Blockly.
|
|
111
|
+
this.setTooltip(Blockly.Translate('ifttt_tooltip'));
|
|
112
|
+
this.setHelpUrl(Blockly.Translate('ifttt_help'));
|
|
113
113
|
}
|
|
114
114
|
};
|
|
115
115
|
|
package/admin/index_m.html
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="shortcut icon" href="./favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"/><meta name="theme-color" content="#000000"/><link rel="manifest" href="./manifest.json"/><script type="text/javascript" src="./../../lib/js/socket.io.js"></script><title>IoT Settings</title><script defer="defer" src="./static/js/main.
|
|
1
|
+
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="shortcut icon" href="./favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"/><meta name="theme-color" content="#000000"/><link rel="manifest" href="./manifest.json" crossorigin="use-credentials"/><script type="text/javascript" src="./../../lib/js/socket.io.js"></script><title>IoT Settings</title><script defer="defer" src="./static/js/main.6bf9ef28.js"></script><link href="./static/css/main.96b3c861.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
|
package/admin/manifest.json
CHANGED