Skip to content

Commit

Permalink
Updated versioning 2.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
thepag committed Nov 27, 2014
1 parent 1255672 commit b8f82f0
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Change Log
All notable changes to this project will be documented in this file.

## 2.9 - Dev Branch Notes
## 2.9.0 - 2014-11-27
### Added
- New Feature: Merged Pull Request [Composer support](https://github.com/happyworm/jPlayer/pull/235) by [thormeier](https://github.com/thormeier).
- New Feature: Merged Pull Request [Add Aurora.js solution](https://github.com/happyworm/jPlayer/pull/246) by [Afterster](https://github.com/Afterster).
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jPlayer",
"version": "2.8.4",
"version": "2.9.0",
"description": "The jQuery HTML5 Audio / Video Library. Allows you to create a media player with a consistent interface and experience across all browsers.",
"author": {
"name": "Mark J Panaghiston",
Expand Down
2 changes: 1 addition & 1 deletion jplayer.jquery.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"html5",
"streaming"
],
"version": "2.8.4",
"version": "2.9.0",
"author": {
"name": "Mark J Panaghiston",
"email": "[email protected]",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jplayer",
"version": "2.8.4",
"version": "2.9.0",
"description": "The jQuery HTML5 Audio / Video Library. Allows you to create a media player with a consistent interface and experience across all browsers.",
"organization": "Happyworm Ltd",
"author": {
Expand Down
4 changes: 2 additions & 2 deletions src/actionscript/happyworm/jPlayer/JplayerStatus.as
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
* http://opensource.org/licenses/MIT
*
* Author: Mark J Panaghiston
* Date: 19th November 2014
* Date: 27th November 2014
*/

package happyworm.jPlayer {
public class JplayerStatus {

public static const VERSION:String = "2.8.3"; // The version of the Flash jPlayer entity.
public static const VERSION:String = "2.9.0"; // The version of the Flash jPlayer entity.

public var volume:Number = 0.5; // Not affected by reset()
public var muted:Boolean = false; // Not affected by reset()
Expand Down
8 changes: 4 additions & 4 deletions src/javascript/jplayer/jquery.jplayer.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
* http://opensource.org/licenses/MIT
*
* Author: Mark J Panaghiston
* Version: 2.8.4
* Date: 24th November 2014
* Version: 2.9.0
* Date: 27th November 2014
*/

/* Support for Zepto 1.0 compiled with optional data module.
Expand Down Expand Up @@ -485,8 +485,8 @@
$.jPlayer.prototype = {
count: 0, // Static Variable: Change it via prototype.
version: { // Static Object
script: "2.8.4",
needFlash: "2.8.3",
script: "2.9.0",
needFlash: "2.9.0",
flash: "unknown"
},
options: { // Instanced in $.jPlayer() constructor
Expand Down

0 comments on commit b8f82f0

Please sign in to comment.