Jens Mönig 2017-01-19 15:03:13 +01:00
rodzic e4169b6e8d
commit ce60d740af
3 zmienionych plików z 16 dodań i 5 usunięć

Wyświetl plik

@ -150,7 +150,7 @@ CustomCommandBlockMorph*/
// Global stuff ////////////////////////////////////////////////////////
modules.blocks = '2017-January-13';
modules.blocks = '2017-January-19';
var SyntaxElementMorph;
var BlockMorph;
@ -2824,7 +2824,10 @@ BlockMorph.prototype.restoreInputs = function (oldInputs) {
if (old instanceof ReporterBlockMorph) {
leftOver.push(old);
} else if (old instanceof CommandSlotMorph) {
leftOver.push(old.nestedBlock());
nb = old.nestedBlock();
if (nb) {
leftOver.push(nb);
}
}
}
this.cachedInputs = null;

4
gui.js
Wyświetl plik

@ -74,7 +74,7 @@ isRetinaSupported, SliderMorph, Animation*/
// Global stuff ////////////////////////////////////////////////////////
modules.gui = '2017-January-13';
modules.gui = '2017-January-19';
// Declarations
@ -3187,7 +3187,7 @@ IDE_Morph.prototype.aboutSnap = function () {
module, btn1, btn2, btn3, btn4, licenseBtn, translatorsBtn,
world = this.world();
aboutTxt = 'Snap! 4.0.10\nBuild Your Own Blocks\n\n'
aboutTxt = 'Snap! 4.0.10.1 - dev -\nBuild Your Own Blocks\n\n'
+ 'Copyright \u24B8 2017 Jens M\u00F6nig and '
+ 'Brian Harvey\n'
+ 'jens@moenig.org, bh@cs.berkeley.edu\n\n'

Wyświetl plik

@ -3277,7 +3277,7 @@ http://snap.berkeley.edu/run#cloud:Username=jens&ProjectName=rotation
* GUI: added "savingPreferences" flag for bh's "Eisenbergification" library, sigh.
== v4.10 ===
== v4.0.10 ===
Features:
* auto-wrapping of C-slots
@ -3302,3 +3302,11 @@ Fixes:
* Evaluate the generic WHEN-hat blocks predicate and first step of the attached script in the same atom
* “go back _ layers” to work with out-of bounds numbers, thanks, Brian Broll!
* Translation updates (Russian, Polish, Danish, Portuguese, Catalan, German)
== v4.0.10.1 - in development - ===
170119
------
* GUI: began new development version
* Blocks: fixed #1630