reverted list palette reordering

pull/95/head
jmoenig 2021-02-16 18:11:35 +01:00
rodzic ecb25fe473
commit 54c9d71bb5
3 zmienionych plików z 15 dodań i 13 usunięć

Wyświetl plik

@ -13,7 +13,6 @@
* 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)
* removed "reverse" block from the "frequency distribution analysis" library
* **Notable Fixes:**
* don't show internal "compile" reporter in search results
@ -25,6 +24,9 @@
* **Translation Updates:**
* German
### 2021-02-16
* objects: reverted list palette reordering
### 2021-02-15
* threads: fixed #2783
* threads: fixed #2784

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-15"></script>
<script src="src/threads.js?version=2021-02-15"></script>
<script src="src/objects.js?version=2021-02-11"></script>
<script src="src/objects.js?version=2021-02-16"></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-15"></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-11';
modules.objects = '2021-February-16';
var SpriteMorph;
var StageMorph;
@ -2785,11 +2785,6 @@ 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'));
@ -2808,6 +2803,11 @@ 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,11 +8946,6 @@ 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'));
@ -8969,6 +8964,11 @@ 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: ///////////////