diff --git a/README.md b/README.md index 3811bb7..3253ca9 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,16 @@ [![Coverage Status](https://coveralls.io/repos/github/ProjektAdLer/MoodlePluginLocal/badge.svg?branch=main)](https://coveralls.io/github/ProjektAdLer/MoodlePluginLocal?branch=main) +## Dependencies +> [!CAUTION] +> Now removed all dependency checks for all plugins as I'm pissed of about moodle saying: no you cannot update, because +> the updated version of the dependency that IS ALREADY PRESENT IN THE CORRESPONDING DIRECTORY is "Unavailable". + +| Plugin | Version | +|--------------------|---------| +| availability_adler | ~3.0.0 | + + ## MBZ api endpunkt Damit der mbz api endpunkt auch mit größeren Dateien funktioniert sind folgende Änderungen an der php.ini notwendig: diff --git a/version.php b/version.php index 0d7a454..8200a61 100644 --- a/version.php +++ b/version.php @@ -21,11 +21,8 @@ defined('MOODLE_INTERNAL') || die(); -$plugin->version = 2023112701; +$plugin->version = 2024011201; $plugin->requires = 2022112800; // Moodle version $plugin->component = 'local_adler'; -$plugin->maturity = MATURITY_ALPHA; -$plugin->release = '3.0.0-dev'; -$plugin->dependencies = array( - 'availability_adler' => '2.0.0', -); +$plugin->maturity = MATURITY_STABLE; +$plugin->release = '3.0.0';