kopia lustrzana https://github.com/backface/turtlestitch
updated version history
rodzic
93b1b7354f
commit
0b51bfac1a
|
@ -61,6 +61,7 @@
|
|||
* fixed some minor variable-renaming issues
|
||||
* fixed STOP OTHER SCRIPTS for use inside TELL
|
||||
* made "remove duplicates" reporter in the "list utilities" library (a lot) faster
|
||||
* fixed translation support for the libraries list, thanks, Joan!
|
||||
* **Documentation Updates:**
|
||||
* updated manual, thanks, Brian!
|
||||
* updated readme, thanks, Michael!
|
||||
|
@ -71,6 +72,7 @@
|
|||
|
||||
### 2021-12-10
|
||||
* Catalan and German translation updates, thanks, Joan!
|
||||
* translation support for the libraries list, thanks, Joan!
|
||||
|
||||
### 2021-12-09
|
||||
* blocks, threads: never push untested last minute changes that might break everything
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Snap! 7 - rc3 - Build Your Own Blocks</title>
|
||||
<title>Snap! 7 - rc4 - Build Your Own Blocks</title>
|
||||
<link rel="icon" href="src/favicon.ico" type="image/x-icon">
|
||||
<link rel="manifest" href="manifest.json">
|
||||
<link rel="apple-touch-icon" href="img/snap-icon-152.png">
|
||||
|
@ -13,14 +13,14 @@
|
|||
<meta name="apple-mobile-web-app-title" content="Snap!">
|
||||
<meta name="msapplication-TileImage" content="img/snap-icon-144.png">
|
||||
<meta name="msapplication-TileColor" content="#FFFFFF">
|
||||
<script src="src/morphic.js?version=2021-07-09"></script>
|
||||
<script src="src/morphic.js?version=2021-12-10"></script>
|
||||
<script src="src/symbols.js?version=2021-03-03"></script>
|
||||
<script src="src/widgets.js?version=2021-17-09"></script>
|
||||
<script src="src/blocks.js?version=2021-12-09"></script>
|
||||
<script src="src/threads.js?version=2021-12-09"></script>
|
||||
<script src="src/objects.js?version=2021-12-09"></script>
|
||||
<script src="src/scenes.js?version=2021-11-24"></script>
|
||||
<script src="src/gui.js?version=2021-12-09"></script>
|
||||
<script src="src/gui.js?version=2021-12-10"></script>
|
||||
<script src="src/paint.js?version=2021-07-05"></script>
|
||||
<script src="src/lists.js?version=2021-07-19"></script>
|
||||
<script src="src/byob.js?version=2021-11-23"></script>
|
||||
|
|
|
@ -86,7 +86,7 @@ BlockVisibilityDialogMorph, ThreadManager*/
|
|||
|
||||
// Global stuff ////////////////////////////////////////////////////////
|
||||
|
||||
modules.gui = '2021-December-09';
|
||||
modules.gui = '2021-December-10';
|
||||
|
||||
// Declarations
|
||||
|
||||
|
@ -4770,7 +4770,7 @@ IDE_Morph.prototype.aboutSnap = function () {
|
|||
module, btn1, btn2, btn3, btn4, licenseBtn, translatorsBtn,
|
||||
world = this.world();
|
||||
|
||||
aboutTxt = 'Snap! 7 - rc3 -\nBuild Your Own Blocks\n\n'
|
||||
aboutTxt = 'Snap! 7 - rc4 -\nBuild Your Own Blocks\n\n'
|
||||
+ 'Copyright \u24B8 2008-2021 Jens M\u00F6nig and '
|
||||
+ 'Brian Harvey\n'
|
||||
+ 'jens@moenig.org, bh@cs.berkeley.edu\n\n'
|
||||
|
|
|
@ -1291,7 +1291,7 @@
|
|||
|
||||
/*jshint esversion: 6*/
|
||||
|
||||
var morphicVersion = '2021-July-09';
|
||||
var morphicVersion = '2021-December-10';
|
||||
var modules = {}; // keep track of additional loaded modules
|
||||
var useBlurredShadows = true;
|
||||
|
||||
|
@ -10764,7 +10764,14 @@ ListMorph.prototype = new ScrollFrameMorph();
|
|||
ListMorph.prototype.constructor = ListMorph;
|
||||
ListMorph.uber = ScrollFrameMorph.prototype;
|
||||
|
||||
function ListMorph(elements, labelGetter, format, onDoubleClick, separator, verbatim) {
|
||||
function ListMorph(
|
||||
elements,
|
||||
labelGetter,
|
||||
format,
|
||||
onDoubleClick,
|
||||
separator,
|
||||
verbatim
|
||||
) {
|
||||
/*
|
||||
passing a format is optional. If the format parameter is specified
|
||||
it has to be of the following pattern:
|
||||
|
@ -10826,7 +10833,7 @@ ListMorph.prototype.init = function (
|
|||
this.action = null;
|
||||
this.doubleClickAction = onDoubleClick || null;
|
||||
this.separator = separator || '';
|
||||
this.verbatim = typeof verbatim === 'undefined' ? true : verbatim;
|
||||
this.verbatim = isNil(verbatim) ? true : verbatim;
|
||||
this.acceptsDrops = false;
|
||||
this.buildListContents();
|
||||
};
|
||||
|
|
Ładowanie…
Reference in New Issue