Skip to content

Commit

Permalink
chore: release v7.9.4
Browse files Browse the repository at this point in the history
* (klein0r) Fixed urlencoding for basic auth in url (user:pass)
* (klein0r) Add warning icon if trigger is positioned inside of another trigger or loop
  • Loading branch information
klein0r committed Mar 20, 2024
1 parent 7c7bc62 commit 5d41205
Show file tree
Hide file tree
Showing 14 changed files with 220 additions and 78 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG_OLD.md
@@ -1,4 +1,10 @@
The newest change log is in README.md
## 7.8.0 (2024-01-29)

* (klein0r) Added block for multiple or conditions
* (klein0r) Raised supported ecmaVersion from es2018 to es2021
* (klein0r) Fixed getIdByName (returned the same id as array)

## 7.7.0 (2024-01-14)

* (klein0r) Added block for multiple and conditions
Expand Down
8 changes: 1 addition & 7 deletions README.md
Expand Up @@ -46,7 +46,7 @@ Since v5.5.0 of the JavaScript adapter the following locations (relative to the
<!--
### **WORK IN PROGRESS**
-->
### **WORK IN PROGRESS**
### 7.9.4 (2024-03-20)

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

### 7.8.0 (2024-01-29)

* (klein0r) Added block for multiple or conditions
* (klein0r) Raised supported ecmaVersion from es2018 to es2021
* (klein0r) Fixed getIdByName (returned the same id as array)

## License
The MIT License (MIT)

Expand Down
10 changes: 5 additions & 5 deletions admin/asset-manifest.json
@@ -1,8 +1,8 @@
{
"files": {
"main.js": "/static/js/main.f61d5390.js",
"main.js": "/static/js/main.985441a2.js",
"static/css/864.42bfc5f3.chunk.css": "/static/css/864.42bfc5f3.chunk.css",
"static/js/864.d62d2890.chunk.js": "/static/js/864.d62d2890.chunk.js",
"static/js/864.3e2bc27e.chunk.js": "/static/js/864.3e2bc27e.chunk.js",
"static/js/805.7c367e53.chunk.js": "/static/js/805.7c367e53.chunk.js",
"static/js/431.a62490cf.chunk.js": "/static/js/431.a62490cf.chunk.js",
"static/js/702.1692c400.chunk.js": "/static/js/702.1692c400.chunk.js",
Expand Down Expand Up @@ -160,9 +160,9 @@
"static/media/Garage Doors.svg": "/static/media/Garage Doors.0c2a1cfca7ad1ea59625.svg",
"static/media/Outdoor Blinds.svg": "/static/media/Outdoor Blinds.37b85a9c060a4af48da9.svg",
"static/media/Upstairs.svg": "/static/media/Upstairs.441813e54e0daca0882d.svg",
"main.f61d5390.js.map": "/static/js/main.f61d5390.js.map",
"main.985441a2.js.map": "/static/js/main.985441a2.js.map",
"864.42bfc5f3.chunk.css.map": "/static/css/864.42bfc5f3.chunk.css.map",
"864.d62d2890.chunk.js.map": "/static/js/864.d62d2890.chunk.js.map",
"864.3e2bc27e.chunk.js.map": "/static/js/864.3e2bc27e.chunk.js.map",
"805.7c367e53.chunk.js.map": "/static/js/805.7c367e53.chunk.js.map",
"431.a62490cf.chunk.js.map": "/static/js/431.a62490cf.chunk.js.map",
"702.1692c400.chunk.js.map": "/static/js/702.1692c400.chunk.js.map",
Expand Down Expand Up @@ -195,6 +195,6 @@
"96.fe9915d5.chunk.js.map": "/static/js/96.fe9915d5.chunk.js.map"
},
"entrypoints": [
"static/js/main.f61d5390.js"
"static/js/main.985441a2.js"
]
}
12 changes: 6 additions & 6 deletions admin/google-blockly/own/blocks_sendto.js
Expand Up @@ -256,27 +256,27 @@ Blockly.Blocks['sendto_custom'] = {
names[i] = Blockly.Translate('sendto_custom_argument') + (i + 1);
}
_input.appendField(new Blockly.FieldTextInput(names[i]));
setTimeout(function (_input) {
if (!_input.connection.isConnected()) {
setTimeout(function (input) {
if (!input.connection.isConnected()) {
const _shadow = wp.newBlock('text');
_shadow.setShadow(true);
_shadow.initSvg();
_shadow.render();
_shadow.outputConnection.connect(_input.connection);
_shadow.outputConnection.connect(input.connection);
//console.log('New ' + names[i]);
}
}, 100, _input);
} else {
_input.fieldRow[0].setValue(names[i]);
//console.log('Exist ' + names[i]);
setTimeout(function (_input, name) {
if (!_input.connection.isConnected()) {
setTimeout(function (input, name) {
if (!input.connection.isConnected()) {
//console.log('Create ' + name);
const shadow = wp.newBlock('text');
shadow.setShadow(true);
shadow.initSvg();
shadow.render();
shadow.outputConnection.connect(_input.connection);
shadow.outputConnection.connect(input.connection);
}
}, 100, _input, names[i]);
}
Expand Down

0 comments on commit 5d41205

Please sign in to comment.