Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/TurtleArt
Commit message (Expand)AuthorAgeFilesLines
...
* | | | add Primitives for the 'and' and 'or' blocksMarion2013-08-072-5/+6
* | | | add a Primitive for the 'not' blockMarion2013-08-071-1/+1
* | | | add Primitives for the 'pen state', 'while', and 'until' blocksMarion2013-08-072-7/+31
* | | | introduce the call_me attr to Primitives, it's parallel to export_meMarion2013-08-042-43/+58
* | | | add Primitives for the 'xcor' and 'ycor' blocksMarion2013-08-034-26/+65
* | | | add more standard operators (unary and binary), handle the uniformlyMarion2013-08-031-11/+93
* | | | replace float.__neg__ with Primitive.minus, which can also be used for 2 argsMarion2013-08-032-5/+17
* | | | treat float.__neg__ (minus sign) as a unary operator taking any argumentMarion2013-08-031-4/+2
* | | | add Primitives for the 'start fill' and 'end fill' blocksMarion2013-08-031-2/+2
* | | | add Primitives for the 'set pen size' block and the 'pen size' value blockMarion2013-08-031-3/+3
* | | | add Primitives for the 'pen up' and 'pen down' commandsMarion2013-08-033-33/+48
* | | | add Primitive for the 'heading' value blockMarion2013-08-031-4/+1
* | | | add Primitives for the 'color', 'shade', and 'gray' value blocksMarion2013-08-031-10/+3
* | | | add Primitives for the 'set shade' and 'set gray' blockMarion2013-08-031-4/+4
* | | | add Primitive for the 'set color' blockMarion2013-08-031-5/+4
* | | | add Primitive object for the 'fillscreen' blockMarion2013-08-032-5/+11
* | | | make finding tops of block stacks more efficient in taexportpythonMarion2013-08-021-7/+12
* | | | make the check for duplicate argument indices slightly more efficientMarion2013-08-021-2/+7
* | | | check for duplicate argument indices in the slot wrappers of PrimitivesMarion2013-08-021-2/+18
* | | | Merge branch 'master' of git://git.sugarlabs.org/turtleart/mainline into prim...Marion2013-08-021-0/+8
|\ \ \ \ | | |/ / | |/| |
| * | | fix problems with non-interactive modeWalter Bender2013-07-251-0/+8
* | | | export tool makes exported code use talogo's execution engineMarion2013-08-021-2/+9
* | | | when running exported code, show errors in the status barMarion2013-08-021-1/+4
* | | | when running exported code, print the traceback of errors to stderrMarion2013-08-021-8/+16
* | | | highlight faulty block if an error occurs during exportMarion2013-08-012-10/+18
* | | | enable i18n for the new error messagesMarion2013-08-012-8/+10
* | | | show a nice error message if the program contains non-exportable blocksMarion2013-08-012-20/+28
* | | | make 'clean' block fully exportable and make exported code runMarion2013-07-313-11/+32
* | | | add Primitive object for 'clean' blockMarion2013-07-314-5/+33
* | | | enable the execution engine of talogo to be used by exported codeMarion2013-07-301-7/+10
* | | | convert Primitive.make_tuple to the AST of a tupleMarion2013-07-291-1/+10
* | | | treat float.__neg__ as the minus sign when converting it to an ASTMarion2013-07-292-5/+25
* | | | Primitive for the 'set heading' block; fix constant arguments to PrimitivesMarion2013-07-292-8/+15
* | | | remove unused primitive methods from tabasicsMarion2013-07-261-19/+0
* | | | Primitive for 'arc' blockMarion2013-07-261-2/+7
* | | | Merge branch 'forever-block' into primitive-classMarion2013-07-263-42/+147
|\ \ \ \
| * | | | fix execution of loop blocksMarion2013-07-261-1/+1
| * | | | make 'forever' block exportableMarion2013-07-263-18/+75
| * | | | fix 'forever' blockMarion2013-07-262-10/+5
| * | | | introduce constant arguments to the Primitive classMarion2013-07-252-16/+61
| * | | | Merge branch 'master' into forever-blockMarion2013-07-255-61/+67
| |\ \ \ \ | | | |_|/ | | |/| |
| * | | | Primitive object for 'forever' blockMarion2013-07-242-3/+11
* | | | | remove accidentally inserted '31' at the beginning of tacanvas.pyMarion2013-07-251-1/+1
* | | | | Merge branch 'master' into primitive-classMarion2013-07-245-61/+67
|\ \ \ \ \ | |/ / / / |/| / / / | |/ / /
| * | | HiddenBlock inherits from Block, which has new utility methods for value blocksMarion2013-07-242-27/+45
| |/ /
| * | add restore_state method used by some plugins, confusionsWalter Bender2013-07-231-0/+1
| * | fix more problems with saving to svgWalter Bender2013-07-233-56/+58
| * | use /tmp to set up temporary svg surface when running from GNOMEWalter Bender2013-07-221-2/+2
* | | define multiply-used Primitives only onceMarion2013-07-231-14/+15
* | | define some Primitives as not exportable when they are createdMarion2013-07-233-14/+36