Skip to content

Commit

Permalink
bump required videojs-wavesurfer version to 2.6.0 (#294)
Browse files Browse the repository at this point in the history
* Bump required videojs-wavesurfer version to 2.6.0 for microphone support in the MS Edge browser

* add changelog entry

* update dev dependencies

* include wavesurfer.js version nr in examples
  • Loading branch information
thijstriemstra authored Oct 4, 2018
1 parent b237b26 commit 313ff11
Show file tree
Hide file tree
Showing 13 changed files with 73 additions and 52 deletions.
2 changes: 2 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ videojs-record changelog
- Add support for screen capture (#289)
- Add `msDisplayMax` option to control display of time format (#188)
- Documentation: add Angular and Vue.js wiki pages (#274, #283)
- Bump required videojs-wavesurfer version to 2.6.0 for microphone support
- in the MS Edge browser (#294)

**Backwards-incompatible changes** (when upgrading from a previous version):

Expand Down
5 changes: 3 additions & 2 deletions examples/audio-only.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,9 @@
// print version information at startup
var msg = 'Using video.js ' + videojs.VERSION +
' with videojs-record ' + videojs.getPluginVersion('record') +
' + videojs-wavesurfer ' + videojs.getPluginVersion('wavesurfer') +
' and recordrtc ' + RecordRTC.version;
', videojs-wavesurfer ' + videojs.getPluginVersion('wavesurfer') +
', wavesurfer.js ' + WaveSurfer.VERSION + ' and recordrtc ' +
RecordRTC.version;
videojs.log(msg);
});

Expand Down
5 changes: 3 additions & 2 deletions examples/change-audio-input.html
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,9 @@
// print version information at startup
var msg = 'Using video.js ' + videojs.VERSION +
' with videojs-record ' + videojs.getPluginVersion('record') +
' + videojs-wavesurfer' + videojs.getPluginVersion('wavesurfer') +
' and recordrtc ' + RecordRTC.version;
', videojs-wavesurfer ' + videojs.getPluginVersion('wavesurfer') +
', wavesurfer.js ' + WaveSurfer.VERSION + ' and recordrtc ' +
RecordRTC.version;
videojs.log(msg);

// enumerate devices at startup
Expand Down
5 changes: 3 additions & 2 deletions examples/change-audio-output.html
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,9 @@
// print version information at startup
var msg = 'Using video.js ' + videojs.VERSION +
' with videojs-record ' + videojs.getPluginVersion('record') +
' + videojs-wavesurfer' + videojs.getPluginVersion('wavesurfer') +
' and recordrtc ' + RecordRTC.version;
', videojs-wavesurfer ' + videojs.getPluginVersion('wavesurfer') +
', wavesurfer.js ' + WaveSurfer.VERSION + ' and recordrtc ' +
RecordRTC.version;
videojs.log(msg);

// enumerate devices at startup
Expand Down
5 changes: 3 additions & 2 deletions examples/enumerate-devices.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,9 @@
// print version information at startup
var msg = 'Using video.js ' + videojs.VERSION +
' with videojs-record ' + videojs.getPluginVersion('record') +
' + videojs-wavesurfer' + videojs.getPluginVersion('wavesurfer') +
' and recordrtc ' + RecordRTC.version;
', videojs-wavesurfer ' + videojs.getPluginVersion('wavesurfer') +
', wavesurfer.js ' + WaveSurfer.VERSION + ' and recordrtc ' +
RecordRTC.version;
videojs.log(msg);
});

Expand Down
3 changes: 2 additions & 1 deletion examples/plugins/audio-only-mp3.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@
// print version information at startup
var msg = 'Using video.js ' + videojs.VERSION +
' with videojs-record ' + videojs.getPluginVersion('record') +
' and videojs-wavesurfer ' + videojs.getPluginVersion('wavesurfer');
', videojs-wavesurfer ' + videojs.getPluginVersion('wavesurfer') +
' and wavesurfer.js ' + WaveSurfer.VERSION;
videojs.log(msg);
});

Expand Down
3 changes: 2 additions & 1 deletion examples/plugins/audio-only-ogg.html
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@
// print version information at startup
var msg = 'Using video.js ' + videojs.VERSION +
' with videojs-record ' + videojs.getPluginVersion('record') +
' and videojs-wavesurfer ' + videojs.getPluginVersion('wavesurfer');
', videojs-wavesurfer ' + videojs.getPluginVersion('wavesurfer') +
' and wavesurfer.js ' + WaveSurfer.VERSION;
videojs.log(msg);
});

Expand Down
3 changes: 2 additions & 1 deletion examples/plugins/audio-only-opus.html
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@
// print version information at startup
var msg = 'Using video.js ' + videojs.VERSION +
' with videojs-record ' + videojs.getPluginVersion('record') +
' and videojs-wavesurfer ' + videojs.getPluginVersion('wavesurfer');
', videojs-wavesurfer ' + videojs.getPluginVersion('wavesurfer') +
' and wavesurfer.js ' + WaveSurfer.VERSION;
videojs.log(msg);
});

Expand Down
3 changes: 2 additions & 1 deletion examples/plugins/audio-only-recorderjs.html
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@
// print version information at startup
var msg = 'Using video.js ' + videojs.VERSION +
' with videojs-record ' + videojs.getPluginVersion('record') +
' and videojs-wavesurfer ' + videojs.getPluginVersion('wavesurfer');
', videojs-wavesurfer ' + videojs.getPluginVersion('wavesurfer') +
' and wavesurfer.js ' + WaveSurfer.VERSION;
videojs.log(msg);
});

Expand Down
5 changes: 3 additions & 2 deletions examples/upload/fine-uploader.html
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,9 @@
// print version information at startup
var msg = 'Using video.js ' + videojs.VERSION +
' with videojs-record ' + videojs.getPluginVersion('record') +
' and videojs-wavesurfer ' + videojs.getPluginVersion('wavesurfer') +
' and recordrtc ' + RecordRTC.version;
', videojs-wavesurfer ' + videojs.getPluginVersion('wavesurfer') +
', wavesurfer.js ' + WaveSurfer.VERSION + ' and recordrtc ' +
RecordRTC.version;
videojs.log(msg);
});

Expand Down
5 changes: 3 additions & 2 deletions examples/upload/jquery.fileupload.html
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,9 @@
// print version information at startup
var msg = 'Using video.js ' + videojs.VERSION +
' with videojs-record ' + videojs.getPluginVersion('record') +
' and videojs-wavesurfer ' + videojs.getPluginVersion('wavesurfer') +
' and recordrtc ' + RecordRTC.version;
', videojs-wavesurfer ' + videojs.getPluginVersion('wavesurfer') +
', wavesurfer.js ' + WaveSurfer.VERSION + ' and recordrtc ' +
RecordRTC.version;
videojs.log(msg);
});

Expand Down
77 changes: 43 additions & 34 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
"dependencies": {
"recordrtc": ">=5.4.7",
"video.js": ">=6.2.7",
"videojs-wavesurfer": ">=2.5.0",
"videojs-wavesurfer": ">=2.6.0",
"webrtc-adapter": ">=6.2.1"
},
"devDependencies": {
Expand All @@ -79,7 +79,7 @@
"babel-plugin-add-module-exports": "^1.0.0",
"babel-plugin-istanbul": "^5.0.1",
"blueimp-file-upload": ">=9.19.1",
"browserslist": "^4.1.1",
"browserslist": "^4.1.2",
"colors": "^1.3.2",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^1.0.0",
Expand Down

0 comments on commit 313ff11

Please sign in to comment.