Skip to content
This repository has been archived by the owner on Aug 22, 2021. It is now read-only.

Commit

Permalink
Update version and dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Afterster committed Jul 9, 2015
1 parent 0953660 commit 99d4c0d
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 14 deletions.
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,20 @@ Supported content type will depends on your VLC installation, but basically it s

As this cannot be determined in advance, this plug-in always return success on file type support test. It's why you should always put it at the end of techOrder property.

## Build
Building the plug-in is optional, you can directly use /lib/videojs-vlc.js file but it is good practice to be sure your environment is well configured.
It will also simplify your test as you will be able to use /example.html sample file directly after build.

* Install npm (node.js)
* Install grunt: `npm install -g grunt`
* Install project dependencies: `npm install`
* Run grunt : `grunt`

## Release History

- 0.1.0: Initial release
- 0.2.0
- Fix poster image
- Fix fullscreen
- Fix autoplay
- 0.1.0
- Initial release
31 changes: 18 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
{
"name": "videojs-vlc",
"version": "0.1.0",
"version": "0.2.0",
"author": "Afterster",
"description": "Video.js VLC Tech plug-in",
"license": "Apache-2.0",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/Afterster/videojs-vlc/issues"
},
"homepage": "https://github.com/Afterster/videojs-vlc",
"keywords": [
"videojs",
"vlc",
Expand All @@ -12,22 +17,22 @@
"player"
],
"repository" : {
"type": "git",
"url": "https://github.com/Afterster/videojs-vlc.git"
"type": "git",
"url": "https://github.com/Afterster/videojs-vlc.git"
},
"dependencies": {},
"devDependencies": {
"grunt-contrib-clean": "^0.4",
"grunt-contrib-concat": "^0.3",
"grunt-contrib-jshint": "^0.6",
"grunt-contrib-qunit": "^0.2",
"grunt-contrib-uglify": "^0.2",
"grunt-contrib-watch": "^0.4",

"video.js": "^4.5",
"qunitjs": "^1.12"
"grunt": "^0.4",
"grunt-contrib-clean": "^0.6",
"grunt-contrib-concat": "^0.5",
"grunt-contrib-jshint": "^0.11",
"grunt-contrib-qunit": "^0.7",
"grunt-contrib-uglify": "^0.9",
"grunt-contrib-watch": "^0.6",
"video.js": "^4.12",
"qunitjs": "^1.18"
},
"peerDependencies": {
"video.js": "^4.5"
"video.js": "^4.12"
}
}

0 comments on commit 99d4c0d

Please sign in to comment.