diff --git a/.jshintrc b/.jshintrc index c209d91b91..007cd48f4d 100644 --- a/.jshintrc +++ b/.jshintrc @@ -39,6 +39,7 @@ "start", "stop", "strictEqual", - "test" + "test", + "sinon" ] } diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f92facd4d..008d1adc86 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,16 @@ CHANGELOG * Fixed extra mousemove events on Windows caused by certain apps, not users [[view](https://github.com/videojs/video.js/pull/1068)] * Fixed error due to undefined tech when no source is supported [[view](https://github.com/videojs/video.js/pull/1172)] * Fixed the progress bar not finishing when manual timeupdate events are used [[view](https://github.com/videojs/video.js/pull/1173)] +* Added a more informative and styled fallback message for non-html5 browsers [[view](https://github.com/videojs/video.js/pull/1181)] +* Added the option to provide an array of child components instead of an object [[view](https://github.com/videojs/video.js/pull/1093)] +* Fixed casing on webkitRequestFullscreen [[view](https://github.com/videojs/video.js/pull/1101)] +* Made tap events on mobile less sensitive to touch moves [[view](https://github.com/videojs/video.js/pull/1111)] +* Fixed the default flag for captions/subtitles tracks [[view](https://github.com/videojs/video.js/pull/1153)] +* Fixed compilation failures with LESS v1.7.0 and GRUNT v0.4.4 [[view](https://github.com/videojs/video.js/pull/1180)] +* Added better error handling across the library [[view](https://github.com/videojs/video.js/pull/1197)] +* Updated captions/subtiles file fetching to support cross-origin requests in older IE browsers [[view](https://github.com/videojs/video.js/pull/1095)] +* Added support for playback rate switching [[view](https://github.com/videojs/video.js/pull/1132)] +* Fixed an issue with the loadstart event order that caused the big play button to not hide [[view](https://github.com/videojs/video.js/pull/1209)] -------------------- diff --git a/Gruntfile.js b/Gruntfile.js index 00d046ed1c..31c91eb2a2 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -57,7 +57,7 @@ module.exports = function(grunt) { }, tests: { src: ['build/files/combined.video.js', 'build/compiler/goog.base.js', 'src/js/exports.js', 'test/unit/*.js'], - externs: ['src/js/player.externs.js', 'src/js/media/flash.externs.js', 'test/qunit-externs.js'], + externs: ['src/js/player.externs.js', 'src/js/media/flash.externs.js', 'test/qunit-externs.js', 'test/sinon-externs.js'], dest: 'build/files/test.minified.video.js' } }, diff --git a/build/demo-files/demo.html b/build/demo-files/demo.html index b2b3fa44d6..8093718565 100644 --- a/build/demo-files/demo.html +++ b/build/demo-files/demo.html @@ -25,6 +25,7 @@ +
To view this video please enable JavaScript, and consider upgrading to a web browser that supports HTML5 video