kopia lustrzana https://github.com/backface/turtlestitch
move DATE reporter up in the palette below TIME
rodzic
4252c1bef0
commit
af4b7e9d86
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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'));
|
||||
|
|
|
|||
Ładowanie…
Reference in New Issue