kopia lustrzana https://github.com/backface/turtlestitch
fixed #2902
rodzic
e73c5d0802
commit
705e061f0d
|
@ -37,6 +37,7 @@
|
||||||
* fixed copying unattached comments among sprites, thanks, Jadga, for the report!
|
* fixed copying unattached comments among sprites, thanks, Jadga, for the report!
|
||||||
* disabled dropping reporters onto message hat block input slots
|
* disabled dropping reporters onto message hat block input slots
|
||||||
* fixed outdated blocks specs for "When I am ..." hat block in many translations
|
* fixed outdated blocks specs for "When I am ..." hat block in many translations
|
||||||
|
* fixed duplicating custom block definitions that don't have a body
|
||||||
* **Documentation Updates:**
|
* **Documentation Updates:**
|
||||||
* updated manual, thanks Brian!
|
* updated manual, thanks Brian!
|
||||||
* updated readme, thanks, Michael!
|
* updated readme, thanks, Michael!
|
||||||
|
@ -44,6 +45,9 @@
|
||||||
* German
|
* German
|
||||||
* Chinese, thanks, Simon!
|
* Chinese, thanks, Simon!
|
||||||
|
|
||||||
|
### 2021-10-25
|
||||||
|
* byob: fixed #2902
|
||||||
|
|
||||||
### 2021-10-22
|
### 2021-10-22
|
||||||
* blocks, objects: only show the "message" upvar in the "When I receive" hat if "any message" is selected
|
* blocks, objects: only show the "message" upvar in the "When I receive" hat if "any message" is selected
|
||||||
* blocks: only show "key" upvar in the "When ... is pressed" hat if "any key" is selected
|
* blocks: only show "key" upvar in the "When ... is pressed" hat if "any key" is selected
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
<script src="src/gui.js?version=2021-10-20"></script>
|
<script src="src/gui.js?version=2021-10-20"></script>
|
||||||
<script src="src/paint.js?version=2021-07-05"></script>
|
<script src="src/paint.js?version=2021-07-05"></script>
|
||||||
<script src="src/lists.js?version=2021-07-19"></script>
|
<script src="src/lists.js?version=2021-07-19"></script>
|
||||||
<script src="src/byob.js?version=2021-10-14"></script>
|
<script src="src/byob.js?version=2021-10-25"></script>
|
||||||
<script src="src/tables.js?version=2021-05-07"></script>
|
<script src="src/tables.js?version=2021-05-07"></script>
|
||||||
<script src="src/sketch.js?version=2021-07-05"></script>
|
<script src="src/sketch.js?version=2021-07-05"></script>
|
||||||
<script src="src/video.js?version=2019-06-27"></script>
|
<script src="src/video.js?version=2019-06-27"></script>
|
||||||
|
|
|
@ -108,7 +108,7 @@ WatcherMorph, XML_Serializer, SnapTranslator, SnapExtensions*/
|
||||||
|
|
||||||
// Global stuff ////////////////////////////////////////////////////////
|
// Global stuff ////////////////////////////////////////////////////////
|
||||||
|
|
||||||
modules.byob = '2021-October-14';
|
modules.byob = '2021-October-25';
|
||||||
|
|
||||||
// Declarations
|
// Declarations
|
||||||
|
|
||||||
|
@ -1287,7 +1287,7 @@ CustomCommandBlockMorph.prototype.duplicateBlockDefinition = function () {
|
||||||
def = this.isGlobal ? this.definition : rcvr.getMethod(this.blockSpec),
|
def = this.isGlobal ? this.definition : rcvr.getMethod(this.blockSpec),
|
||||||
dup = def.copyAndBindTo(rcvr),
|
dup = def.copyAndBindTo(rcvr),
|
||||||
spec = dup.spec,
|
spec = dup.spec,
|
||||||
exp = dup.body.expression,
|
exp = dup.body? dup.body.expression : null,
|
||||||
count = 1;
|
count = 1;
|
||||||
|
|
||||||
function rebindRecursiveCalls(topBlock) {
|
function rebindRecursiveCalls(topBlock) {
|
||||||
|
|
Ładowanie…
Reference in New Issue