kopia lustrzana https://github.com/backface/turtlestitch
moved "append", "reshape", "combinations" blocks down one group in the palette
rodzic
f05bd654e8
commit
2fe036eef5
|
@ -5,6 +5,7 @@
|
|||
* export / import sprite-local custom block definitions, under construction
|
||||
* added "combinations" primitive to the palette
|
||||
* **Notable Changes:**
|
||||
* moved "append", "reshape", "combinations" blocks down one group in the palette
|
||||
* **Notable Fixes:**
|
||||
* guard against broken SVG costumes when loading a project
|
||||
* fixed an edge case for slot type inferral
|
||||
|
@ -14,6 +15,7 @@
|
|||
### 2022-03-11
|
||||
* blocks: fixed an edge case for slot type inferral
|
||||
* objects: added "combinations" primitive to the palette
|
||||
* moved "append", "reshape", "combinations" blocks down one group in the palette
|
||||
|
||||
### 2022-03-10
|
||||
* gui: made dev-warning closeable and added official url
|
||||
|
|
|
@ -2792,14 +2792,14 @@ SpriteMorph.prototype.blockTemplates = function (
|
|||
blocks.push('-');
|
||||
blocks.push(block('doForEach'));
|
||||
blocks.push('-');
|
||||
blocks.push(block('reportConcatenatedLists'));
|
||||
blocks.push(block('reportReshape'));
|
||||
blocks.push(block('reportCrossproduct'));
|
||||
blocks.push('-');
|
||||
blocks.push(block('doAddToList'));
|
||||
blocks.push(block('doDeleteFromList'));
|
||||
blocks.push(block('doInsertInList'));
|
||||
blocks.push(block('doReplaceInList'));
|
||||
blocks.push('-');
|
||||
blocks.push(block('reportConcatenatedLists'));
|
||||
blocks.push(block('reportReshape'));
|
||||
blocks.push(block('reportCrossproduct'));
|
||||
|
||||
if (SpriteMorph.prototype.showingExtensions) {
|
||||
blocks.push('=');
|
||||
|
@ -9196,14 +9196,14 @@ StageMorph.prototype.blockTemplates = function (
|
|||
blocks.push('-');
|
||||
blocks.push(block('doForEach'));
|
||||
blocks.push('-');
|
||||
blocks.push(block('reportConcatenatedLists'));
|
||||
blocks.push(block('reportReshape'));
|
||||
blocks.push(block('reportCrossproduct'));
|
||||
blocks.push('-');
|
||||
blocks.push(block('doAddToList'));
|
||||
blocks.push(block('doDeleteFromList'));
|
||||
blocks.push(block('doInsertInList'));
|
||||
blocks.push(block('doReplaceInList'));
|
||||
blocks.push('-');
|
||||
blocks.push(block('reportConcatenatedLists'));
|
||||
blocks.push(block('reportReshape'));
|
||||
blocks.push(block('reportCrossproduct'));
|
||||
|
||||
if (SpriteMorph.prototype.showingExtensions) {
|
||||
blocks.push('=');
|
||||
|
|
Ładowanie…
Reference in New Issue