Skip to content

Commit 94e3c7a

Browse files
committed
Updated versioning to 2.7.0
1 parent dcbdc52 commit 94e3c7a

File tree

5 files changed

+12
-11
lines changed

5 files changed

+12
-11
lines changed

actionscript/Jplayer.as

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,17 @@
77
* http://opensource.org/licenses/MIT
88
*
99
* Author: Mark J Panaghiston
10-
* Version: 2.6.0
11-
* Date: 2nd April 2014
10+
* Version: 2.7.0
11+
* Date: 1st September 2014
1212
*
1313
* FlashVars expected: (AS3 property of: loaderInfo.parameters)
1414
* id: (URL Encoded: String) Id of jPlayer instance
1515
* vol: (Number) Sets the initial volume
1616
* muted: (Boolean in a String) Sets the initial muted state
1717
* jQuery: (URL Encoded: String) Sets the jQuery var name. Used with: someVar = jQuery.noConflict(true); The someVar name must contain jQuery in it.
1818
*
19-
* Compiled using: Adobe Flex Compiler (mxmlc) Version 4.5.1 build 21328
19+
* Compiled using: Adobe Flex Compiler (mxmlc) Version 4.6
20+
* mxmlc Jplayer.as -static-link-runtime-shared-libraries=true
2021
*/
2122

2223
package {

actionscript/happyworm/jPlayer/JplayerStatus.as

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
* http://opensource.org/licenses/MIT
88
*
99
* Author: Mark J Panaghiston
10-
* Date: 2nd April 2014
10+
* Date: 1st September 2014
1111
*/
1212

1313
package happyworm.jPlayer {
1414
public class JplayerStatus {
1515

16-
public static const VERSION:String = "2.6.0"; // The version of the Flash jPlayer entity.
16+
public static const VERSION:String = "2.7.0"; // The version of the Flash jPlayer entity.
1717

1818
public var volume:Number = 0.5; // Not affected by reset()
1919
public var muted:Boolean = false; // Not affected by reset()

add-on/jplayer.playlist.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
* http://www.opensource.org/licenses/MIT
88
*
99
* Author: Mark J Panaghiston
10-
* Version: 2.3.4
11-
* Date: 9th June 2014
10+
* Version: 2.4.0
11+
* Date: 1st September 2014
1212
*
1313
* Requires:
1414
* - jQuery 1.7.0+

jquery.jplayer/Jplayer.swf

8 Bytes
Binary file not shown.

jquery.jplayer/jquery.jplayer.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
* http://opensource.org/licenses/MIT
88
*
99
* Author: Mark J Panaghiston
10-
* Version: 2.6.4
11-
* Date: 1st August 2014
10+
* Version: 2.7.0
11+
* Date: 1st September 2014
1212
*/
1313

1414
/* Code verified using http://www.jshint.com/ */
@@ -479,8 +479,8 @@
479479
$.jPlayer.prototype = {
480480
count: 0, // Static Variable: Change it via prototype.
481481
version: { // Static Object
482-
script: "2.6.4",
483-
needFlash: "2.6.0",
482+
script: "2.7.0",
483+
needFlash: "2.7.0",
484484
flash: "unknown"
485485
},
486486
options: { // Instanced in $.jPlayer() constructor

0 commit comments

Comments
 (0)