summaryrefslogtreecommitdiff
path: root/blocks.js
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'mobileapp' into developmentGubolin2015-03-241-19/+0
|\
* \ merge branch OOPGubolin2015-03-241-2/+37
|\ \
| * | OOP: Tweaks for scope conflicts when adding / removing varsJens Mönig2015-03-231-2/+27
| | |
| * | Prototypal inheritance of sprite-local variablesJens Mönig2015-03-211-1/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (experimental) slotwise inheritance à la Henry Lieberman for sprite-local variables. see http://web.media.mit.edu/~lieber/Lieberary/OOP/Delegation/Delegation.htm l Let a sprite inherit another sprite’s local variables by making it the “parent” in the sprite-icon’s context menu (the button icon in the sprite corral underneath the stage). The child not only inherits the variable slot but also - dynamically - the parent variable’s value. Changing the parent’s variable value also changes it for every child. If a child uses SET or CHANGE on an inherited variable it automatically “shadows” it with its own value, thereby stopping dynamic participation in the parent slot’s value (in effect dis-inheriting that slot). Deleting a shadowed variable slot once again reinstates its inheritance status. inherited variables are shown as “ghosted” both in the child’s variables palette and in such stage watchers. “Shadowing” them un-ghosts both the variable blob template in the palette and the watcher onstage (if any). Deleting a shadowed variable once again ghosts the watcher and the palette block template. Delete a (shadowed) variable either via the “Delete a variable” button in the IDE or using the new “Delete” block in the variables category
* | | Merge branch 'master' into developmentGubolin2015-03-201-12/+12
|\| |
| * | Only enable input caching for blocksJens Mönig2015-03-091-9/+2
| | |
| * | fixed #738Jens Mönig2015-03-091-3/+10
| | |
* | | Merge remote-tracking branch 'upstream/master' into developmentGubolin2015-03-081-2/+26
|\| |
| * | fixed #736Jens Mönig2015-03-061-2/+26
| |/ | | | | | | | | caching really *is* evil :-) (if it weren’t for performance…)
* | mergeGubolin2015-03-011-5/+38
|\|
| * Cache inputs - accelerate recursive reportersJens Mönig2015-02-281-5/+24
| | | | | | | | and warped / turbo recursive commands by up to 40%
| * Add user-interaction choices to the “When I am ...” hat blockjmoenig2015-02-231-1/+15
| | | | | | | | “clicked”, “pressed”, “dropped”, “mouse-entered”, “mouse-departed”
* | Merge branch issue_405Gubolin2014-12-071-0/+34
|\ \
| * | adjust indentationGubolin2014-08-031-3/+3
| | |
| * | Update blocks.jsJohn2014-08-031-0/+34
| | |
* | | Merge remote-tracking branch 'origin/location' into developmentGubolin2014-12-071-0/+19
|\ \ \
| * | | add geolocation blocklocationGubolin2014-08-181-0/+19
| | | |
* | | | Merge branch 'anykey_issue387' into developmentGubolin2014-12-071-0/+2
|\ \ \ \ | |_|_|/ |/| | |
| * | | add NUMBER KEY to key hat blockGubolin2014-11-031-0/+1
| | | |
| * | | add ANY KEY to key hat block (fix #387)Gubolin2014-11-031-0/+1
| | | |
* | | | Fix "stop this block"’s lexical awarenessjmoenig2014-11-211-15/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | “stop this block” when used inside a custom block definition now always returns out of the lexically enclosing script (the definition), even if it is used inside other nested, C-shaped custom blocks in the definition code. Previously it only stopped the nearest encompassing “for” block, now it always stops the block whose definition it is in. I don’t expect this fix to break any existing projects.
* | | | Treat REPORT blocks inside custom command definitions as STOP THIS BLOCK / ↵jmoenig2014-11-171-8/+25
|/ / / | | | | | | | | | | | | | | | | | | IGNORE INPUTS this also enables all existing FINCH blocks and other hardware extensions again, which used the REPORT (HTTP://) pattern
* | | fixed #601jmoenig2014-10-011-2/+11
| | | | | | | | | | | | | | | correctly display symbol for %obj type input slots in the prototype template
* | | fixed #584jmoenig2014-09-301-2/+9
| | |
* | | Mutable upvarsjmoenig2014-09-221-25/+20
|/ / | | | | | | allow upvars to be SET and CHANGEd
* / enable Zombiefication of JS-Functionsjmoenig2014-08-131-3/+4
|/ | | | | you can now redirect “this” in a JS function by binding it to another sprite using the OF block
* export script pic with result bubblejmoenig2014-07-301-2/+52
| | | | hidden option in the shift-context-menu of reporter scripts
* keep reporter-result-bubbles within the enclosing scripting panejmoenig2014-07-291-0/+4
|
* fixed #526jmoenig2014-07-291-2/+10
| | | | thanks, @bromagosa, for reporting it!
* rename "character" to "letter" in delimiter listjmoenig2014-07-181-2/+2
| | | | of “split” block
* Merge pull request #516 from cycomachead/splitJens Mönig2014-07-181-0/+1
|\ | | | | Split Block: Add a character option for clarity
| * Split Block: Add a character option for clarityMichael Ball2014-07-171-0/+1
| | | | | | | | This also allows the split block to be used more easily in a HOF
* | list op fixes, thanks, Brian!jmoenig2014-07-181-1/+1
| |
* | minor format tweaks to "Screenshot" featurejmoenig2014-07-171-1/+1
| |
* | Merge pull request #340 from cs10/extensionsJens Mönig2014-07-171-0/+12
|\ \ | |/ |/| Save stage/pentrails as costume (for animations)
| * Merge branch 'master' into extensionsViraj Mahesh2014-07-131-15/+43
| |\ | | | | | | | | | | | | Conflicts: objects.js
| * | Removed part.canBeEmpty = false; for consistencyViraj Mahesh2014-03-121-1/+0
| | |
| * | Added ability to save pen trailsViraj Mahesh2014-03-101-0/+13
| | | | | | | | | | | | Added dropdown menu to choose what to save
* | | make the color of the %pause symbol more yellowishjmoenig2014-07-111-2/+2
| | |
* | | fixed #490jmoenig2014-07-081-1/+1
| | |
* | | change “delete” behavior in context menusjmoenig2014-07-081-3/+40
| | | | | | | | | | | | | | | to only delete this particular blocks (and reconnect the next block to the previous one)
* | | add "ringify" to every "unringify" menu optionjmoenig2014-07-061-1/+2
| |/ |/|
* | relabelling custom blocks (experimental)jmoenig2014-06-061-0/+9
| |
* | show zebra-coloring when previewing cross-category relabelsjmoenig2014-06-061-0/+1
| |
* | tweaksjmoenig2014-06-061-2/+1
| |
* | enable relabelling blocks across categoriesjmoenig2014-06-061-0/+1
| |
* | enable relabelling blocks with C-Slotsjmoenig2014-06-061-2/+10
| |
* | Merge pull request #459 from galaticalmonkies/graphiceffectsJens Mönig2014-06-041-11/+7
|\ \ | | | | | | Graphic effects
| * | JSLintedyuan2014-06-021-2/+2
| | |
| * | added graphics effects that work for all redraws; incorporated most recent ↵yuan2014-05-271-10/+6
| | | | | | | | | | | | updates to Snap!