Skip to content

Commit

Permalink
1.2.0
Browse files Browse the repository at this point in the history
Closes #293. You can now pass a `tween` property for creating arbitrary
tween callbacks via the `progress` function. Refer to
VelocityJS.org/#progress for more information.

Created e/p/o shorthands for elements/properties/options syntactic
sugar arguments syntax. Refer to VelocityJS.org/#arguments to learn
more.

Closes #368. The stop command now has increased targeting for `queue:
false` animations, and is more robust. Refer to VelocityJS.org/#stop
for more.

Closes #396. Easing functions are now passed `opts` and `tweenDelta` so
that custom easing functions can have greater access to animation
parameters. Refer to VelocityJS.org/#easing for more.

Closes #343. Differently-colored border colors don’t throw off
`border-color` animation anymore.

Closes #321. Implements “finish” feature for prematurely stopping
current animations, but having them reach their end values and trigger
their corresponding callbacks. Refer to VelocityJS.org/#finish for more.

Closes #352. Prevents Firefox from throwing an error when animating an
SVG element that isn’t being visually rendered.

Closes #317. Array compacting now happens within ticks to ensure loops
don’t cause arrays to bloat. Thanks so much, @marvelousNinja!

Closes #324. HTML tables and tbody’s now have their proper display
values set by Velocity. Thanks so much to @dtreiter and @okrad!

Closes #371. Looping `backgroundPositionX/Y` to 100% causes a proper
incrementing loop instead of alternation.
  • Loading branch information
julianshapiro authored and Rycochet committed Aug 2, 2020
1 parent ba6f25b commit 242770c
Show file tree
Hide file tree
Showing 6 changed files with 161 additions and 123 deletions.
7 changes: 4 additions & 3 deletions packages/velocity/bower.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "velocity",
"version": "1.1.0",
"version": "1.2.0",
"homepage": "http://velocityjs.org",
"authors": [
{ "name" : "Julian Shapiro",
"homepage" : "http://julian.com/"
}
],
"description": "Accelerated JavaScript animation.",
"main": "./velocity.js",
"main": [ "./velocity.js", "./velocity.ui.js"],
"keywords": [
"animation",
"jquery",
Expand All @@ -23,6 +23,7 @@
"license": "MIT",
"ignore": [
"*.json",
"!/bower.json",
"LICENSE",
"*.md"
],
Expand All @@ -34,4 +35,4 @@
"type" : "git",
"url" : "http://github.com/julianshapiro/velocity.git"
}
}
}
2 changes: 1 addition & 1 deletion packages/velocity/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "velocity-animate",
"version": "1.1.0",
"version": "1.2.0",
"description": "Accelerated JavaScript animation.",
"keywords": [
"velocity",
Expand Down
Loading

0 comments on commit 242770c

Please sign in to comment.