| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | merge upstreamdevelopment | Gubolin | 2015-07-23 | 1 | -22/+21 |
| |\ | |||||
| | * | Merge pull request #805 from brollb/master | Jens Mönig | 2015-06-25 | 1 | -1/+1 |
| | |\ | | | | | | | Fixed typo in Process definition | ||||
| | | * | Fixed typo in Process constructor | Brian Broll | 2015-05-19 | 1 | -1/+1 |
| | | | | | | | | | | | | | Changed Process.prototype.contructor to Process.prototype.constructor | ||||
| | * | | Merge pull request #834 from cycomachead/number-functions | Jens Mönig | 2015-06-25 | 1 | -3/+3 |
| | |\ \ | | | | | | | | | Implement log10 and 10^x math functions | ||||
| | | * | | Implement log10 and 10^x math functions | Michael Ball | 2015-06-15 | 1 | -3/+3 |
| | | |/ | |||||
| | * | | update threads.js version | jmoenig | 2015-06-25 | 1 | -7/+6 |
| | | | | |||||
| | * | | Fix Error Handing in the DATE block | Michael Ball | 2015-06-15 | 1 | -15/+15 |
| | |/ | | | | | | | | | | | | | | | | | For some reason the function wasnt properly catching errors and was instead rasing native JS errors. This fixes that bug, so the function will now report nothing when it doesnt know what to do. In addition, moving the variable `dateMap` inside the function reduces a global variable, which shouldnt affect anything other than keeping the code clean. :) | ||||
| | * | return empty string when querying first letter of a list | Jens Mönig | 2015-05-01 | 1 | -1/+4 |
| | | | |||||
| | * | flush Stage>>keysPressed when prompting the user | Jens Mönig | 2015-04-15 | 1 | -1/+2 |
| | | | |||||
| * | | merge upstream | Gubolin | 2015-05-06 | 1 | -1/+5 |
| |\ \ | |||||
| | * | | return empty string when querying first letter of a list | Jens Mönig | 2015-05-01 | 1 | -1/+4 |
| | | | | |||||
| | * | | flush Stage>>keysPressed when prompting the user | Jens Mönig | 2015-04-15 | 1 | -1/+2 |
| | | | | |||||
| * | | | Merge OOP | Gubolin | 2015-04-01 | 1 | -2/+4 |
| |\| | | |||||
| | * | | OOP: integrated and adjusted fix for #752 and #745 | Jens Mönig | 2015-03-25 | 1 | -4/+15 |
| | | | | |||||
| * | | | Merge master | Gubolin | 2015-04-01 | 1 | -4/+13 |
| |\ \ \ | | |/ | |/| | |||||
| | * | | fixed #752 and #745 | Jens Mönig | 2015-03-25 | 1 | -6/+15 |
| | | | | |||||
| * | | | Merge branch 'mobileapp' into development | Gubolin | 2015-03-24 | 1 | -72/+0 |
| |\ \ \ | |||||
| | * | | | Merge branch 'master' into mobileapp | Gubolin | 2015-03-01 | 1 | -2/+2 |
| | |\| | | |||||
| | * | | | remove language and location blocks | Gubolin | 2015-03-01 | 1 | -72/+0 |
| | | | | | |||||
| | * | | | Merge branch 'master' into mobileapp | Gubolin | 2015-01-24 | 1 | -3/+5 |
| | |\ \ \ | |||||
| * | \ \ \ | merge branch p2p | Gubolin | 2015-03-24 | 1 | -8/+12 |
| |\ \ \ \ \ | |||||
| | * | | | | | create one peer per IDEp2p | Gubolin | 2015-03-20 | 1 | -7/+7 |
| | | | | | | | |||||
| | * | | | | | another attempt to fix disconnect issues | Gubolin | 2015-03-08 | 1 | -4/+2 |
| | | | | | | | |||||
| | * | | | | | speed up connections to self | Gubolin | 2015-03-08 | 1 | -2/+8 |
| | | | | | | | |||||
| * | | | | | | merge branch OOP | Gubolin | 2015-03-24 | 1 | -23/+55 |
| |\ \ \ \ \ \ | | |_|_|_|/ | |/| | | | | |||||
| | * | | | | | fix (part of) "show variable" primitive for inheritance | Jens Mönig | 2015-03-23 | 1 | -1/+1 |
| | | | | | | | |||||
| | * | | | | | OOP: Tweaks for scope conflicts when adding / removing vars | Jens Mönig | 2015-03-23 | 1 | -3/+6 |
| | | | | | | | |||||
| | * | | | | | Prototypal inheritance of sprite-local variables | Jens Mönig | 2015-03-21 | 1 | -22/+51 |
| | | |_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (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 p2p into development | Gubolin | 2015-03-08 | 1 | -0/+50 |
| |\ \ \ \ \ | | |/ / / | |/| | | | |||||
| | * | | | | fix localization bug; accept lists as peer message receiver | Gubolin | 2015-03-08 | 1 | -0/+9 |
| | | | | | | |||||
| | * | | | | rewrite peering flow; add peer id blocks | Gubolin | 2015-03-08 | 1 | -0/+41 |
| | |/ / / | |||||
| * | | | | merge | Gubolin | 2015-03-01 | 1 | -2/+2 |
| |\| | | | |||||
| | * | | | fixed #715 | Jens Mönig | 2015-02-28 | 1 | -2/+2 |
| | | |/ | |/| | |||||
| * | | | Merge branch 'master' of ↵ | Gubolin | 2015-01-24 | 1 | -3/+5 |
| |\| | | | | | | | | | | | https://github.com/jmoenig/Snap--Build-Your-Own-Blocks into development | ||||
| | * | | correct threads.js version | jmoenig | 2015-01-12 | 1 | -1/+1 |
| | | | | | | | | | | | | | happy New Year, duh :-) | ||||
| | * | | Speed up messages received by clones | jmoenig | 2015-01-12 | 1 | -3/+5 |
| | | | | | | | | | | | | | | | | Don’t highlight scripts running inside clones (boosts performance), Thanks, @aranlunzer, for the hint! | ||||
| * | | | merge mobileapp | Gubolin | 2015-01-11 | 1 | -4/+122 |
| |\ \ \ | | |/ | |/| | |||||
| | * | | Merge branch 'master' into mobileapp | Gubolin | 2015-01-08 | 1 | -2/+3 |
| | |\| | |||||
| | * | | merge upstream | Gubolin | 2015-01-03 | 1 | -298/+287 |
| | |\ \ | |||||
| | * | | | remove file blocks | Gubolin | 2015-01-03 | 1 | -215/+0 |
| | | | | | |||||
| | * | | | add camera blocks (#562) | Gubolin | 2014-11-01 | 1 | -1/+224 |
| | |\ \ \ | |||||
| | * | | | | improve file block error handling | Gubolin | 2014-09-09 | 1 | -26/+58 |
| | | | | | | |||||
| | * | | | | add file blocks | Gubolin | 2014-09-09 | 1 | -0/+183 |
| | | | | | | |||||
| | * | | | | add notification blocks | Gubolin | 2014-09-08 | 1 | -0/+14 |
| | | | | | | |||||
| | * | | | | Merge branch 'location' into mobileapp | Gubolin | 2014-09-07 | 1 | -0/+72 |
| | |\ \ \ \ | |||||
| | * | | | | | add compass heading and acceleration blocks | Gubolin | 2014-09-07 | 1 | -0/+102 |
| | | | | | | | |||||
| | * | | | | | add vibrate block | Gubolin | 2014-09-06 | 1 | -0/+6 |
| | | | | | | | |||||
| * | | | | | | merge upstream | Gubolin | 2015-01-02 | 1 | -2/+3 |
| |\ \ \ \ \ \ | | |_|_|_|/ | |/| | | | | |||||
| | * | | | | | Let “zombifying” scripts access receivers’ local vars | jmoenig | 2014-12-17 | 1 | -0/+1 |
| | | | | | | | |||||
| | * | | | | | Remove terminated processes from expired clones | jmoenig | 2014-12-17 | 1 | -2/+2 |
| | | |_|_|/ | |/| | | | |||||
