Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
brainfood
/
videojs-contrib-hls
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
4ecbe8f9
authored
2015-05-21 18:02:28 -0400
by
David LaPalomento
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
@dmlap use contribflow to manage contributions. closes #275
1 parent
79748809
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
61 additions
and
21 deletions
CHANGELOG.md
Gruntfile.js
README.md
package.json
CHANGELOG.md
0 → 100644
View file @
4ecbe8f
CHANGELOG
=========
## HEAD (Unreleased)
*
@dmlap use contribflow to manage contributions (
[
view
](
https://github.com/videojs/videojs-contrib-hls/pull/275
)
)
--------------------
## 0.16.0
*
support preload=none
## 0.15.0
*
expose all ID3 frames and handle tags larger than 188 bytes
## 0.14.0
*
performance improvements for HLSe
## 0.13.0
*
Improved audio/video synchronization
*
Fixes for live, HLSe, and discontinuities
*
Rename internal methods to clarify their intended visibility
## 0.12.0
*
support for custom IVs with AES-128 encryption
## 0.11.0
*
embedded ID3 tags are exposed as an in-band metadata track
## 0.10.0
*
optimistic initial bitrate selection
## 0.9.0
*
support segment level AES-128 encryption
## 0.8.0
*
support for EXT-X-DISCONTINUITY
## 0.7.0
*
convert the HLS plugin to a tech
## 0.6.0
*
Refactor playlist loading
*
Add testing via karma
## 0.5.0
*
cookie-based content protection support (see
`withCredentials`
)
## 0.4.0
*
Live stream support
## 0.3.0
*
Performance fixes for high-bitrate streams
## 0.2.0
*
Basic playback and adaptive bitrate selection
## 0.1.0
*
Initial release
Gruntfile.js
View file @
4ecbe8f
...
...
@@ -203,6 +203,7 @@ module.exports = function(grunt) {
grunt
.
loadNpmTasks
(
'grunt-open'
);
grunt
.
loadNpmTasks
(
'grunt-concurrent'
);
grunt
.
loadNpmTasks
(
'grunt-contrib-watch'
);
grunt
.
loadNpmTasks
(
'chg'
);
grunt
.
registerTask
(
'manifests-to-js'
,
'Wrap the test fixtures and output'
+
...
...
README.md
View file @
4ecbe8f
...
...
@@ -210,24 +210,4 @@ available](http://enable-cors.org/server.html) for popular webservers
and most CDNs should have no trouble turning CORS on for your account.
## Release History
-
0.16.0: support preload=none
-
0.15.0: expose all ID3 frames and handle tags larger than 188 bytes
-
0.14.0: performance improvements for HLSe
-
0.13.0:
-
Improved audio/video synchronization
-
Fixes for live, HLSe, and discontinuities
-
Rename internal methods to clarify their intended visibility
-
0.12.0: support for custom IVs with AES-128 encryption
-
0.11.0: embedded ID3 tags are exposed as an in-band metadata track
-
0.10.0: optimistic initial bitrate selection
-
0.9.0: support segment level AES-128 encryption
-
0.8.0: support for EXT-X-DISCONTINUITY
-
0.7.0: convert the HLS plugin to a tech
-
0.6.0:
-
Refactor playlist loading
-
Add testing via karma
-
0.5.0: cookie-based content protection support (see
`withCredentials`
)
-
0.4.0: Live stream support
-
0.3.0: Performance fixes for high-bitrate streams
-
0.2.0: Basic playback and adaptive bitrate selection
-
0.1.0: Initial release
Check out the
[
changelog
](
CHANGELOG.md
)
for a summary of each release.
...
...
package.json
View file @
4ecbe8f
...
...
@@ -18,6 +18,7 @@
"videojs-plugin"
],
"devDependencies"
:
{
"chg"
:
"^0.2.0"
,
"grunt"
:
"~0.4.1"
,
"grunt-concurrent"
:
"0.4.3"
,
"grunt-contrib-clean"
:
"~0.4.0"
,
...
...
Please
register
or
sign in
to post a comment