move DATE reporter up in the palette below TIME

snap8
Jens Mönig 2022-05-02 18:54:54 +02:00
rodzic 4252c1bef0
commit af4b7e9d86
2 zmienionych plików z 3 dodań i 2 usunięć

Wyświetl plik

@ -50,6 +50,7 @@
* blocks, threads: new "scope" choice in block menu dropdown
* blocks, threads: programmatically change the scope of unused custom blocks
* blocks, objects, threads: new DEFINE BLOCK primitive
* objects: move DATE reporter up in the palette below TIME
### 2022-05-01
* byob: programmatically reduce the number of inputs in a custom block

Wyświetl plik

@ -2683,6 +2683,7 @@ SpriteMorph.prototype.blockTemplates = function (
blocks.push(block('doResetTimer'));
blocks.push(watcherToggle('getTimer'));
blocks.push(block('getTimer'));
blocks.push(block('reportDate'));
blocks.push('-');
blocks.push(block('reportAttributeOf'));
@ -2700,7 +2701,6 @@ SpriteMorph.prototype.blockTemplates = function (
blocks.push(block('reportGlobalFlag'));
blocks.push(block('doSetGlobalFlag'));
blocks.push('-');
blocks.push(block('reportDate'));
blocks.push(block('reportBlockAttribute'));
blocks.push(block('doSetBlockAttribute'));
blocks.push(block('reportDefineBlock'));
@ -9152,6 +9152,7 @@ StageMorph.prototype.blockTemplates = function (
blocks.push(block('doResetTimer'));
blocks.push(watcherToggle('getTimer'));
blocks.push(block('getTimer'));
blocks.push(block('reportDate'));
blocks.push('-');
blocks.push(block('reportAttributeOf'));
@ -9169,7 +9170,6 @@ StageMorph.prototype.blockTemplates = function (
blocks.push(block('reportGlobalFlag'));
blocks.push(block('doSetGlobalFlag'));
blocks.push('-');
blocks.push(block('reportDate'));
blocks.push(block('reportBlockAttribute'));
blocks.push(block('doSetBlockAttribute'));
blocks.push(block('reportDefineBlock'));