updated change log

snap7
jmoenig 2022-01-03 11:04:20 +01:00
rodzic 859f1efa33
commit e383d8d0cf
3 zmienionych plików z 5 dodań i 3 usunięć

Wyświetl plik

@ -9,6 +9,7 @@
* fixed storing the stage name(s)
* removed distinction between number and string keys in "analyze"
* fixed variable binding when broadcasting through the API, thanks, Zak!
* fixed programmatically hiding palette blocks using the "hide variable" block, thanks, Zak!
* **Documentation Updates:**
* **Translation Updates:**
* Italian, thanks, Stefano!
@ -16,6 +17,7 @@
### 2022-01-03
* Italian translation update, thanks, Stefano!
* api: fixed variable binding when broadcasting through the API, thanks, Zak!
* objects: fixed programmatically hiding palette blocks using the "hide variable" block, thanks, Zak!
### 2022-01-02
* store: fixed storing the stage name(s)

Wyświetl plik

@ -18,7 +18,7 @@
<script src="src/widgets.js?version=2021-17-09"></script>
<script src="src/blocks.js?version=2021-12-20"></script>
<script src="src/threads.js?version=2021-12-22"></script>
<script src="src/objects.js?version=2021-12-20"></script>
<script src="src/objects.js?version=2022-01-03"></script>
<script src="src/scenes.js?version=2021-11-24"></script>
<script src="src/gui.js?version=2021-12-22"></script>
<script src="src/paint.js?version=2021-07-05"></script>

Wyświetl plik

@ -9,7 +9,7 @@
written by Jens Mönig
jens@moenig.org
Copyright (C) 2021 by Jens Mönig
Copyright (C) 2022 by Jens Mönig
This file is part of Snap!.
@ -87,7 +87,7 @@ BlockVisibilityDialogMorph*/
/*jshint esversion: 6*/
modules.objects = '2021-December-20';
modules.objects = '2022-January-03';
var SpriteMorph;
var StageMorph;