diff --git a/HISTORY.md b/HISTORY.md index 52f1d589..77195934 100755 --- a/HISTORY.md +++ b/HISTORY.md @@ -67,7 +67,8 @@ * French ### 2019-04-11 -* Blocks, Threads: Renamed monadic selectors: "neg" to "-" and "log2" to "lg", added "2^" +* Blocks, Threads: renamed monadic selectors: "neg" to "-" and "log2" to "lg", added "2^" +* Objects: moved costume-pixels primitives down in the palette towards the graphic effects ### 2019-04-10 * Objects: took out MAP and FOREACH primitives (available in dev mode) diff --git a/snap.html b/snap.html index e350e368..5cd20324 100755 --- a/snap.html +++ b/snap.html @@ -8,7 +8,7 @@ - + diff --git a/src/objects.js b/src/objects.js index 718d8190..c9dd7040 100644 --- a/src/objects.js +++ b/src/objects.js @@ -84,7 +84,7 @@ BlockEditorMorph, BlockDialogMorph, PrototypeHatBlockMorph, localize, TableMorph, TableFrameMorph, normalizeCanvas, BooleanSlotMorph, HandleMorph, AlignmentMorph, Process, XML_Element, VectorPaintEditorMorph*/ -modules.objects = '2019-April-10'; +modules.objects = '2019-April-11'; var SpriteMorph; var StageMorph; @@ -2022,14 +2022,14 @@ SpriteMorph.prototype.blockTemplates = function (category) { blocks.push(watcherToggle('getCostumeIdx')); blocks.push(block('getCostumeIdx', this.inheritsAttribute('costume #'))); blocks.push('-'); - blocks.push(block('reportGetImageAttribute')); - blocks.push(block('reportNewCostumeStretched')); - blocks.push('-'); blocks.push(block('doSayFor')); blocks.push(block('bubble')); blocks.push(block('doThinkFor')); blocks.push(block('doThink')); blocks.push('-'); + blocks.push(block('reportGetImageAttribute')); + blocks.push(block('reportNewCostumeStretched')); + blocks.push('-'); blocks.push(block('changeEffect')); blocks.push(block('setEffect')); blocks.push(block('clearEffects'));