pull/95/head
jmoenig 2021-01-30 12:57:41 +01:00
rodzic 859011e873
commit f224e69942
3 zmienionych plików z 6 dodań i 3 usunięć

Wyświetl plik

@ -11,6 +11,7 @@
* fixed a glitch in the animation library's "sine in-out" easing function
* fixed a postMessage glitch in the API, thanks, Bernat!
* fixed a glitch in the Turkish translation that broke the "Looks" blocks category
* fixed a glitch that prevented the text cursor from displaying instantly in certain situations
* **Translation Updates:**
* Tamil, thanks, Barthdry!
* German
@ -20,6 +21,7 @@
* threads, objects, lists: renamed experimental "rotate" primitive into "transpose"
* objects: added "transpose" to palette for testing
* updated German translation for "transpose"
* morphic: fixed #2768
### 2021-01-29
* threads, objects: new experimental "rotate (list)" primitive relabelling option for "all but first"

Wyświetl plik

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Snap! 6.5.2 - dev - Build Your Own Blocks</title>
<link rel="icon" href="src/favicon.ico">
<script src="src/morphic.js?version=2020-12-02"></script>
<script src="src/morphic.js?version=2021-01-30"></script>
<script src="src/symbols.js?version=2020-10-07"></script>
<script src="src/widgets.js?version=2021-01-05"></script>
<script src="src/blocks.js?version=2020-12-22"></script>

Wyświetl plik

@ -8,7 +8,7 @@
written by Jens Mönig
jens@moenig.org
Copyright (C) 2010-2020 by Jens Mönig
Copyright (C) 2010-2021 by Jens Mönig
This file is part of Snap!.
@ -1280,7 +1280,7 @@
/*global window, HTMLCanvasElement, FileReader, Audio, FileList, Map*/
var morphicVersion = '2020-December-02';
var morphicVersion = '2021-January-30';
var modules = {}; // keep track of additional loaded modules
var useBlurredShadows = true;
@ -12589,6 +12589,7 @@ WorldMorph.prototype.edit = function (aStringOrTextMorph) {
this.cursor = new CursorMorph(aStringOrTextMorph, this.keyboardHandler);
this.keyboardFocus = this.cursor;
aStringOrTextMorph.parent.add(this.cursor);
this.cursor.rerender();
if (MorphicPreferences.useSliderForInput) {
if (!aStringOrTextMorph.parentThatIsA(MenuMorph)) {
this.slide(aStringOrTextMorph);