Skip to content

Commit

Permalink
Update to 0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Jim Riecken committed Mar 24, 2014
1 parent a8e58b5 commit 7ef54fd
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 16 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.4.1 (Mar 23, 2014)

- Fix missing `T_VECTORS.push()` (thanks shakiba!) - Fixes #8

## 0.4 (Mar 2, 2014)

- Add `clone` method to `Vector` that returns a new vector with the same coordinates.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ It also supports checking whether a point is inside a circle or polygon.

It's released under the [MIT](http://en.wikipedia.org/wiki/MIT_License) license.

Current version: `0.4`. [Annotated source code](http://jriecken.github.io/sat-js/docs/SAT.html) is available.
Current version: `0.4.1`. [Annotated source code](http://jriecken.github.io/sat-js/docs/SAT.html) is available.

Nicely compresses with the [Google Closure Compiler](https://developers.google.com/closure/compiler/) in **Advanced** mode to about 6KB (2KB gzipped)

Expand Down
4 changes: 2 additions & 2 deletions SAT.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
// Version 0.4 - Copyright 2014 - Jim Riecken <[email protected]>
// Version 0.4.1 - Copyright 2014 - Jim Riecken <[email protected]>
//
// Released under the MIT License - https://github.com/jriecken/sat-js
//
// A simple library for determining intersections of circles and
// polygons using the Separating Axis Theorem.
/** @preserve SAT.js - Version 0.4 - Copyright 2014 - Jim Riecken <[email protected]> - released under the MIT License. https://github.com/jriecken/sat-js */
/** @preserve SAT.js - Version 0.4.1 - Copyright 2014 - Jim Riecken <[email protected]> - released under the MIT License. https://github.com/jriecken/sat-js */

/*global define: false, module: false*/
/*jshint shadow:true, sub:true, forin:true, noarg:true, noempty:true,
Expand Down
26 changes: 13 additions & 13 deletions SAT.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 7ef54fd

Please sign in to comment.