Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
justinhunt committed May 27, 2022
1 parent d16d8d7 commit c4c18b1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion amd/src/poodll_mediarecorder.js
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down
4 changes: 2 additions & 2 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -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)';

0 comments on commit c4c18b1

Please sign in to comment.