kopia lustrzana https://github.com/backface/turtlestitch
made "Hyper blocks support" setting hidden in the gears menu
rodzic
91310c53ab
commit
b6f7f85ce1
|
@ -28,6 +28,7 @@
|
||||||
* "when I receive 'any message'" hat scripts are threadsafe (uninterruptable by other messages)
|
* "when I receive 'any message'" hat scripts are threadsafe (uninterruptable by other messages)
|
||||||
* changed the scale of the graphics color effect from 0-200 to 0-100
|
* changed the scale of the graphics color effect from 0-200 to 0-100
|
||||||
* result-bubbles (when clicking on a reporter) now stay visible until the next click
|
* result-bubbles (when clicking on a reporter) now stay visible until the next click
|
||||||
|
* took out "Hyper blocks support" setting from the gears menu (it's now hidden behind shift-click)
|
||||||
* new Birdbrain Technology extensions for Finch and Hummingbird, thanks, Kristina and Bambi!
|
* new Birdbrain Technology extensions for Finch and Hummingbird, thanks, Kristina and Bambi!
|
||||||
* retired Leap Motion library
|
* retired Leap Motion library
|
||||||
* display blocks with their error messages for custom blocks, thanks, Michael!
|
* display blocks with their error messages for custom blocks, thanks, Michael!
|
||||||
|
@ -57,6 +58,7 @@
|
||||||
|
|
||||||
### 2021-11-15
|
### 2021-11-15
|
||||||
* German translation update
|
* German translation update
|
||||||
|
* gui: made "Hyper blocks support" setting hidden in the gears menu
|
||||||
|
|
||||||
### 2021-11-14
|
### 2021-11-14
|
||||||
* locale: contextualize translations
|
* locale: contextualize translations
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
<script src="src/threads.js?version=2021-11-11"></script>
|
<script src="src/threads.js?version=2021-11-11"></script>
|
||||||
<script src="src/objects.js?version=2021-11-12"></script>
|
<script src="src/objects.js?version=2021-11-12"></script>
|
||||||
<script src="src/scenes.js?version=2021-11-12"></script>
|
<script src="src/scenes.js?version=2021-11-12"></script>
|
||||||
<script src="src/gui.js?version=2021-11-14"></script>
|
<script src="src/gui.js?version=2021-11-15"></script>
|
||||||
<script src="src/paint.js?version=2021-07-05"></script>
|
<script src="src/paint.js?version=2021-07-05"></script>
|
||||||
<script src="src/lists.js?version=2021-07-19"></script>
|
<script src="src/lists.js?version=2021-07-19"></script>
|
||||||
<script src="src/byob.js?version=2021-11-09"></script>
|
<script src="src/byob.js?version=2021-11-09"></script>
|
||||||
|
|
|
@ -86,7 +86,7 @@ BlockVisibilityDialogMorph, ThreadManager*/
|
||||||
|
|
||||||
// Global stuff ////////////////////////////////////////////////////////
|
// Global stuff ////////////////////////////////////////////////////////
|
||||||
|
|
||||||
modules.gui = '2021-November-14';
|
modules.gui = '2021-November-15';
|
||||||
|
|
||||||
// Declarations
|
// Declarations
|
||||||
|
|
||||||
|
@ -4195,7 +4195,7 @@ IDE_Morph.prototype.settingsMenu = function () {
|
||||||
Process.prototype.enableHyperOps,
|
Process.prototype.enableHyperOps,
|
||||||
'uncheck to disable\nusing operators on lists and tables',
|
'uncheck to disable\nusing operators on lists and tables',
|
||||||
'check to enable\nusing operators on lists and tables',
|
'check to enable\nusing operators on lists and tables',
|
||||||
false
|
true
|
||||||
);
|
);
|
||||||
addPreference(
|
addPreference(
|
||||||
'Single palette',
|
'Single palette',
|
||||||
|
|
Ładowanie…
Reference in New Issue