added comment and updated history

pull/89/head
jmoenig 2019-08-07 13:53:34 +02:00
rodzic 11eb156552
commit fed077544a
2 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

@ -7,6 +7,7 @@
* "temporary?" attribute is now programmatically settable (in the SET->my... block)
* **Notable Changes:**
* **Notable Fixes:**
* fixed tainted audio context for auto-playing projects when the user interacts, thanks, Bernat!
* **Translation Updates:**
* German
@ -15,6 +16,7 @@
* blocks, threads: added "rgba" option to (aspect) AT (location) reporter in the sensing category
* blocks, threads: made "temporary?" attribute for clones settable (in the SET->my... block)
* objects: made the "paste on" block avaible in the "pen" palette
* fix for tainted audio context when the user interacts with an auto-playing project
* German translation update
## v5.0.9

Wyświetl plik

@ -3581,7 +3581,7 @@ SpriteMorph.prototype.doPlaySound = function (name) {
if (sound) {
aud = document.createElement('audio');
aud.src = sound.audio.src;
ctx.resume();
ctx.resume(); // needed to fix tainted context in case of autoplay
source = ctx.createMediaElementSource(aud);
source.connect(gain);
if (pan) {