Skip to content

Commit

Permalink
1.0.7 tag
Browse files Browse the repository at this point in the history
  • Loading branch information
elbywan committed May 23, 2017
1 parent 5dff894 commit 7c0d2d8
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions CHANGELOG.md
@@ -1,12 +1,12 @@
# Change log - quadtree-lib

## HEAD
## [1.0.7](https://github.com/elbywan/quadtree-lib/compare/1.0.6...1.0.7)

##### Added

- Coffeescript linter (http://www.coffeelint.org/)
- Unobserve elements on removal
- Add onCollision method
- [Coffeescript linter (http://www.coffeelint.org/)](https://github.com/elbywan/quadtree-lib/commit/40e774335d22b0b73a3c5017aa374e10a46f1a0f)
- [Unobserve elements on removal](https://github.com/elbywan/quadtree-lib/commit/f6ecc001c66891ea1f3713b1afcd3e3e19b33be4)
- [Add onCollision method](https://github.com/elbywan/quadtree-lib/commit/ec4f92cb77d3f05dfe9b45bd16c676f18b309559)

## [1.0.6](https://github.com/elbywan/quadtree-lib/compare/1.0.5...1.0.6)

Expand Down
2 changes: 1 addition & 1 deletion bower.json
@@ -1,6 +1,6 @@
{
"name": "quadtree-lib",
"version": "0.1.0",
"version": "1.0.7",
"authors": [
"Julien Elbaz <elbywan@hotmail.com>"
],
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "quadtree-lib",
"version": "1.0.6",
"version": "1.0.7",
"description": "Efficient quadtrees library written in CoffeeScript.",
"author": "Julien Elbaz",
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions src/quadtree.coffee
Expand Up @@ -273,7 +273,7 @@
# The default collision function is a basic bounding box algorithm.
# You can change it by providing a function as a second argument.
#```javascript
#colliding({x: 10, y: 20}, function(element1, element2){
#colliding({x: 10, y: 20}, function(element1, element2) {
# return // Place predicate here //
#})
#```
Expand Down Expand Up @@ -386,7 +386,7 @@

# For each element of the quadtree, performs the `action` function.
#```javascript
#quad.each(function(item){ console.log(item) })
#quad.each(function(item) { console.log(item) })
#```
each: (action) ->
fifo = [@]
Expand Down

0 comments on commit 7c0d2d8

Please sign in to comment.