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