From e0471a2831ce74ccfd2fd2a4b9b0c45114d14cc7 Mon Sep 17 00:00:00 2001 From: Thomas Niedermaier Date: Tue, 3 Dec 2024 12:11:23 +0100 Subject: [PATCH] version.php readme changelog --- CHANGELOG.md | 17 +++++++++++++++ README.md | 61 ++++++++++++++++++++++++++++++++++++++++++++++++---- version.php | 5 +++-- 3 files changed, 77 insertions(+), 6 deletions(-) create mode 100755 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100755 index 0000000..ae9a822 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,17 @@ +CHANGELOG +========= + +4.5.1 (2024-12-03) +------------------ +* [FIXED] #63 Prevent future codechecker issues caused by lang file sort order +* [FIXED] #61 Replace deprecated function with the propose one +* [FIXED] #51 Fix false error notification when there are streams +* [FIXED] #50 Sort lang strings, some basic codestyle fixes, remove duplicated heading +* [FEATURE] #62 Add option "viewed" to the plugin completion options +* [FEATURE] #49 New subtitle support + + +4.5.0 (2024-11-12) +------------------ +Moodle 4.5 compatible version + diff --git a/README.md b/README.md index 8d46408..9aa1b55 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,19 @@ -moodle-mod_opencast -===================== +# moodle-mod_opencast + +This activity can be used to display and view Opencast episodes and series in Moodle. + +This file is part of the mod_opencast plugin for Moodle - + +*Maintainer:* Thomas Niedermaier (Universität Münster), Farbod Zamani (Elan e.V.) + +*Copyright:* 2017 Andreas Wagner, SYNERGY LEARNING, 2024 Thomas Niedermaier, UNIVERSITÄT MÜNSTER + +*License:* [GNU GPL v3 or later](http://www.gnu.org/copyleft/gpl.html) + + +Description +----------- + This activity can be used to display and view Opencast episodes and series in Moodle. Users with respective privileges (in the following called teacher) can specify the ID of an existing Opencast episode/series to add it to their course. An embedded player allows students to watch the videos directly in Moodle. As with every activity, the teachers can restrict the access to the videos for students based on e.g. dates, grades or user profiles. @@ -8,11 +22,50 @@ The Paella player is u The integration with the Opencast Videos block makes the handling and access restriction of Opencast videos very simple. Videos can be uploaded via the block and made available via this activity. -## Documentation ## + +Requirements +------------ + +* tool_opencast +* *Recommended:* block_opencast +* *Optional:* filter_opencast + +Installation +------------ + +* Copy the module code directly to the mod/opencast directory. + +* Log into Moodle as administrator. + +* Open the administration area (http://your-moodle-site/admin) to start the installation + automatically. + + +Admin Settings +-------------- + +View the documentation of the plugin settings [here](https://moodle.docs.opencast.org/#mod/settings/). + + +Documentation +------------- The full documentation of the plugin can be found [here](https://moodle.docs.opencast.org/#mod/about/). -## License ## +Bug Reports / Support +--------------------- + +We try our best to deliver bug-free plugins, but we can not test the plugin for every platform, +database, PHP and Moodle version. If you find any bug please report it on +[GitHub](https://github.com/Opencast-Moodle/moodle-mod_opencast/issues). Please +provide a detailed bug description, including the plugin and Moodle version and, if applicable, a +screenshot. + +You may also file a request for enhancement on GitHub. + + +License +------- This plugin is developed in cooperation with the WWU Münster. diff --git a/version.php b/version.php index 1b6e743..98ec49f 100644 --- a/version.php +++ b/version.php @@ -26,9 +26,10 @@ defined('MOODLE_INTERNAL') || die(); $plugin->component = 'mod_opencast'; -$plugin->release = 'v4.5-r1'; -$plugin->version = 2024111100; +$plugin->release = 'v4.5-r2'; +$plugin->version = 2024111101; $plugin->requires = 2024100700; // Requires Moodle 4.5+. +$plugin->supported = [405, 405]; $plugin->maturity = MATURITY_STABLE; $plugin->dependencies = [ 'tool_opencast' => 2024111100,