Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
.svn
node_modules
jquery-turtle.min.js
2 changes: 0 additions & 2 deletions BUILD.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,3 @@ Testing
Unit tests use a headless webkit. When setting it up on a system without
GUI, you may find that you need to install font support. On debian.
"apt-get libfontconfig1" provides enough font support.


2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ jQuery-turtle version 2.0

LICENSE (MIT):

Copyright (c) 2013 Pencil Code Foundation, Google, and other contributors.
Copyright (c) 2013 Pencil Code Foundation, Google Inc., and other contributors.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
jQuery-turtle
=============

version 2.0.8
version 2.0.9

jQuery-turtle is a jQuery plugin for turtle graphics.

Expand Down Expand Up @@ -254,7 +254,7 @@ the functions:
<pre>
eval $.turtle() # Create the default turtle and global functions.

defaultspeed Infinity
speed Infinity
write "Catch blue before red gets you."
bk 100
r = hatch red
Expand All @@ -264,7 +264,7 @@ tick 10, ->
fd 6
r.turnto turtle
r.fd 4
b.turnto bearing b
b.turnto direction b
b.fd 3
if b.touches(turtle)
write "You win!"
Expand Down Expand Up @@ -331,7 +331,7 @@ element.
License (MIT)
-------------

Copyright (c) 2014 Pencil Code, Google, and other contributors
Copyright (c) 2014 Pencil Code, Google Inc., and other contributors

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "jquery-turtle",
"main": "jquery-turtle.js",
"ignore": [],
"version": "2.0.8",
"version": "2.0.9",
"description": "Turtle graphics plugin for jQuery.",
"devDependencies": {
"jquery": "latest",
Expand Down
Loading