renamed repo to "Snap!

and adjusted all references in the code
pull/68/head
jmoenig 2018-10-07 11:21:44 +02:00
rodzic 9e8e7d9e70
commit 4e8dcd0924
4 zmienionych plików z 7 dodań i 5 usunięć

Wyświetl plik

@ -2,6 +2,9 @@
## Development Version
### 2018-10-07
* renamed repo to "Snap"
### 2018-10-05
* Objects: Adjusted pen hue wrapping and took out pen shade wrapping
* Store: Fixed #1918 - escape options in block drop downs #2174, thanks, Michael!

Wyświetl plik

@ -10,7 +10,7 @@ your computer, by following these
## Simple Steps:
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.
3. There is no step 3.

Wyświetl plik

@ -9,7 +9,7 @@
<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/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/lists.js?version=2018-10-02"></script>
<script type="text/javascript" src="src/byob.js?version=2018-10-02"></script>

Wyświetl plik

@ -75,7 +75,7 @@ isRetinaSupported, SliderMorph, Animation, BoxMorph, MediaRecorder*/
// Global stuff ////////////////////////////////////////////////////////
modules.gui = '2018-October-04';
modules.gui = '2018-October-07';
// Declarations
@ -2512,8 +2512,7 @@ IDE_Morph.prototype.snapMenu = function () {
'Download source',
function () {
window.open(
'https://github.com/jmoenig/Snap--Build-Your-Own-Blocks' +
'/releases/latest',
'https://github.com/jmoenig/Snap/releases/latest',
'SnapSource'
);
}