Skip to content

Commit

Permalink
v1.3.0
Browse files Browse the repository at this point in the history
Besides usual fixes, and performance improvements, we now have:
* Javascript-less initialization!
* Support for gyroscope (where available).
* New event for animation to frame and stop.
* HTML5 responsiveness.
* On-demand initialization option.
* Improved touch detection.
* Data values substitutions for URLs.
* More convenient events interface.
* Multi-row locks.
* ...and that still isn't all!

Check out changelog
  • Loading branch information
pisi committed Nov 5, 2013
1 parent 62e34e6 commit 0415396
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@ For options head to plugin [options on-line reference][options] or view the [ent
[jquery]: http://www.jquery.com/
[mousewheel]: http://github.com/brandonaaron/jquery-mousewheel
[wheel]: http://blog.threedubmedia.com/2008/08/eventspecialwheel.html
[source]: http://github.com/pisi/Reel/raw/v1.3/jquery.reel.js
[min]: http://github.com/pisi/Reel/raw/v1.3/jquery.reel-min.js
[zip]: http://github.com/pisi/Reel/zipball/v1.3
[source]: http://github.com/pisi/Reel/raw/v1.3.0/jquery.reel.js
[min]: http://github.com/pisi/Reel/raw/v1.3.0/jquery.reel-min.js
[zip]: http://github.com/pisi/Reel/zipball/v1.3.0
[iphone-test]: http://www.youtube.com/watch?v=R0hiYmVre6s
[cdn]: http://wiki.github.com/pisi/Reel/cdn
[cdn-bundle]: http://code.vostrel.net/jquery.reel-bundle.js
4 changes: 2 additions & 2 deletions docs/jquery.reel.html
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ <h1>jQuery Reel <em>1.3</em></h1>
*
* jQuery Reel
* http://reel360.org
* Version: 1.3
* Version: 1.3.0
* Updated: 2013-11-04
*
* Requires jQuery 1.6.2 or higher
Expand Down Expand Up @@ -348,7 +348,7 @@ <h3><code>$.reel.version</code></h3>

</div>

<div class="content"><div class='highlight'><pre> version: <span class="string">'1.3'</span>,</pre></div></div>
<div class="content"><div class='highlight'><pre> version: <span class="string">'1.3.0'</span>,</pre></div></div>

</li>

Expand Down
4 changes: 2 additions & 2 deletions jquery.reel-min.js

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

4 changes: 2 additions & 2 deletions jquery.reel.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
*
* jQuery Reel
* http://reel360.org
* Version: 1.3
* Version: 1.3.0
* Updated: 2013-11-04
*
* Requires jQuery 1.6.2 or higher
Expand Down Expand Up @@ -91,7 +91,7 @@
//
// `String` (major.minor.patch), since 1.1
//
version: '1.3',
version: '1.3.0',

// Options
// -------
Expand Down
2 changes: 1 addition & 1 deletion reel.jquery.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "reel",
"version": "1.3",
"version": "1.3.0",
"title": "jQuery Reel",
"description": "`img` tag enhancement for 360° object movies, vistas and panoramas",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion test/unit/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@
ok( $.reel.version.split('.')[0].match(/^[0-9]+$/), 'Major is strictly a number' );
ok( $.reel.version.split('.')[1].match(/^[0-9]+(|-?[a-z][a-z0-9]+)$/), 'Minor may contain additional lowercase letters after an optional dash (like 1.2rc or 1.2-devel)' );

equal( $.reel.version, '1.3rc', 'Current version' );
equal( $.reel.version, '1.3.0', 'Current version' );
});

$.each({
Expand Down

0 comments on commit 0415396

Please sign in to comment.