Skip to content

Moodle 405 stable 4.5.3 #59

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jan 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/moodle-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
call-moodle-release-workflow:
uses: Opencast-Moodle/moodle-workflows-opencast/.github/workflows/moodle-release.yml@master
uses: Opencast-Moodle/moodle-workflows-opencast/.github/workflows/moodle-release.yml@main
with:
plugin-name: 'filter_opencast'
secrets: inherit
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
CHANGELOG
=========

4.5.1 (2024-12-13)
4.5.3 (2025-01-16)
------------------
* [FIXED] #57 Read paella json data properly from mod
* [FIXED] #54 LTI Authentication for multinode opencast does not work


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

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Admin Settings
--------------

View the documentation of the plugin settings [here](https://moodle.docs.opencast.org/#filter/settings/).

! Be aware: If this filter plugin is going to deliver videos via LTI-Authentication the API User should get the role ROLE_UI_EVENTS_EMBEDDING_CODE_VIEW !

## Documentation ##

Expand Down
8 changes: 4 additions & 4 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@
defined('MOODLE_INTERNAL') || die();

$plugin->component = 'filter_opencast';
$plugin->release = 'v4.5-r3';
$plugin->version = 2024111102;
$plugin->release = 'v4.5-r4';
$plugin->version = 2024111103;
$plugin->requires = 2024100700; // Requires Moodle 4.5+.
$plugin->supported = [405, 405];
$plugin->maturity = MATURITY_STABLE;
$plugin->dependencies = [
'tool_opencast' => 2024111100,
'mod_opencast' => 2024111100,
'tool_opencast' => 2024111103,
'mod_opencast' => 2024111103,
];
Loading