From df2bdb1158798ae96c041ccb2f494501863517ea Mon Sep 17 00:00:00 2001 From: n_herr03 <nina.herrmann@uni-muenster.de> Date: Thu, 8 Oct 2020 15:37:30 +0200 Subject: [PATCH] Updated dependencies --- version.php | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/version.php b/version.php index b7dc689..7b9ea63 100644 --- a/version.php +++ b/version.php @@ -19,12 +19,17 @@ * * @package filter * @subpackage opencastfilter - * @copyright 2018 Tamara Gunkel + * @copyright 2018 Tamara Gunkel, 2020 Nina Herrmann * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); +$plugin->maturity = MATURITY_RC; $plugin->version = 2018031902; // The current plugin version (Date: YYYYMMDDXX). $plugin->requires = 2017050500; // Requires this Moodle version. -$plugin->component = 'filter_opencast'; // Full name of the plugin. \ No newline at end of file +$plugin->component = 'filter_opencast'; // Full name of the plugin. +$plugin->dependencies = array( + 'block_opencast' => 2019052900, // Requires Block Opencast and Tool Opencast + 'tool_opencast' => 2018102900, +); \ No newline at end of file -- GitLab