Skip to content

Commit

Permalink
set Version to release 3.0.0, remove dependency version check and add…
Browse files Browse the repository at this point in the history
… documentation about that to README.md
  • Loading branch information
Glutamat42 committed Jan 12, 2024
1 parent 5d9b36c commit d3117a0
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
9 changes: 3 additions & 6 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -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';

0 comments on commit d3117a0

Please sign in to comment.