Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
justinhunt committed May 22, 2024
1 parent 1af93a3 commit 80e9133
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 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.80
Version 3.1.80 (Build 2024052200)
- Tweaks to External API calls
- Multi audio and video icon fixes

Version 3.1.79 (Build 2024042301)
- Removed check-for-duplicates in adhoc_s3_move task, as it was not working as intended, and causing files to not be retrieved
Expand Down
6 changes: 6 additions & 0 deletions classes/external.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,16 @@
*/

global $CFG;

//This is for pre M4.0 and post M4.0 to work on same code base
require_once($CFG->libdir . '/externallib.php');

/*
* This is for M4.0 and later
use core_external\external_api;
use core_external\external_function_parameters;
use core_external\external_value;
*/

use filter_poodll\poodlltools;
use filter_poodll\constants;
Expand Down
4 changes: 2 additions & 2 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@

defined('MOODLE_INTERNAL') || die();

$plugin->version = 2024042301;
$plugin->version = 2024052200;
$plugin->requires = 2016052300;//moodle 3.1.0
$plugin->component = 'filter_poodll';
$plugin->maturity = MATURITY_STABLE;
$plugin->release = '3.1.79 (Build 2024042301)';
$plugin->release = '3.1.80 (Build 2024052200)';

0 comments on commit 80e9133

Please sign in to comment.