kopia lustrzana https://github.com/backface/turtlestitch
rodzic
9e8e7d9e70
commit
4e8dcd0924
|
@ -2,6 +2,9 @@
|
||||||
|
|
||||||
## Development Version
|
## Development Version
|
||||||
|
|
||||||
|
### 2018-10-07
|
||||||
|
* renamed repo to "Snap"
|
||||||
|
|
||||||
### 2018-10-05
|
### 2018-10-05
|
||||||
* Objects: Adjusted pen hue wrapping and took out pen shade wrapping
|
* Objects: Adjusted pen hue wrapping and took out pen shade wrapping
|
||||||
* Store: Fixed #1918 - escape options in block drop downs #2174, thanks, Michael!
|
* Store: Fixed #1918 - escape options in block drop downs #2174, thanks, Michael!
|
||||||
|
|
|
@ -10,7 +10,7 @@ your computer, by following these
|
||||||
## Simple Steps:
|
## Simple Steps:
|
||||||
|
|
||||||
1. Download the latest Snap! Release from
|
1. Download the latest Snap! Release from
|
||||||
[https://github.com/jmoenig/Snap--Build-Your-Own-Blocks/releases/latest](https://github.com/jmoenig/Snap--Build-Your-Own-Blocks/releases/latest "Snap! Source Code"), and unpack the contents of the archive to your local disk.
|
[https://github.com/jmoenig/Snap/releases/latest](https://github.com/jmoenig/Snap/releases/latest "Snap! Source Code"), and unpack the contents of the archive to your local disk.
|
||||||
2. Open the file `snap.html` in your browser.
|
2. Open the file `snap.html` in your browser.
|
||||||
3. There is no step 3.
|
3. There is no step 3.
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
<script type="text/javascript" src="src/blocks.js?version=2018-10-02"></script>
|
<script type="text/javascript" src="src/blocks.js?version=2018-10-02"></script>
|
||||||
<script type="text/javascript" src="src/threads.js?version=2018-10-03"></script>
|
<script type="text/javascript" src="src/threads.js?version=2018-10-03"></script>
|
||||||
<script type="text/javascript" src="src/objects.js?version=2018-10-05"></script>
|
<script type="text/javascript" src="src/objects.js?version=2018-10-05"></script>
|
||||||
<script type="text/javascript" src="src/gui.js?version=2018-10-04"></script>
|
<script type="text/javascript" src="src/gui.js?version=2018-10-07"></script>
|
||||||
<script type="text/javascript" src="src/paint.js?version=2018-10-02"></script>
|
<script type="text/javascript" src="src/paint.js?version=2018-10-02"></script>
|
||||||
<script type="text/javascript" src="src/lists.js?version=2018-10-02"></script>
|
<script type="text/javascript" src="src/lists.js?version=2018-10-02"></script>
|
||||||
<script type="text/javascript" src="src/byob.js?version=2018-10-02"></script>
|
<script type="text/javascript" src="src/byob.js?version=2018-10-02"></script>
|
||||||
|
|
|
@ -75,7 +75,7 @@ isRetinaSupported, SliderMorph, Animation, BoxMorph, MediaRecorder*/
|
||||||
|
|
||||||
// Global stuff ////////////////////////////////////////////////////////
|
// Global stuff ////////////////////////////////////////////////////////
|
||||||
|
|
||||||
modules.gui = '2018-October-04';
|
modules.gui = '2018-October-07';
|
||||||
|
|
||||||
// Declarations
|
// Declarations
|
||||||
|
|
||||||
|
@ -2512,8 +2512,7 @@ IDE_Morph.prototype.snapMenu = function () {
|
||||||
'Download source',
|
'Download source',
|
||||||
function () {
|
function () {
|
||||||
window.open(
|
window.open(
|
||||||
'https://github.com/jmoenig/Snap--Build-Your-Own-Blocks' +
|
'https://github.com/jmoenig/Snap/releases/latest',
|
||||||
'/releases/latest',
|
|
||||||
'SnapSource'
|
'SnapSource'
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Ładowanie…
Reference in New Issue