moved media files (icon, logo, click sound) into "src" subfolder

pull/68/head
jmoenig 2018-10-02 16:07:53 +02:00
rodzic 258e476e5f
commit 536acb224f
7 zmienionych plików z 5 dodań i 4 usunięć

Wyświetl plik

@ -10,6 +10,7 @@
* moved translations into subfolder "locale" * moved translations into subfolder "locale"
* removed obsolete doc files * removed obsolete doc files
* moved *.js files into subfolder "src" (and edited gui.js to deal with ypr.js) * moved *.js files into subfolder "src" (and edited gui.js to deal with ypr.js)
* moved media files (icon, logo, click sound) into "src" subfolder
## v4.2.1.4 ## v4.2.1.4
### 2018-09-09 ### 2018-09-09

Wyświetl plik

@ -3,7 +3,7 @@
<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 4.2.1.5 - dev -</title> <title>Snap! Build Your Own Blocks 4.2.1.5 - dev -</title>
<link rel="shortcut icon" href="favicon.ico"> <link rel="shortcut icon" href="src/favicon.ico">
<script type="text/javascript" src="src/morphic.js?version=2018-10-02"></script> <script type="text/javascript" src="src/morphic.js?version=2018-10-02"></script>
<script type="text/javascript" src="src/widgets.js?version=2018-10-02"></script> <script type="text/javascript" src="src/widgets.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/blocks.js?version=2018-10-02"></script>

Wyświetl plik

@ -148,7 +148,7 @@ CustomCommandBlockMorph, SymbolMorph, ToggleButtonMorph, DialMorph*/
// Global stuff //////////////////////////////////////////////////////// // Global stuff ////////////////////////////////////////////////////////
modules.blocks = '2018-September-09'; modules.blocks = '2018-October-02';
var SyntaxElementMorph; var SyntaxElementMorph;
var BlockMorph; var BlockMorph;
@ -2206,7 +2206,7 @@ BlockMorph.prototype.toggleSnapSound = function () {
this.snapSound = null; this.snapSound = null;
} else { } else {
BlockMorph.prototype.snapSound = document.createElement('audio'); BlockMorph.prototype.snapSound = document.createElement('audio');
BlockMorph.prototype.snapSound.src = 'click.wav'; BlockMorph.prototype.snapSound.src = 'src/click.wav';
} }
CommentMorph.prototype.snapSound = BlockMorph.prototype.snapSound; CommentMorph.prototype.snapSound = BlockMorph.prototype.snapSound;
}; };

Wyświetl plik

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 7.9 KiB

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 7.9 KiB

Wyświetl plik

@ -229,7 +229,7 @@ IDE_Morph.prototype.init = function (isAutoFill) {
this.projectName = ''; this.projectName = '';
this.projectNotes = ''; this.projectNotes = '';
this.logoURL = this.resourceURL('snap_logo_sm.png'); this.logoURL = this.resourceURL('src', 'snap_logo_sm.png');
this.logo = null; this.logo = null;
this.controlBar = null; this.controlBar = null;
this.categories = null; this.categories = null;

Wyświetl plik

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 4.6 KiB

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 4.6 KiB