Skip to content

Commit

Permalink
version.php, changelog, readme
Browse files Browse the repository at this point in the history
  • Loading branch information
bluetom committed Dec 13, 2024
1 parent 2c12724 commit 3ade3f8
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 4 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
CHANGELOG
=========

4.5.1 (2024-12-13)
------------------
* [FEATURE] #52 Reintroduce LTI authentication feature


4.5.0 (2024-11-12)
------------------
Moodle 4.5 compatible version

37 changes: 36 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,52 @@
moodle-filter_opencast
=====================
The opencast filter can be used to embed opencast videos.
The opencast filter can be used to embed opencast videos in Moodle.
Mainly it is used in combination with the opencast repository plugin to play videos in course text fields.


Description
-----------
The filter takes the HTML pasted by the opencast repository and replaces it by an iframe, which loads the [Paella Player 7](https://paellaplayer.upv.es/) with the respective opencast event.
The filter itself has no influence on the embedded content, but simply takes the information created by the repository.
Look into the documentation of [repository_opencast](https://github.com/Opencast-Moodle/moodle-repository_opencast) for details on that.

<img width="800" alt="Filter opencast demonstration" src="https://user-images.githubusercontent.com/28386141/137904963-968fd449-602d-40c8-99ad-c56a40fd03f0.png">


Installation
------------

* Copy the module code directly to the filter/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/#filter/settings/).


## Documentation ##

The full documentation of the plugin can be found [here](https://moodle.docs.opencast.org/#filter/about/).


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-filter_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.
Expand Down
6 changes: 3 additions & 3 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@
*
* @package filter_opencast
* @copyright 2024 Thomas Niedermaier <[email protected]>
* @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->component = 'filter_opencast';
$plugin->release = 'v4.5-r1';
$plugin->version = 2024111100;
$plugin->release = 'v4.5-r3';
$plugin->version = 2024111102;
$plugin->requires = 2024100700; // Requires Moodle 4.5+.
$plugin->supported = [405, 405];
$plugin->maturity = MATURITY_STABLE;
$plugin->dependencies = [
'tool_opencast' => 2024111100,
Expand Down

0 comments on commit 3ade3f8

Please sign in to comment.