summaryrefslogtreecommitdiff
path: root/threads.js
Commit message (Collapse)AuthorAgeFilesLines
* merge upstreamissue_460Gubolin2014-12-071-295/+293
|\
| * Experimental “ForEach” primitive (hidden in dev mode)jmoenig2014-12-041-1/+21
| |
| * Improve edge-collision detection of default sprite “arrow” shapejmoenig2014-12-031-4/+10
| |
| * Fixed #656jmoenig2014-11-261-17/+20
| | | | | | | | | | | | make sure to always evaluate the “report” block’s input, even if used inside a custom command definition, because hardware extensions (and other reporters with side-effects) rely on it.
| * Full TCO (tail-call-elimination)jmoenig2014-11-251-53/+47
| | | | | | | | now Snap! really *is* Scheme :-)
| * Evaluator optimizationsjmoenig2014-11-251-65/+62
| | | | | | | | reducing the stack size for reporters
| * tail-call-elimination for reporters - experimentjmoenig2014-11-241-0/+28
| | | | | | | | (commented out, under construction)
| * allow recursive reporters to be stopped by userjmoenig2014-11-241-1/+0
| |
| * Merge pull request #619 from cycomachead/splitJens Mönig2014-11-241-4/+8
| |\ | | | | | | Improvements to Split block for whitespace and line options
| | * Merge in recent changes (split block improvements #619)Michael Ball2014-11-211-135/+118
| | |\
| | * | Improvements to Split block for whitespace and lines:Michael Ball2014-10-181-4/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Split by whitespace now uses the built-in definition of whitespace \s This catches all characters definted as whitespace, see below: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp * Split a line by all unicode compliant line breaks. The biggest impact here is that OSX and Windows files will now split the same way. The cr option is still around, but ther's no longer a need for it, IMO.
| * | | fixed #131jmoenig2014-11-241-1/+2
| | | | | | | | | | | | | | | | | | | | and display an error if a reporter or a “called” ring is missing a “report” statement
| * | | Fixed #644jmoenig2014-11-241-1/+1
| | | |
| * | | Fixed #318jmoenig2014-11-241-2/+12
| | | |
| * | | Fix “stop this block” primitive for tail-call-eliminationjmoenig2014-11-231-6/+12
| | | |
| * | | Fix "stop this block"’s lexical awarenessjmoenig2014-11-211-20/+45
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | “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.
| * | integrate translation updatejmoenig2014-11-201-5/+7
| | |
| * | Merge pull request #614 from MMSequeira/masterJens Mönig2014-11-201-9/+9
| |\ \ | | | | | | | | Add missing localizations and add Portuguese translations
| | * | Add localization to number of arguments error and temporary watchersManuel Menezes de Sequeira2014-11-181-5/+5
| | | |
| | * | add localization to unknown variable errorManuel Menezes de Sequeira2014-10-141-4/+4
| | |/
| * | fix ‘line’ option in ‘split’ block for Windows filesjmoenig2014-11-201-1/+1
| | | | | | | | | | | | thanks, @brianharvey!
| * | renamed Process::callback to "onComplete"jmoenig2014-11-201-12/+14
| | |
| * | Merge pull request #641 from bromagosa/contributionJens Mönig2014-11-201-18/+23
| |\ \ | | | | | | | | Added callback to Process
| | * | callback is only executed when the outmost block returns a valueBernat Romagosa2014-11-191-18/+20
| | | |
| | * | Added callback to ProcessBernat Romagosa2014-11-171-7/+10
| | | |
| * | | Fixed #364 avoid “freezing” when calling LAUNCH on empty ringjmoenig2014-11-201-3/+7
| |/ /
| * | Treat REPORT blocks inside custom command definitions as STOP THIS BLOCK / ↵jmoenig2014-11-171-3/+9
| | | | | | | | | | | | | | | | | | | | | IGNORE INPUTS this also enables all existing FINCH blocks and other hardware extensions again, which used the REPORT (HTTP://) pattern
| * | Fix reporting out of nested custom C-shaped blocksjmoenig2014-11-141-103/+67
| |/ | | | | | | | | | | | | | | | | REPORT now reports to the nearest lexical element expecting an input (which may not be the block holding the REPORT statement, this lets you REPORT out of nested FOR loops). STOP THIS BLOCK behaves as it used to. If you’ve been using REPORT instead of STOP THIS BLOCK, you should migrate.
| * workaround for some REPORT / STOP BLOCK issuesjmoenig2014-10-011-2/+4
| | | | | | | | | | | | enables reporting and stopping a bock from within a C-shaped slot in a custom block, but not (yet) out of nested C-shaped custom blocks (but that’s coming up, too)
| * fixed #591jmoenig2014-09-291-3/+6
| | | | | | | | | | fully copy local variables for sprite duplicates and (Scratch-like) clones
| * fixed #174, eliminate UpvarReferences in evaluatorjmoenig2014-09-181-107/+12
| | | | | | | | | | replace UpvarReferences with references to Variable objects, fixes upvar scope issues
| * Refactor variables handlingjmoenig2014-09-171-22/+24
| | | | | | | | | | introducing Variable objects, all functionality stays the same at this time
| * enable Zombiefication of JS-Functionsjmoenig2014-08-131-2/+2
| | | | | | | | | | you can now redirect “this” in a JS function by binding it to another sprite using the OF block
* | improve camera block error handlingGubolin2014-08-171-1/+8
| |
* | add camera streaming predicateGubolin2014-08-171-14/+25
| |
* | add IE camera block supportGubolin2014-08-171-13/+9
| |
* | camera block bugfixesGubolin2014-08-171-6/+4
| |
* | tidy up the camera block codeGubolin2014-08-171-45/+63
| |
* | add motion reportersGubolin2014-08-131-18/+62
| |
* | add simple motion detectionGubolin2014-08-121-1/+81
| |
* | add camera streaming blocks (fix #460)Gubolin2014-08-101-1/+70
|/
* export script pic with result bubblejmoenig2014-07-301-6/+20
| | | | hidden option in the shift-context-menu of reporter scripts
* enable “JS function” block to create custom control structures and HOFsjmoenig2014-07-281-3/+6
|
* JS function tweak, thank, @nathan!jmoenig2014-07-271-2/+2
|
* new “JavaScript function” primitivejmoenig2014-07-251-1/+11
| | | | Go figure…
* Display “empty” Contexts as empty ringsjmoenig2014-07-241-2/+13
| | | | | (e.g. continuations). Brian was complaining about empty continuations “sucking” up the watchers and value bubbles.
* fixed #521jmoenig2014-07-221-2/+7
| | | | | deleting variable watchers by dropping them on the palette resulted in wrong ones to be created when showing them again
* fixed #518jmoenig2014-07-211-3/+5
|
* rename "character" to "letter" in delimiter listjmoenig2014-07-181-2/+2
| | | | of “split” block
* Lint: fix missing semicolonMichael Ball2014-07-171-1/+1
|