Skip to content

Commit

Permalink
Merge 9947319 into a6cc75b
Browse files Browse the repository at this point in the history
  • Loading branch information
karawitan committed Apr 17, 2019
2 parents a6cc75b + 9947319 commit 1e35a70
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
10 changes: 10 additions & 0 deletions changelog.md
@@ -1,5 +1,15 @@
### Version History


*4.2.10 (2019/04/17)*

* Fixed don't swallow first 2% of the video in time slider (https://github.com/mediaelement/mediaelement/pull/2582) @jomo @coveralls
* Fixed Chrome to play vimeo videos (https://github.com/mediaelement/mediaelement/pull/2622) @mmusket @coveralls @homerjam
* Fixed Update volume.js (https://github.com/mediaelement/mediaelement/pull/2530) - Implementing a slight change to improve accessibility and compliance with WCAG 2.0 success criteria 4.1.1 and 4.1.2 @vavroom @coveralls
* Fixed the forceLive always adding "Live Broadcast" memory leak (https://github.com/mediaelement/mediaelement/pull/2589) @joshdvir @coveralls @Qoraiche
* Update resources.md (https://github.com/mediaelement/mediaelement/pull/2565) - Add video snapshot plugin resource @Qoraiche @coveralls
* Fixed typo (https://github.com/mediaelement/mediaelement/pull/2540) @Qoraiche @coveralls

*4.2.9 (2018/03/27)*

* Fixed typo in documentation (https://github.com/mediaelement/mediaelement/pull/2512) @moagggi
Expand Down
4 changes: 2 additions & 2 deletions package.js
@@ -1,7 +1,7 @@
Package.describe({
name: 'johndyer:mediaelement',
summary: '*Official* MediaElement.js: <video> and <audio> made easy. One file. Any browser. Same UI.',
version: '4.2.9',
version: '4.2.10',
git: 'https://github.com/mediaelement/mediaelement'
});

Expand Down Expand Up @@ -58,4 +58,4 @@ Package.onUse(function(api) {
'build/mediaelementplayer-legacy.css'
], 'client');

});
});
2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "mediaelement",
"license": "MIT",
"version": "4.2.9",
"version": "4.2.10",
"main": "full.js",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions src/js/core/mejs.js
Expand Up @@ -6,7 +6,7 @@ import window from 'global/window';
const mejs = {};

// version number
mejs.version = '4.2.9';
mejs.version = '4.2.10';

// Basic HTML5 settings
mejs.html5media = {
Expand Down Expand Up @@ -52,4 +52,4 @@ mejs.html5media = {

window.mejs = mejs;

export default mejs;
export default mejs;

0 comments on commit 1e35a70

Please sign in to comment.