kopia lustrzana https://github.com/backface/turtlestitch
prepared minor release
rodzic
15b7bdc92c
commit
2e85d2d326
|
@ -1,6 +1,12 @@
|
||||||
# Snap! (BYOB) History
|
# Snap! (BYOB) History
|
||||||
|
|
||||||
## in development:
|
## in development:
|
||||||
|
* **New Features:**
|
||||||
|
* **Notable Changes:**
|
||||||
|
* **Notable Fixes:**
|
||||||
|
* **Translation Updates:**
|
||||||
|
|
||||||
|
## v5.1.0
|
||||||
* **New Features:**
|
* **New Features:**
|
||||||
* new "paste on" block in the pen category, prints a sprite onto another one
|
* new "paste on" block in the pen category, prints a sprite onto another one
|
||||||
* new "r-g-b-a" option in "(aspect) AT (location)" sensing reporter, returns a 4-item list of values from 0-255 (same as pixels from a costume)
|
* new "r-g-b-a" option in "(aspect) AT (location)" sensing reporter, returns a 4-item list of values from 0-255 (same as pixels from a costume)
|
||||||
|
@ -18,6 +24,7 @@
|
||||||
* store: allow wardrobe-less costumes to be shared among several sprites (e.g. when inheriting the "costume #" attribute)
|
* store: allow wardrobe-less costumes to be shared among several sprites (e.g. when inheriting the "costume #" attribute)
|
||||||
* objects: fixed an issue when a sprite inherits both the wardrobe and the costume #
|
* objects: fixed an issue when a sprite inherits both the wardrobe and the costume #
|
||||||
* store, objects: fixed the bug that made clones forget inheritance of costume # when saved
|
* store, objects: fixed the bug that made clones forget inheritance of costume # when saved
|
||||||
|
* prepared minor release
|
||||||
|
|
||||||
### 2019-08-07
|
### 2019-08-07
|
||||||
* new dev version
|
* new dev version
|
||||||
|
|
|
@ -2,14 +2,14 @@
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<title>Snap! Build Your Own Blocks 5.1.0 - dev -</title>
|
<title>Snap! Build Your Own Blocks 5.1.0</title>
|
||||||
<link rel="shortcut icon" href="src/favicon.ico">
|
<link rel="shortcut icon" href="src/favicon.ico">
|
||||||
<script type="text/javascript" src="src/morphic.js?version=2019-08-06"></script>
|
<script type="text/javascript" src="src/morphic.js?version=2019-08-06"></script>
|
||||||
<script type="text/javascript" src="src/widgets.js?version=2019-06-27"></script>
|
<script type="text/javascript" src="src/widgets.js?version=2019-06-27"></script>
|
||||||
<script type="text/javascript" src="src/blocks.js?version=2019-08-07"></script>
|
<script type="text/javascript" src="src/blocks.js?version=2019-08-07"></script>
|
||||||
<script type="text/javascript" src="src/threads.js?version=2019-08-07"></script>
|
<script type="text/javascript" src="src/threads.js?version=2019-08-07"></script>
|
||||||
<script type="text/javascript" src="src/objects.js?version=2019-08-08"></script>
|
<script type="text/javascript" src="src/objects.js?version=2019-08-08"></script>
|
||||||
<script type="text/javascript" src="src/gui.js?version=2019-08-07"></script>
|
<script type="text/javascript" src="src/gui.js?version=2019-08-08"></script>
|
||||||
<script type="text/javascript" src="src/paint.js?version=2019-06-27"></script>
|
<script type="text/javascript" src="src/paint.js?version=2019-06-27"></script>
|
||||||
<script type="text/javascript" src="src/lists.js?version=2019-07-01"></script>
|
<script type="text/javascript" src="src/lists.js?version=2019-07-01"></script>
|
||||||
<script type="text/javascript" src="src/byob.js?version=2019-07-24"></script>
|
<script type="text/javascript" src="src/byob.js?version=2019-07-24"></script>
|
||||||
|
|
|
@ -75,7 +75,7 @@ isRetinaSupported, SliderMorph, Animation, BoxMorph, MediaRecorder*/
|
||||||
|
|
||||||
// Global stuff ////////////////////////////////////////////////////////
|
// Global stuff ////////////////////////////////////////////////////////
|
||||||
|
|
||||||
modules.gui = '2019-August-07';
|
modules.gui = '2019-August-08';
|
||||||
|
|
||||||
// Declarations
|
// Declarations
|
||||||
|
|
||||||
|
@ -3596,7 +3596,7 @@ IDE_Morph.prototype.aboutSnap = function () {
|
||||||
module, btn1, btn2, btn3, btn4, licenseBtn, translatorsBtn,
|
module, btn1, btn2, btn3, btn4, licenseBtn, translatorsBtn,
|
||||||
world = this.world();
|
world = this.world();
|
||||||
|
|
||||||
aboutTxt = 'Snap! 5.1.0 - dev -\nBuild Your Own Blocks\n\n'
|
aboutTxt = 'Snap! 5.1.0\nBuild Your Own Blocks\n\n'
|
||||||
+ 'Copyright \u24B8 2019 Jens M\u00F6nig and '
|
+ 'Copyright \u24B8 2019 Jens M\u00F6nig and '
|
||||||
+ 'Brian Harvey\n'
|
+ 'Brian Harvey\n'
|
||||||
+ 'jens@moenig.org, bh@cs.berkeley.edu\n\n'
|
+ 'jens@moenig.org, bh@cs.berkeley.edu\n\n'
|
||||||
|
|
Ładowanie…
Reference in New Issue