Skip to content

Commit

Permalink
version.php readme changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
bluetom committed Dec 3, 2024
1 parent aaf8358 commit e0471a2
Show file tree
Hide file tree
Showing 3 changed files with 77 additions and 6 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

61 changes: 57 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -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 - <http://moodle.org/>

*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.
Expand All @@ -8,11 +22,50 @@ The <a href="https://github.com/polimediaupv/paella-core">Paella player</a> is u
The integration with the <a href="https://moodle.org/plugins/block_opencast">Opencast Videos</a> 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.

Expand Down
5 changes: 3 additions & 2 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit e0471a2

Please sign in to comment.