kopia lustrzana https://github.com/backface/turtlestitch
swapped "lists" and "other" in the make-a-block category menu
thanks @brianharvey , for the report!snap8
rodzic
bf74329d33
commit
b1cf3d333c
|
@ -8,6 +8,7 @@
|
|||
* hyperized reporter-IF/ELSE
|
||||
* **Notable Fixes:**
|
||||
* strings library: fixed lowercase(number), thanks, Brian and Simon!
|
||||
* swapped "lists" and "other" in the make-a-block category menu, thanks Brian, for the report!
|
||||
* **Documentation Updates:**
|
||||
* **Translation Updates:**
|
||||
|
||||
|
@ -15,6 +16,7 @@
|
|||
* strings library: fixed lowercase(number), thanks, Brian and Simon!
|
||||
* new SciSnap2 extension and library, thanks, Eckart!
|
||||
* added Eckart to the contributors credits
|
||||
* byob: swapped "lists" and "other" in the make-a-block category menu
|
||||
|
||||
### 2022-02-16
|
||||
* threads: hyperized reporter-IF/ELSE
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
<script src="src/gui.js?version=2022-02-17"></script>
|
||||
<script src="src/paint.js?version=2021-07-05"></script>
|
||||
<script src="src/lists.js?version=2022-02-07"></script>
|
||||
<script src="src/byob.js?version=2022-02-09"></script>
|
||||
<script src="src/byob.js?version=2022-02-17"></script>
|
||||
<script src="src/tables.js?version=2022-01-28"></script>
|
||||
<script src="src/sketch.js?version=2021-11-03"></script>
|
||||
<script src="src/video.js?version=2019-06-27"></script>
|
||||
|
|
|
@ -111,7 +111,7 @@ ArgLabelMorph*/
|
|||
|
||||
// Global stuff ////////////////////////////////////////////////////////
|
||||
|
||||
modules.byob = '2022-February-09';
|
||||
modules.byob = '2022-February-17';
|
||||
|
||||
// Declarations
|
||||
|
||||
|
@ -1982,7 +1982,7 @@ BlockDialogMorph.prototype.fixCategoriesLayout = function () {
|
|||
col = Math.ceil((i + 1) / 4);
|
||||
} else if (i < 10) {
|
||||
row = 4;
|
||||
col = 10 - i;
|
||||
col = 3 - (10 - i);
|
||||
} else {
|
||||
row = i - 5;
|
||||
col = 1;
|
||||
|
|
Ładowanie…
Reference in New Issue