diff --git a/HISTORY.md b/HISTORY.md index 63f4c733..d0f49377 100755 --- a/HISTORY.md +++ b/HISTORY.md @@ -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 diff --git a/src/objects.js b/src/objects.js index 8e68216c..83ff8f55 100644 --- a/src/objects.js +++ b/src/objects.js @@ -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('=');