https://github.com/Microsoft/pxt-blockly/pull/96 (Don't register mouse events if pointer events are supported.)
https://github.com/google/blockly/issues/1544 (Too many variables get created when editing the name of a procedure argument.)
--
You received this message because you are subscribed to the Google Groups "Blockly" group.
To unsubscribe from this group and stop receiving emails from it, send an email to blockly+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Correct, the Blockly Playground does not have any evaluation. It is just to make sure the blocks and generators work.
This is true of most of our demos.
--
finally getting to this, sorry for the delay.
I did a basic drag and drop of the necessary files from the update over our year-old copies, and I'm now taking a look at what gets broken in our code. I fully understand that we may have to do changes on our side, I just don't know what at this very moment.
Anyway, first issue for me, in Blockly's python.js
var defvars = [];
var variables = workspace.variableList;
for (var i = 0; i < variables.length; i++) {
defvars[i] = Blockly.Python.variableDB_.getName(variables[i],
Blockly.Variables.NAME_TYPE) + ' = None';
}
The above code dies on variables.length, telling me that
variables is undefined. That would make sense as
workspace.variableList is new with this release.
Where and how should I set it to an empty list (at least for now, I'll need it later on)
Cleo
--
You received this message because you are subscribed to the Google Groups "Blockly" group.
To unsubscribe from this group and stop receiving emails from it, send an email to blockly+u...@googlegroups.com.
You are correct, I goofed with the branches...
Back to the drawing board (and thanks !)
Thanks for all your work, Rachel and team.
Would you have me fill in github issues directly? It's just that
I never know if it's me being dumb, or if it's an actual bug. I'm
a Python dev, not a javascript one, and there are a whole lot of
tools being used in Blockly that I have no knowledge of. So it's
often just me being dumb.
Cleo
--