4ecbe8f9 by David LaPalomento

@dmlap use contribflow to manage contributions. closes #275

1 parent 79748809
1 CHANGELOG
2 =========
3
4 ## HEAD (Unreleased)
5 * @dmlap use contribflow to manage contributions ([view](https://github.com/videojs/videojs-contrib-hls/pull/275))
6
7 --------------------
8
9 ## 0.16.0
10 * support preload=none
11
12 ## 0.15.0
13 * expose all ID3 frames and handle tags larger than 188 bytes
14
15 ## 0.14.0
16 * performance improvements for HLSe
17
18 ## 0.13.0
19 * Improved audio/video synchronization
20 * Fixes for live, HLSe, and discontinuities
21 * Rename internal methods to clarify their intended visibility
22
23 ## 0.12.0
24 * support for custom IVs with AES-128 encryption
25
26 ## 0.11.0
27 * embedded ID3 tags are exposed as an in-band metadata track
28
29 ## 0.10.0
30 * optimistic initial bitrate selection
31
32 ## 0.9.0
33 * support segment level AES-128 encryption
34
35 ## 0.8.0
36 * support for EXT-X-DISCONTINUITY
37
38 ## 0.7.0
39 * convert the HLS plugin to a tech
40
41 ## 0.6.0
42 * Refactor playlist loading
43 * Add testing via karma
44
45 ## 0.5.0
46 * cookie-based content protection support (see `withCredentials`)
47
48 ## 0.4.0
49 * Live stream support
50
51 ## 0.3.0
52 * Performance fixes for high-bitrate streams
53
54 ## 0.2.0
55 * Basic playback and adaptive bitrate selection
56
57 ## 0.1.0
58 * Initial release
...@@ -203,6 +203,7 @@ module.exports = function(grunt) { ...@@ -203,6 +203,7 @@ module.exports = function(grunt) {
203 grunt.loadNpmTasks('grunt-open'); 203 grunt.loadNpmTasks('grunt-open');
204 grunt.loadNpmTasks('grunt-concurrent'); 204 grunt.loadNpmTasks('grunt-concurrent');
205 grunt.loadNpmTasks('grunt-contrib-watch'); 205 grunt.loadNpmTasks('grunt-contrib-watch');
206 grunt.loadNpmTasks('chg');
206 207
207 208
208 grunt.registerTask('manifests-to-js', 'Wrap the test fixtures and output' + 209 grunt.registerTask('manifests-to-js', 'Wrap the test fixtures and output' +
......
...@@ -210,24 +210,4 @@ available](http://enable-cors.org/server.html) for popular webservers ...@@ -210,24 +210,4 @@ available](http://enable-cors.org/server.html) for popular webservers
210 and most CDNs should have no trouble turning CORS on for your account. 210 and most CDNs should have no trouble turning CORS on for your account.
211 211
212 ## Release History 212 ## Release History
213 - 0.16.0: support preload=none 213 Check out the [changelog](CHANGELOG.md) for a summary of each release.
214 - 0.15.0: expose all ID3 frames and handle tags larger than 188 bytes
215 - 0.14.0: performance improvements for HLSe
216 - 0.13.0:
217 - Improved audio/video synchronization
218 - Fixes for live, HLSe, and discontinuities
219 - Rename internal methods to clarify their intended visibility
220 - 0.12.0: support for custom IVs with AES-128 encryption
221 - 0.11.0: embedded ID3 tags are exposed as an in-band metadata track
222 - 0.10.0: optimistic initial bitrate selection
223 - 0.9.0: support segment level AES-128 encryption
224 - 0.8.0: support for EXT-X-DISCONTINUITY
225 - 0.7.0: convert the HLS plugin to a tech
226 - 0.6.0:
227 - Refactor playlist loading
228 - Add testing via karma
229 - 0.5.0: cookie-based content protection support (see `withCredentials`)
230 - 0.4.0: Live stream support
231 - 0.3.0: Performance fixes for high-bitrate streams
232 - 0.2.0: Basic playback and adaptive bitrate selection
233 - 0.1.0: Initial release
......
...@@ -18,6 +18,7 @@ ...@@ -18,6 +18,7 @@
18 "videojs-plugin" 18 "videojs-plugin"
19 ], 19 ],
20 "devDependencies": { 20 "devDependencies": {
21 "chg": "^0.2.0",
21 "grunt": "~0.4.1", 22 "grunt": "~0.4.1",
22 "grunt-concurrent": "0.4.3", 23 "grunt-concurrent": "0.4.3",
23 "grunt-contrib-clean": "~0.4.0", 24 "grunt-contrib-clean": "~0.4.0",
......