Skip to content

Commit 5d41205

Browse files
committed
chore: release v7.9.4
* (klein0r) Fixed urlencoding for basic auth in url (user:pass) * (klein0r) Add warning icon if trigger is positioned inside of another trigger or loop
1 parent 7c7bc62 commit 5d41205

File tree

14 files changed

+220
-78
lines changed

14 files changed

+220
-78
lines changed

CHANGELOG_OLD.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
The newest change log is in README.md
2+
## 7.8.0 (2024-01-29)
3+
4+
* (klein0r) Added block for multiple or conditions
5+
* (klein0r) Raised supported ecmaVersion from es2018 to es2021
6+
* (klein0r) Fixed getIdByName (returned the same id as array)
7+
28
## 7.7.0 (2024-01-14)
39

410
* (klein0r) Added block for multiple and conditions

README.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Since v5.5.0 of the JavaScript adapter the following locations (relative to the
4646
<!--
4747
### **WORK IN PROGRESS**
4848
-->
49-
### **WORK IN PROGRESS**
49+
### 7.9.4 (2024-03-20)
5050

5151
* (klein0r) Fixed urlencoding for basic auth in url (user:pass)
5252
* (klein0r) Add warning icon if trigger is positioned inside of another trigger or loop
@@ -74,12 +74,6 @@ Since v5.5.0 of the JavaScript adapter the following locations (relative to the
7474
* (klein0r) Raise warning if more than 100 triggers have been registered (per script)
7575
* (klein0r) Fixed astro state calculation (and display server time in dialog)
7676

77-
### 7.8.0 (2024-01-29)
78-
79-
* (klein0r) Added block for multiple or conditions
80-
* (klein0r) Raised supported ecmaVersion from es2018 to es2021
81-
* (klein0r) Fixed getIdByName (returned the same id as array)
82-
8377
## License
8478
The MIT License (MIT)
8579

admin/asset-manifest.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"files": {
3-
"main.js": "/static/js/main.f61d5390.js",
3+
"main.js": "/static/js/main.985441a2.js",
44
"static/css/864.42bfc5f3.chunk.css": "/static/css/864.42bfc5f3.chunk.css",
5-
"static/js/864.d62d2890.chunk.js": "/static/js/864.d62d2890.chunk.js",
5+
"static/js/864.3e2bc27e.chunk.js": "/static/js/864.3e2bc27e.chunk.js",
66
"static/js/805.7c367e53.chunk.js": "/static/js/805.7c367e53.chunk.js",
77
"static/js/431.a62490cf.chunk.js": "/static/js/431.a62490cf.chunk.js",
88
"static/js/702.1692c400.chunk.js": "/static/js/702.1692c400.chunk.js",
@@ -160,9 +160,9 @@
160160
"static/media/Garage Doors.svg": "/static/media/Garage Doors.0c2a1cfca7ad1ea59625.svg",
161161
"static/media/Outdoor Blinds.svg": "/static/media/Outdoor Blinds.37b85a9c060a4af48da9.svg",
162162
"static/media/Upstairs.svg": "/static/media/Upstairs.441813e54e0daca0882d.svg",
163-
"main.f61d5390.js.map": "/static/js/main.f61d5390.js.map",
163+
"main.985441a2.js.map": "/static/js/main.985441a2.js.map",
164164
"864.42bfc5f3.chunk.css.map": "/static/css/864.42bfc5f3.chunk.css.map",
165-
"864.d62d2890.chunk.js.map": "/static/js/864.d62d2890.chunk.js.map",
165+
"864.3e2bc27e.chunk.js.map": "/static/js/864.3e2bc27e.chunk.js.map",
166166
"805.7c367e53.chunk.js.map": "/static/js/805.7c367e53.chunk.js.map",
167167
"431.a62490cf.chunk.js.map": "/static/js/431.a62490cf.chunk.js.map",
168168
"702.1692c400.chunk.js.map": "/static/js/702.1692c400.chunk.js.map",
@@ -195,6 +195,6 @@
195195
"96.fe9915d5.chunk.js.map": "/static/js/96.fe9915d5.chunk.js.map"
196196
},
197197
"entrypoints": [
198-
"static/js/main.f61d5390.js"
198+
"static/js/main.985441a2.js"
199199
]
200200
}

admin/google-blockly/own/blocks_sendto.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -256,27 +256,27 @@ Blockly.Blocks['sendto_custom'] = {
256256
names[i] = Blockly.Translate('sendto_custom_argument') + (i + 1);
257257
}
258258
_input.appendField(new Blockly.FieldTextInput(names[i]));
259-
setTimeout(function (_input) {
260-
if (!_input.connection.isConnected()) {
259+
setTimeout(function (input) {
260+
if (!input.connection.isConnected()) {
261261
const _shadow = wp.newBlock('text');
262262
_shadow.setShadow(true);
263263
_shadow.initSvg();
264264
_shadow.render();
265-
_shadow.outputConnection.connect(_input.connection);
265+
_shadow.outputConnection.connect(input.connection);
266266
//console.log('New ' + names[i]);
267267
}
268268
}, 100, _input);
269269
} else {
270270
_input.fieldRow[0].setValue(names[i]);
271271
//console.log('Exist ' + names[i]);
272-
setTimeout(function (_input, name) {
273-
if (!_input.connection.isConnected()) {
272+
setTimeout(function (input, name) {
273+
if (!input.connection.isConnected()) {
274274
//console.log('Create ' + name);
275275
const shadow = wp.newBlock('text');
276276
shadow.setShadow(true);
277277
shadow.initSvg();
278278
shadow.render();
279-
shadow.outputConnection.connect(_input.connection);
279+
shadow.outputConnection.connect(input.connection);
280280
}
281281
}, 100, _input, names[i]);
282282
}

0 commit comments

Comments
 (0)