fixed #2950, thanks, Mary!

snap7
jmoenig 2022-01-03 18:36:43 +01:00
rodzic 03be119a8e
commit 5ca6bb9109
2 zmienionych plików z 5 dodań i 2 usunięć

Wyświetl plik

@ -13,6 +13,7 @@
* fixed variable binding when broadcasting through the API, thanks, Zak!
* fixed programmatically hiding palette blocks using the "hide variable" block, thanks, Zak!
* fixed / worked around PWA caching for URLs with query parts, thanks, Ken!
* added missing "identical to" relabel option to "less than" reporter, thanks, Mary!
* **Documentation Updates:**
* **Translation Updates:**
* Italian, thanks, Stefano!
@ -23,7 +24,8 @@
* objects: fixed programmatically hiding palette blocks using the "hide variable" block, thanks, Zak!
* threads, api: made "When I receive any messagge" non-thread-safe by default (again) to enable tail recursive broadcasts
* threads, extensions: improved handling of user-defined errors and errors inside custom blocks
* sw.js: fixed #2957, thanks, Ken!
* sw.js: fixed #2957, thanks, Ken!
* objects: fixed #2950, thanks, Mary!
### 2022-01-02
* store: fixed storing the stage name(s)

Wyświetl plik

@ -1793,7 +1793,8 @@ SpriteMorph.prototype.blockAlternatives = {
reportMax: ['reportMin', 'reportSum', 'reportDifference', 'reportProduct',
'reportQuotient', 'reportPower', 'reportModulus', 'reportAtan2'],
reportLessThan: ['reportLessThanOrEquals', 'reportEquals',
'reportNotEquals', 'reportGreaterThan', 'reportGreaterThanOrEquals'],
'reportIsIdentical', 'reportNotEquals', 'reportGreaterThan',
'reportGreaterThanOrEquals'],
reportEquals: ['reportIsIdentical', 'reportNotEquals', 'reportLessThan',
'reportLessThanOrEquals', 'reportGreaterThan',
'reportGreaterThanOrEquals'],