rearranged the blocks in the lists category palette (moved commands up)

pull/95/head
jmoenig 2021-02-11 10:46:39 +01:00
rodzic 31c070f6f3
commit c9f46be70a
3 zmienionych plików z 16 dodań i 12 usunięć

Wyświetl plik

@ -12,6 +12,7 @@
* added "is _ identical to _ ?" to relabel options of equals
* enabled scientific notation in numeric text fields
* removed experimental "transpose (list)" primitive - has been merged into "length of list"
* rearranged the blocks in the lists category palette (moved commands up)
* **Notable Fixes:**
* don't show internal "compile" reporter in search results
* **Documentation Updates:**
@ -19,6 +20,9 @@
* **Translation Updates:**
* German
### 2021-02-11
* objects: rearranged the blocks in the lists category palette
### 2021-02-10
* objects: added "is _ identical to _ ?" to relabel options of equals
* morphic: enable scientific notation in numeric text fields

Wyświetl plik

@ -10,7 +10,7 @@
<script src="src/widgets.js?version=2021-01-05"></script>
<script src="src/blocks.js?version=2021-02-09"></script>
<script src="src/threads.js?version=2021-02-10"></script>
<script src="src/objects.js?version=2021-02-10"></script>
<script src="src/objects.js?version=2021-02-11"></script>
<script src="src/gui.js?version=2021-02-04"></script>
<script src="src/paint.js?version=2020-05-17"></script>
<script src="src/lists.js?version=2021-02-08"></script>

Wyświetl plik

@ -84,7 +84,7 @@ BlockEditorMorph, BlockDialogMorph, PrototypeHatBlockMorph, BooleanSlotMorph,
localize, TableMorph, TableFrameMorph, normalizeCanvas, VectorPaintEditorMorph,
AlignmentMorph, Process, WorldMap, copyCanvas, useBlurredShadows*/
modules.objects = '2021-February-10';
modules.objects = '2021-February-11';
var SpriteMorph;
var StageMorph;
@ -2785,6 +2785,11 @@ SpriteMorph.prototype.blockTemplates = function (category) {
blocks.push(block('reportNewList'));
blocks.push(block('reportNumbers'));
blocks.push('-');
blocks.push(block('doAddToList'));
blocks.push(block('doDeleteFromList'));
blocks.push(block('doInsertInList'));
blocks.push(block('doReplaceInList'));
blocks.push('-');
blocks.push(block('reportCONS'));
blocks.push(block('reportListItem'));
blocks.push(block('reportCDR'));
@ -2803,11 +2808,6 @@ SpriteMorph.prototype.blockTemplates = function (category) {
blocks.push('-');
blocks.push(block('reportConcatenatedLists'));
blocks.push(block('reportReshape'));
blocks.push('-');
blocks.push(block('doAddToList'));
blocks.push(block('doDeleteFromList'));
blocks.push(block('doInsertInList'));
blocks.push(block('doReplaceInList'));
// for debugging: ///////////////
@ -8946,6 +8946,11 @@ StageMorph.prototype.blockTemplates = function (category) {
blocks.push(block('reportNewList'));
blocks.push(block('reportNumbers'));
blocks.push('-');
blocks.push(block('doAddToList'));
blocks.push(block('doDeleteFromList'));
blocks.push(block('doInsertInList'));
blocks.push(block('doReplaceInList'));
blocks.push('-');
blocks.push(block('reportCONS'));
blocks.push(block('reportListItem'));
blocks.push(block('reportCDR'));
@ -8964,11 +8969,6 @@ StageMorph.prototype.blockTemplates = function (category) {
blocks.push('-');
blocks.push(block('reportConcatenatedLists'));
blocks.push(block('reportReshape'));
blocks.push('-');
blocks.push(block('doAddToList'));
blocks.push(block('doDeleteFromList'));
blocks.push(block('doInsertInList'));
blocks.push(block('doReplaceInList'));
// for debugging: ///////////////