diff --git a/README.md b/README.md index 3f25e62..f211dea 100644 --- a/README.md +++ b/README.md @@ -33,6 +33,12 @@ visibility). Changelog --------- +2024-01-05 v4.1.0 + + * Fix inline list display inconsistencies in Moodle 4.1+ + * Refactor output renderer and renderable classes + * Address new issues identified by code checker and CI tests + 2022-06-01 v4.0.0 * Fix JS selectors and make transitions less jarring @@ -70,14 +76,14 @@ Installing from the Git repository (recommended if you installed Moodle from Git): Follow the instructions at -https://docs.moodle.org/400/en/Git_for_Administrators#Installing_a_contributed_extension_from_its_Git_repository, -e.g. for the Moodle 4.0.x code: +https://docs.moodle.org/401/en/Git_for_Administrators#Installing_a_contributed_extension_from_its_Git_repository, +e.g. for the Moodle 4.1.x code: $ cd /path/to/your/moodle/ $ cd mod/ $ git clone https://github.com/tonyjbutler/moodle-mod_leganto.git leganto $ cd leganto/ - $ git checkout -b MOODLE_400_STABLE origin/MOODLE_400_STABLE + $ git checkout -b MOODLE_401_STABLE origin/MOODLE_401_STABLE $ git branch -d master $ cd /path/to/your/moodle/ $ echo /mod/leganto/ >> .git/info/exclude @@ -98,7 +104,7 @@ Updating Moodle --------------- If you installed Moodle and the Leganto reading list module from Git you can run the following commands to update both (see -https://docs.moodle.org/400/en/Git_for_Administrators#Installing_a_contributed_extension_from_its_Git_repository): +https://docs.moodle.org/401/en/Git_for_Administrators#Installing_a_contributed_extension_from_its_Git_repository): $ cd /path/to/your/moodle/ $ git pull diff --git a/version.php b/version.php index b52f8e0..8735dd0 100644 --- a/version.php +++ b/version.php @@ -25,9 +25,9 @@ defined('MOODLE_INTERNAL') || die(); -$plugin->version = 2022060100; // The current module version (Date: YYYYMMDDXX). -$plugin->requires = 2022041900; // Requires this Moodle version. +$plugin->version = 2024010500; // The current module version (Date: YYYYMMDDXX). +$plugin->requires = 2022112800; // Requires this Moodle version. $plugin->component = 'mod_leganto'; // Full name of the plugin (used for diagnostics). $plugin->cron = 0; $plugin->maturity = MATURITY_STABLE; -$plugin->release = 'v4.0.0 (Build: 20220601)'; +$plugin->release = 'v4.1.0 (Build: 20240105)';