Skip to content

Commit 5e35a46

Browse files
committed
### 4.6.14 (2020-05-19)
* (bluefox) IDs with dot are not allowed any more * (bluefox) "schedule" name is not allowed for CRON * (bluefox) Convert strings to Date by formatDate
1 parent 092c923 commit 5e35a46

20 files changed

+70
-45
lines changed

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,15 @@ And then call "npm run build".
3535
- ...
3636

3737
## Changelog
38+
### 4.6.14 (2020-05-19)
39+
* (bluefox) IDs with dot are not allowed any more
40+
* (bluefox) "schedule" name is not allowed for CRON
41+
* (bluefox) Convert strings to Date by formatDate
42+
3843
### 4.6.13 (2020-05-19)
3944
* (bluefox) Fixed blockly blocks because of deprecated functions
40-
* (bluefox) Corrected schedule wizard
45+
* (bluefox) Corrected schedule wizard
46+
* (AlCazone) Update monaco editor
4147

4248
### 4.6.4 (2020-05-15)
4349
* (bluefox) Corrected block: request, exec

admin/asset-manifest.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
{
22
"files": {
33
"main.css": "/static/css/main.ec63fb86.chunk.css",
4-
"main.js": "/static/js/main.3fbbcb42.chunk.js",
5-
"main.js.map": "/static/js/main.3fbbcb42.chunk.js.map",
4+
"main.js": "/static/js/main.05429a24.chunk.js",
5+
"main.js.map": "/static/js/main.05429a24.chunk.js.map",
66
"runtime-main.js": "/static/js/runtime-main.a500de04.js",
77
"runtime-main.js.map": "/static/js/runtime-main.a500de04.js.map",
88
"static/css/2.93e5c0a0.chunk.css": "/static/css/2.93e5c0a0.chunk.css",
99
"static/js/2.38f4fe4b.chunk.js": "/static/js/2.38f4fe4b.chunk.js",
1010
"static/js/2.38f4fe4b.chunk.js.map": "/static/js/2.38f4fe4b.chunk.js.map",
1111
"index.html": "/index.html",
12-
"precache-manifest.a6a00a007a677c1af992af2a8e446a2e.js": "/precache-manifest.a6a00a007a677c1af992af2a8e446a2e.js",
12+
"precache-manifest.6e4a5f684da66cec91f6502115d3ea88.js": "/precache-manifest.6e4a5f684da66cec91f6502115d3ea88.js",
1313
"service-worker.js": "/service-worker.js",
1414
"static/css/2.93e5c0a0.chunk.css.map": "/static/css/2.93e5c0a0.chunk.css.map",
1515
"static/css/main.ec63fb86.chunk.css.map": "/static/css/main.ec63fb86.chunk.css.map",
1616
"static/js/2.38f4fe4b.chunk.js.LICENSE.txt": "/static/js/2.38f4fe4b.chunk.js.LICENSE.txt",
17-
"static/js/main.3fbbcb42.chunk.js.LICENSE.txt": "/static/js/main.3fbbcb42.chunk.js.LICENSE.txt",
17+
"static/js/main.05429a24.chunk.js.LICENSE.txt": "/static/js/main.05429a24.chunk.js.LICENSE.txt",
1818
"static/media/copy-content.svg": "/static/media/copy-content.6fe0b363.svg"
1919
},
2020
"entrypoints": [
2121
"static/js/runtime-main.a500de04.js",
2222
"static/css/2.93e5c0a0.chunk.css",
2323
"static/js/2.38f4fe4b.chunk.js",
2424
"static/css/main.ec63fb86.chunk.css",
25-
"static/js/main.3fbbcb42.chunk.js"
25+
"static/js/main.05429a24.chunk.js"
2626
]
2727
}

admin/google-blockly/own/blocks_trigger.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -572,7 +572,7 @@ Blockly.Trigger.findLegalName = function(name, block) {
572572
// Collision with another procedure.
573573
var r = name.match(/^(.*?)(\d+)$/);
574574
if (!r) {
575-
name += '2';
575+
name += '1';
576576
} else {
577577
name = r[1] + (parseInt(r[2], 10) + 1);
578578
}
@@ -591,6 +591,10 @@ Blockly.Trigger.findLegalName = function(name, block) {
591591
* @private
592592
*/
593593
Blockly.Trigger.isLegalName_ = function(name, workspace, opt_exclude) {
594+
if (name === 'schedule') {
595+
return false;
596+
}
597+
594598
var blocks = workspace.getAllBlocks();
595599
// Iterate through every block and check the name.
596600
for (var i = 0; i < blocks.length; i++) {
@@ -673,7 +677,7 @@ Blockly.Trigger.getAllSchedules = function (workspace) {
673677
}
674678
}
675679

676-
// BF(2020.05.16) : for back compatibility. Remove it after 5 years
680+
// BF(2020.05.16): for back compatibility. Remove it after 5 years
677681
if (window.scripts.loading) {
678682
var variables = workspace.getVariablesOfType('');
679683
variables.forEach(v => !result.find(it => it[0] === v.name) && result.push([v.name, v.name]));

admin/precache-manifest.a6a00a007a677c1af992af2a8e446a2e.js renamed to admin/precache-manifest.6e4a5f684da66cec91f6502115d3ea88.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
self.__precacheManifest = (self.__precacheManifest || []).concat([
22
{
3-
"revision": "5e6a0c6149cca62663b39af8ea7786b4",
3+
"revision": "4e937f5f5188cb73fb034989b4c27fd9",
44
"url": "/index.html"
55
},
66
{
77
"revision": "8d569d128bda24afefd5",
88
"url": "/static/css/2.93e5c0a0.chunk.css"
99
},
1010
{
11-
"revision": "23de946e83f0a313d1c6",
11+
"revision": "4b64650e7e451ac1b3c2",
1212
"url": "/static/css/main.ec63fb86.chunk.css"
1313
},
1414
{
@@ -20,12 +20,12 @@ self.__precacheManifest = (self.__precacheManifest || []).concat([
2020
"url": "/static/js/2.38f4fe4b.chunk.js.LICENSE.txt"
2121
},
2222
{
23-
"revision": "23de946e83f0a313d1c6",
24-
"url": "/static/js/main.3fbbcb42.chunk.js"
23+
"revision": "4b64650e7e451ac1b3c2",
24+
"url": "/static/js/main.05429a24.chunk.js"
2525
},
2626
{
2727
"revision": "578fa69920ac4a551e6d340a37256bed",
28-
"url": "/static/js/main.3fbbcb42.chunk.js.LICENSE.txt"
28+
"url": "/static/js/main.05429a24.chunk.js.LICENSE.txt"
2929
},
3030
{
3131
"revision": "b29e1786341933b579da",

admin/service-worker.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
importScripts("https://storage.googleapis.com/workbox-cdn/releases/4.3.1/workbox-sw.js");
1515

1616
importScripts(
17-
"/precache-manifest.a6a00a007a677c1af992af2a8e446a2e.js"
17+
"/precache-manifest.6e4a5f684da66cec91f6502115d3ea88.js"
1818
);
1919

2020
self.addEventListener('message', (event) => {

admin/static/js/main.05429a24.chunk.js

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

admin/static/js/main.05429a24.chunk.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

admin/static/js/main.3fbbcb42.chunk.js

Lines changed: 0 additions & 3 deletions
This file was deleted.

admin/static/js/main.3fbbcb42.chunk.js.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)