Skip to content

Commit

Permalink
Release 1.5.0
Browse files Browse the repository at this point in the history
IE9 passes all tests, IE8 still has issues
  • Loading branch information
Rycochet committed Mar 18, 2017
1 parent 4184d8e commit 9f4aacd
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 14 deletions.
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Velocity 1.4.3
# Velocity 1.5.0

## Docs
[http://VelocityJS.org](http://velocityjs.org)
Expand All @@ -18,14 +18,14 @@ NPM: https://www.npmjs.com/package/velocity-react
## Quickstart
### Velocity (CDN, choose one of them):
```html
<script src="//cdn.jsdelivr.net/velocity/1.4/velocity.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/velocity/1.4.3/velocity.min.js"></script>
<script src="//cdn.jsdelivr.net/velocity/1.5/velocity.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/velocity/1.5.0/velocity.min.js"></script>
```

### Velocity UI pack (CDN, choose one of them):
```html
<script src="//cdn.jsdelivr.net/velocity/1.4/velocity.ui.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/velocity/1.4.3/velocity.ui.min.js"></script>
<script src="//cdn.jsdelivr.net/velocity/1.5/velocity.ui.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/velocity/1.5.0/velocity.ui.min.js"></script>
```

> Please note that JSDelivr will automatically supply the latest release, while CloudFlare needs to ask for a specific version.
Expand All @@ -38,6 +38,7 @@ _bower:_ `bower install velocity`
Ask on [StackOverflow](http://stackoverflow.com/tags/velocity.js) (make sure you add the `[velocity.js]` and `[javascript]` tags).

## Updates
- **[1.5](https://github.com/julianshapiro/velocity/compare/1.4.0...1.5.0)**: Bugfixes, IE9 compatibility fixes.
- **[1.4](https://github.com/julianshapiro/velocity/compare/1.3.0...1.4.0)**: Pause / Resume (per element or global).<br>
Forcefed string animation (just have matching number spaces) including unit conversions and colour names (ie `background:["rgba(red,0.1)", "blue"]`).
High resolution timers (animations should be slightly smoother).<br>
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "velocity-animate",
"version": "1.4.3",
"version": "1.5.0",
"description": "Accelerated JavaScript animation.",
"keywords": [
"velocity",
Expand Down Expand Up @@ -37,7 +37,7 @@
],
"devDependencies": {
"grunt": "^1.0.1",
"grunt-contrib-jshint": "~1.0.0",
"grunt-contrib-uglify": "~2.0.0"
"grunt-contrib-jshint": "~1.1.0",
"grunt-contrib-uglify": "~2.2.0"
}
}
4 changes: 2 additions & 2 deletions velocity.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! VelocityJS.org (1.4.3). (C) 2014 Julian Shapiro. MIT @license: en.wikipedia.org/wiki/MIT_License */
/*! VelocityJS.org (1.5.0). (C) 2014 Julian Shapiro. MIT @license: en.wikipedia.org/wiki/MIT_License */

/*************************
Velocity jQuery Shim
Expand Down Expand Up @@ -777,7 +777,7 @@
hook: null, /* Defined below. */
/* Velocity-wide animation time remapping for testing purposes. */
mock: false,
version: {major: 1, minor: 4, patch: 3},
version: {major: 1, minor: 5, patch: 0},
/* Set to 1 or 2 (most verbose) to output debug info to console. */
debug: false,
/* Use rAF high resolution timestamp when available */
Expand Down
6 changes: 3 additions & 3 deletions velocity.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion velocity.ui.min.js

Large diffs are not rendered by default.

0 comments on commit 9f4aacd

Please sign in to comment.