Skip to content

Commit

Permalink
bump version to v2.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kikito committed Sep 18, 2017
1 parent d4d8926 commit c1c12ec
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
anim8 changelog
===============

### v2.3.1

* Fixes bug where gotoFrame sometimes ended up on the wrong frame, which produced flickering (#19, #28)

### v2.3.0

* Adds support for shearing (kx, ky parameters when drawing)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ Flips an animation horizontally (left goes to right and viceversa). This means t

Note that this method does not create a new animation. If you want to create a new one, use the `clone` method.

This method returns the animation, so you can do things like `local a = anim8.newAnimation(g(1,'1-10'), 0.1):flipH()`
This method returns the animation, so you can do things like `local a = anim8.newAnimation(g(1,'1-10'), 0.1):flipH()` or `local b = a:clone():flipV()`.

`animation:flipV()`

Expand Down
2 changes: 1 addition & 1 deletion anim8.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
local anim8 = {
_VERSION = 'anim8 v2.3.0',
_VERSION = 'anim8 v2.3.1',
_DESCRIPTION = 'An animation library for LÖVE',
_URL = 'https://github.com/kikito/anim8',
_LICENSE = [[
Expand Down

0 comments on commit c1c12ec

Please sign in to comment.