Skip to content

Commit

Permalink
chore: release v8.5.1
Browse files Browse the repository at this point in the history
* (klein0r) Added Blockly dark theme
* (klein0r) Fixed sendTo custom parameters with special chars
  • Loading branch information
klein0r committed Jun 10, 2024
1 parent 56a135a commit 1faa93e
Show file tree
Hide file tree
Showing 17 changed files with 182 additions and 192 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG_OLD.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
The newest change log is in README.md
## 8.4.0 (2024-05-25)

* (klein0r) Added checks/warnings for more incorrect blockly connections
* (klein0r) Added option to disable certificate validation in httpGet
* (klein0r) Added expire option to Blockly block
* (klein0r) Fixed variables.astro times when date is not available
* (klein0r) Fixed jsonConfig for libraries and library typings
* (klein0r) Implemented new js-controller 6.x functions for package handling
* (klein0r) Updated to ChatGPT-4o

## 8.3.1 (2024-05-13)

* (paul53) Allow negative values in formatTimeDiff
Expand Down
12 changes: 1 addition & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Executes Javascript, Typescript Scripts.
<!--
### **WORK IN PROGRESS**
-->
### **WORK IN PROGRESS**
### 8.5.1 (2024-06-10)

* (klein0r) Added Blockly dark theme
* (klein0r) Fixed sendTo custom parameters with special chars
Expand All @@ -53,16 +53,6 @@ Executes Javascript, Typescript Scripts.
* (klein0r) Fixed httpPost block
* (klein0r) Just raise deprecated warnings once per script start/usage

### 8.4.0 (2024-05-25)

* (klein0r) Added checks/warnings for more incorrect blockly connections
* (klein0r) Added option to disable certificate validation in httpGet
* (klein0r) Added expire option to Blockly block
* (klein0r) Fixed variables.astro times when date is not available
* (klein0r) Fixed jsonConfig for libraries and library typings
* (klein0r) Implemented new js-controller 6.x functions for package handling
* (klein0r) Updated to ChatGPT-4o

## License
The MIT License (MIT)

Expand Down
10 changes: 5 additions & 5 deletions admin/asset-manifest.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"files": {
"main.js": "/static/js/main.8e61127b.js",
"main.js": "/static/js/main.720010c8.js",
"static/css/373.d5afd7f9.chunk.css": "/static/css/373.d5afd7f9.chunk.css",
"static/js/373.be628dfc.chunk.js": "/static/js/373.be628dfc.chunk.js",
"static/js/373.50668df1.chunk.js": "/static/js/373.50668df1.chunk.js",
"static/js/498.660757a3.chunk.js": "/static/js/498.660757a3.chunk.js",
"static/js/30.0d37e3aa.chunk.js": "/static/js/30.0d37e3aa.chunk.js",
"static/js/704.6e463396.chunk.js": "/static/js/704.6e463396.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.8e61127b.js.map": "/static/js/main.8e61127b.js.map",
"main.720010c8.js.map": "/static/js/main.720010c8.js.map",
"373.d5afd7f9.chunk.css.map": "/static/css/373.d5afd7f9.chunk.css.map",
"373.be628dfc.chunk.js.map": "/static/js/373.be628dfc.chunk.js.map",
"373.50668df1.chunk.js.map": "/static/js/373.50668df1.chunk.js.map",
"498.660757a3.chunk.js.map": "/static/js/498.660757a3.chunk.js.map",
"30.0d37e3aa.chunk.js.map": "/static/js/30.0d37e3aa.chunk.js.map",
"704.6e463396.chunk.js.map": "/static/js/704.6e463396.chunk.js.map",
Expand Down Expand Up @@ -193,6 +193,6 @@
"93.74b3fa7f.chunk.js.map": "/static/js/93.74b3fa7f.chunk.js.map"
},
"entrypoints": [
"static/js/main.8e61127b.js"
"static/js/main.720010c8.js"
]
}
4 changes: 2 additions & 2 deletions admin/google-blockly/own/blocks_action.js
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ Blockly.Blocks['http_get'] = {
this.appendDummyInput('TYPE')
.appendField(Blockly.Translate('http_type'))
.appendField(new Blockly.FieldDropdown([
[Blockly.Translate('http_type_text'), 'text'],
[Blockly.Translate('http_type_text'), 'text'],
[Blockly.Translate('http_type_arraybuffer'), 'arraybuffer'],
]), 'TYPE');

Expand Down Expand Up @@ -273,7 +273,7 @@ Blockly.Blocks['http_post'] = {
this.appendDummyInput('TYPE')
.appendField(Blockly.Translate('http_type'))
.appendField(new Blockly.FieldDropdown([
[Blockly.Translate('http_type_text'), 'text'],
[Blockly.Translate('http_type_text'), 'text'],
[Blockly.Translate('http_type_arraybuffer'), 'arraybuffer'],
]), 'TYPE');

Expand Down
Loading

0 comments on commit 1faa93e

Please sign in to comment.