iobroker.iot 1.12.2 → 1.12.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
@@ -269,6 +269,13 @@ Following types are supported:
269
269
  -->
270
270
 
271
271
  ## Changelog
272
+ ### 1.12.5 (2022-11-09)
273
+ * (bluefox) Small changes on configuration GUI
274
+
275
+ ### 1.12.4 (2022-11-03)
276
+ * (bluefox) Added ukrainian language
277
+ * (bluefox) Corrected blockly for unknown languages
278
+
272
279
  ### 1.12.2 (2022-10-01)
273
280
  * (Apollon77) Fix crash case
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.179c0eb3.js",
4
+ "main.js": "./static/js/main.a53cc406.js",
5
5
  "index.html": "./index.html",
6
6
  "main.96b3c861.css.map": "./static/css/main.96b3c861.css.map",
7
- "main.179c0eb3.js.map": "./static/js/main.179c0eb3.js.map"
7
+ "main.a53cc406.js.map": "./static/js/main.a53cc406.js.map"
8
8
  },
9
9
  "entrypoints": [
10
10
  "static/css/main.96b3c861.css",
11
- "static/js/main.179c0eb3.js"
11
+ "static/js/main.a53cc406.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.Words['ifttt_iot'][systemLang])
79
- .appendField(new Blockly.FieldDropdown(options), 'INSTANCE');
78
+ .appendField(Blockly.Translate('ifttt_iot'))
79
+ .appendField(new Blockly.FieldDropdown(options), 'INSTANCE');
80
80
 
81
81
  this.appendValueInput('EVENT')
82
- .appendField(Blockly.Words['ifttt_event'][systemLang]);
82
+ .appendField(Blockly.Translate('ifttt_event'));
83
83
 
84
84
  var input = this.appendValueInput('VALUE1')
85
- .appendField(Blockly.Words['ifttt_value1'][systemLang]);
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.Words['ifttt_value2'][systemLang]);
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.Words['ifttt_value3'][systemLang]);
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.Words['ifttt_log'][systemLang])
97
+ .appendField(Blockly.Translate('ifttt_log'))
98
98
  .appendField(new Blockly.FieldDropdown([
99
- [Blockly.Words['ifttt_log_none'][systemLang], ''],
100
- [Blockly.Words['ifttt_log_info'][systemLang], 'log'],
101
- [Blockly.Words['ifttt_log_debug'][systemLang], 'debug'],
102
- [Blockly.Words['ifttt_log_warn'][systemLang], 'warn'],
103
- [Blockly.Words['ifttt_log_error'][systemLang], 'error']
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.Words['ifttt_tooltip'][systemLang]);
112
- this.setHelpUrl(Blockly.Words['ifttt_help'][systemLang]);
111
+ this.setTooltip(Blockly.Translate('ifttt_tooltip'));
112
+ this.setHelpUrl(Blockly.Translate('ifttt_help'));
113
113
  }
114
114
  };
115
115
 
@@ -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.179c0eb3.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>
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.a53cc406.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>
@@ -1,6 +1,6 @@
1
1
  {
2
- "short_name": "React App",
3
- "name": "Create React App Sample",
2
+ "short_name": "ioBroker.iot",
3
+ "name": "ioBroker.iot Settings",
4
4
  "icons": [
5
5
  {
6
6
  "src": "favicon.ico",