moved "append", "reshape", "combinations" blocks down one group in the palette

snap8
Jens Mönig 2022-03-11 10:26:37 +01:00
rodzic f05bd654e8
commit 2fe036eef5
2 zmienionych plików z 10 dodań i 8 usunięć

Wyświetl plik

@ -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

Wyświetl plik

@ -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('=');