enable dropping command blocks into all rings by default. Yeah!

pull/89/head
jmoenig 2019-02-07 12:54:45 +01:00
rodzic ba46761576
commit a19cd29526
4 zmienionych plików z 7 dodań i 7 usunięć

Wyświetl plik

@ -26,7 +26,7 @@
* optimized in-project storage of atomic-data lists (more efficient, less space)
* remove all clones when the Green Flag is clicked
* adjust bottom of STOP block to reflect the menu selection (show / hide bottom notch)
* enable dropping commands into all rings, experimental, under construction
* enable dropping commands into all rings
* Notable Fixes:
* "relabel" blocks with translated drop-down choices
* transforming arrayed to linked lists without loosing the last element
@ -45,6 +45,7 @@
* Morphic: simplified and optimized Node>>parentThatIsA / parentThatIsAnyOf
* Blocks, Lists, Tables: refactored for optimized parent-by-type detection
* Blocks: adjusted keyboard typing for command blocks inside reporter rings
* GUI, Blocks: enable dropping command blocks into all rings by default. Yeah!
### 2019-02-06
* Blocks, BYOB: refactored custom block input options and drop-down menus

Wyświetl plik

@ -9,7 +9,7 @@
<script type="text/javascript" src="src/blocks.js?version=2019-02-07"></script>
<script type="text/javascript" src="src/threads.js?version=2019-01-28"></script>
<script type="text/javascript" src="src/objects.js?version=2019-02-07"></script>
<script type="text/javascript" src="src/gui.js?version=2019-02-06"></script>
<script type="text/javascript" src="src/gui.js?version=2019-02-07"></script>
<script type="text/javascript" src="src/paint.js?version=2018-10-02"></script>
<script type="text/javascript" src="src/lists.js?version=2019-02-07"></script>
<script type="text/javascript" src="src/byob.js?version=2019-02-06"></script>

Wyświetl plik

@ -11617,7 +11617,7 @@ RingReporterSlotMorph.prototype.rfBorder
RingReporterSlotMorph.prototype.edge
= RingCommandSlotMorph.prototype.edge;
RingReporterSlotMorph.prototype.enableCommandDrops = false; // +++ not finished
RingReporterSlotMorph.prototype.enableCommandDrops = true;
// RingReporterSlotMorph instance creation:

Wyświetl plik

@ -75,7 +75,7 @@ isRetinaSupported, SliderMorph, Animation, BoxMorph, MediaRecorder*/
// Global stuff ////////////////////////////////////////////////////////
modules.gui = '2019-February-06';
modules.gui = '2019-February-07';
// Declarations
@ -3148,9 +3148,8 @@ IDE_Morph.prototype.settingsMenu = function () {
!RingReporterSlotMorph.prototype.enableCommandDrops;
},
RingReporterSlotMorph.prototype.enableCommandDrops,
'UNDER CONSTRUCTION!\nuncheck to disable\ndropping commands in ' +
'reporter rings',
'UNDER CONSTRUCTION!\ncheck to enable\ndropping commands in all rings',
'uncheck to disable\ndropping commands in reporter rings',
'check to enable\ndropping commands in all rings',
true
);
menu.popup(world, pos);