diff --git a/CHANGES.txt b/CHANGES.txt index 17f0f804..9a373148 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,7 +1,8 @@ Change List ========= -Version 3.1.56 (Build 202205XX00) +Version 3.1.57 (Build 2022052700) - Fixed templates for super interactive audio and video (no jqueryui and now no longer resizable) +- Fixed broken JS on M3.6 and M3.7 as a result of build incompatibilities Version 3.1.56 (Build 2022050300) - tweak to audio recording for an odd case where 2 x each 1s of recording get written to the audio file diff --git a/amd/src/poodll_mediarecorder.js b/amd/src/poodll_mediarecorder.js index e250b8ff..348aa22b 100644 --- a/amd/src/poodll_mediarecorder.js +++ b/amd/src/poodll_mediarecorder.js @@ -370,7 +370,7 @@ define(['jquery', 'core/log', 'filter_poodll/utils_amd', var audiodeviceid = ip.useraudiodeviceid.valueOf(); mediaConstraints.audio.deviceId = audiodeviceid ? {exact: audiodeviceid} : undefined; } - + navigator.mediaDevices.getUserMedia({ audio: mediaConstraints.audio, video: false }).then( function(voiceStream) { var tracks = displayStream.getTracks().concat(voiceStream.getAudioTracks()); diff --git a/version.php b/version.php index 349d5030..757e6dc1 100644 --- a/version.php +++ b/version.php @@ -25,9 +25,9 @@ defined('MOODLE_INTERNAL') || die(); -$plugin->version = 2022050300; +$plugin->version = 2022052700; $plugin->requires = 2016052300;//moodle 3.1.0 $plugin->component = 'filter_poodll'; $plugin->maturity = MATURITY_STABLE; -$plugin->release = '3.1.56 (Build 2022050300)'; +$plugin->release = '3.1.57 (Build 2022052700)';