diff --git a/CHANGELOG.md b/CHANGELOG.md
new file mode 100644
index 0000000..93a2a8f
--- /dev/null
+++ b/CHANGELOG.md
@@ -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
+
diff --git a/README.md b/README.md
index c83f0a5..9a8c303 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,11 @@
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.
@@ -8,10 +13,40 @@ Look into the documentation of [repository_opencast](https://github.com/Opencast
+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.
diff --git a/version.php b/version.php
index b934d59..df0c55e 100644
--- a/version.php
+++ b/version.php
@@ -19,16 +19,16 @@
*
* @package filter_opencast
* @copyright 2024 Thomas Niedermaier
- * @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,