Skip to content

Commit

Permalink
chore: release v8.3.1
Browse files Browse the repository at this point in the history
* (paul53) Allow negative values in formatTimeDiff
* (klein0r) Updated tests and fixed Blockly translations
  • Loading branch information
klein0r committed May 13, 2024
1 parent 372fc84 commit a2324e6
Show file tree
Hide file tree
Showing 14 changed files with 44 additions and 38 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG_OLD.md
@@ -1,4 +1,8 @@
The newest change log is in README.md
## 8.0.3 (2024-04-11)

* (klein0r) Updates dependencies (latest adapter-react-v5 framework)

## 8.0.2 (2024-04-08)

* (klein0r) Forced downgrade of socket-client (object change issues)
Expand Down
6 changes: 1 addition & 5 deletions README.md
Expand Up @@ -42,7 +42,7 @@ Since v5.5.0 of the JavaScript adapter the following locations (relative to the
<!--
### **WORK IN PROGRESS**
-->
### **WORK IN PROGRESS**
### 8.3.1 (2024-05-13)

* (paul53) Allow negative values in formatTimeDiff
* (klein0r) Updated tests and fixed Blockly translations
Expand All @@ -66,10 +66,6 @@ Since v5.5.0 of the JavaScript adapter the following locations (relative to the

* (bluefox) Updated admin config to jsonConfig (dropped materialize)

### 8.0.3 (2024-04-11)

* (klein0r) Updates dependencies (latest adapter-react-v5 framework)

## 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.7a2f8fd5.js",
"main.js": "/static/js/main.5eb32a64.js",
"static/css/373.d5afd7f9.chunk.css": "/static/css/373.d5afd7f9.chunk.css",
"static/js/373.618c56e7.chunk.js": "/static/js/373.618c56e7.chunk.js",
"static/js/373.fac4f1c0.chunk.js": "/static/js/373.fac4f1c0.chunk.js",
"static/js/966.088c1225.chunk.js": "/static/js/966.088c1225.chunk.js",
"static/js/30.8bf17a3b.chunk.js": "/static/js/30.8bf17a3b.chunk.js",
"static/js/704.4ede9892.chunk.js": "/static/js/704.4ede9892.chunk.js",
Expand Down Expand Up @@ -162,9 +162,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.7a2f8fd5.js.map": "/static/js/main.7a2f8fd5.js.map",
"main.5eb32a64.js.map": "/static/js/main.5eb32a64.js.map",
"373.d5afd7f9.chunk.css.map": "/static/css/373.d5afd7f9.chunk.css.map",
"373.618c56e7.chunk.js.map": "/static/js/373.618c56e7.chunk.js.map",
"373.fac4f1c0.chunk.js.map": "/static/js/373.fac4f1c0.chunk.js.map",
"966.088c1225.chunk.js.map": "/static/js/966.088c1225.chunk.js.map",
"30.8bf17a3b.chunk.js.map": "/static/js/30.8bf17a3b.chunk.js.map",
"704.4ede9892.chunk.js.map": "/static/js/704.4ede9892.chunk.js.map",
Expand Down Expand Up @@ -197,6 +197,6 @@
"456.e92b95ee.chunk.js.map": "/static/js/456.e92b95ee.chunk.js.map"
},
"entrypoints": [
"static/js/main.7a2f8fd5.js"
"static/js/main.5eb32a64.js"
]
}
16 changes: 8 additions & 8 deletions admin/google-blockly/own/blocks_convert.js
Expand Up @@ -323,20 +323,20 @@ Blockly.Blocks.convert_time_difference = {
this.appendDummyInput('OPTION')
.appendField(Blockly.Translate('convert_to'))
.appendField(new Blockly.FieldDropdown([
[Blockly.Translate('time_difference_hh:mm:ss') , 'hh:mm:ss'],
[Blockly.Translate('time_difference_h:m:s') , 'h:m:s'],
[Blockly.Translate('time_difference_hh:mm') , 'hh:mm'],
[Blockly.Translate('time_difference_h:m') , 'h:m'],
[Blockly.Translate('time_difference_mm:ss') , 'mm:ss'],
[Blockly.Translate('time_difference_m:s') , 'm:s'],
[Blockly.Translate('time_difference_custom') , 'custom'],
[Blockly.Translate('time_difference_hh:mm:ss'), 'hh:mm:ss'],
[Blockly.Translate('time_difference_h:m:s'), 'h:m:s'],
[Blockly.Translate('time_difference_hh:mm'), 'hh:mm'],
[Blockly.Translate('time_difference_h:m'), 'h:m'],
[Blockly.Translate('time_difference_mm:ss'), 'mm:ss'],
[Blockly.Translate('time_difference_m:s'), 'm:s'],
[Blockly.Translate('time_difference_custom'), 'custom'],
], function (option) {
this.sourceBlock_.updateShape_(option === 'custom');
}), 'OPTION');

this.setInputsInline(true);
this.setOutput(true);
this.setTooltip(Blockly.Translate('convert_time_difference_tooltip'))
this.setTooltip(Blockly.Translate('convert_time_difference_tooltip'));
},
mutationToDom: function() {
const container = document.createElement('mutation');
Expand Down
4 changes: 2 additions & 2 deletions admin/google-blockly/own/blocks_words.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions admin/static/js/373.fac4f1c0.chunk.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions admin/static/js/373.fac4f1c0.chunk.js.map

Large diffs are not rendered by default.

0 comments on commit a2324e6

Please sign in to comment.