summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merge remote-tracking branch 'origin/location' into developmentGubolin2014-12-074-1/+109
|\
| * add geolocation blocklocationGubolin2014-08-183-0/+87
| |
| * add language blocksGubolin2014-08-173-1/+22
| |
* | Merge branch 'issue_458' into developmentGubolin2014-12-071-1/+11
|\ \
| * | allow only numbers to be reported as number (fix #458)issue_458Gubolin2014-10-041-1/+11
| | |
* | | Merge branch 'issue_190' into developmentGubolin2014-12-071-1/+2
|\ \ \
| * | | show an error message if project cannot be loaded (fix #190)issue_190Gubolin2014-10-041-1/+2
| | | |
* | | | Merge branch 'issue_209' into developmentGubolin2014-12-071-3/+1
|\ \ \ \
| * | | | don't leave a mark on pen down but on MOVE 0issue_209Gubolin2014-10-042-4/+1
| | | | |
| * | | | leave a mark on pen down (fix #209)Gubolin2014-10-041-0/+1
| |/ / /
* | | | Merge branch 'anykey_issue387' into developmentGubolin2014-12-072-3/+44
|\ \ \ \
| * | | | fix typoGubolin2014-11-041-1/+1
| | | | |
| * | | | remove global LAST KEY and add a sensing reporter insteadGubolin2014-11-041-16/+16
| | | | |
| * | | | add global LAST KEY PRESSED variableGubolin2014-11-031-1/+28
| | | | |
| * | | | add NUMBER KEY to key hat blockGubolin2014-11-032-0/+5
| | | | |
| * | | | add ANY KEY to key hat block (fix #387)Gubolin2014-11-032-1/+10
| | | | |
* | | | | Merge branch 'errorHandling_issue533' into developmentGubolin2014-12-071-0/+21
|\ \ \ \ \
| * | | | | don't throw an error if a list is not a ListerrorHandling_issue533Gubolin2014-11-041-2/+0
| | | | | |
| * | | | | throw an non-js error if "list" is not List (fix #533)Gubolin2014-11-031-0/+23
| |/ / / /
* | | | | Merge branch 'issue_204' into developmentGubolin2014-12-074-1/+10
|\ \ \ \ \
| * | | | | update Snapin8rissue_204Gubolin2014-12-071-0/+0
| | | | | |
| * | | | | integrate Snapin8r into Snap!Gubolin2014-08-033-1/+7
| | | | | |
| * | | | | add Snapin8r as submoduleGubolin2014-08-032-0/+3
| | | | | |
* | | | | | Fixed #668jmoenig2014-12-062-1/+9
| | | | | |
* | | | | | Avoid auto-scaling artefacts in Safari on retina displaysjmoenig2014-12-052-2/+8
| | | | | | | | | | | | | | | | | | | | | | | | (resulting in “traces” when dragging items)
* | | | | | fix typo & update historyjmoenig2014-12-042-2/+7
| | | | | |
* | | | | | Merge pull request #665 from cycomachead/cloud-defaultJens Mönig2014-12-041-1/+4
|\ \ \ \ \ \ | | | | | | | | | | | | | | Really fix setting the cloud as default save location when logged in
| * | | | | | Really fix setting the cloud as default save location when logged inMichael Ball2014-12-041-1/+4
| | | | | | |
* | | | | | | Experimental “ForEach” primitive (hidden in dev mode)jmoenig2014-12-042-2/+33
| | | | | | |
* | | | | | | Improve edge-collision detection of default sprite “arrow” shapejmoenig2014-12-033-7/+21
| | | | | | |
* | | | | | | Cache actual bounding box of the Pen arrow shapejmoenig2014-12-031-6/+13
|/ / / / / / | | | | | | | | | | | | | | | | | | for improved collision detection
* | | | | | New Kannada Translation, by Vinayakumar Rjmoenig2014-12-023-1/+1290
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Yay! Thanks for this important contribution, Vinayakumar R. Snap is now available in 25 languages!
* | | | | | updated historyjmoenig2014-12-012-1/+3
| | | | | |
* | | | | | Merge pull request #661 from cycomachead/cloud-defaultJens Mönig2014-12-011-4/+4
|\ \ \ \ \ \ | | | | | | | | | | | | | | Fix to set SnapCloud variable before the IDE morph is built.
| * | | | | | Fix to set SnapCloud variable before the IDE morph is built.Michael Ball2014-11-301-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This makes it so that #627 works as intended, correctly fixing #502
* | | | | | | Merge pull request #658 from cycomachead/faviconJens Mönig2014-12-011-0/+0
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | make the new favicon transparent
| * | | | | | | make the new favicon transparentMichael Ball2014-11-271-0/+0
| |/ / / / / /
* / / / / / / Don't show hidden elements in the project thumbnailjmoenig2014-12-012-2/+6
|/ / / / / /
* | | | | | Fixed #656jmoenig2014-11-262-17/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-252-53/+48
| | | | | | | | | | | | | | | | | | | | | | | | now Snap! really *is* Scheme :-)
* | | | | | Evaluator optimizationsjmoenig2014-11-252-66/+67
| | | | | | | | | | | | | | | | | | | | | | | | reducing the stack size for reporters
* | | | | | tail-call-elimination for reporters - experimentjmoenig2014-11-242-0/+29
| | | | | | | | | | | | | | | | | | | | | | | | (commented out, under construction)
* | | | | | allow recursive reporters to be stopped by userjmoenig2014-11-241-1/+0
| | | | | |
* | | | | | updated historyjmoenig2014-11-241-0/+2
| | | | | |
* | | | | | 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-2110-176/+220
| |\ \ \ \ \ \
| * | | | | | | 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.
* | | | | | | Merge pull request #652 from cycomachead/favJens Mönig2014-11-242-2/+2
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Add a new Favicon to Snap! (Clearer Lambda)
| * | | | | | | Add a new Favicon to Snap! (Clearer Lambda)Michael Ball2014-11-212-2/+2
| | |/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | This is essentially the same icon (lambda, yellow w/ brown border) but newly rendered at 64, 32, 24 and 16px for the best resolution on all platforms.
* | | | | | | fixed #131jmoenig2014-11-242-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | and display an error if a reporter or a “called” ring is missing a “report” statement