diff --git a/CHANGES.md b/CHANGES.md index 97c3d7d..83034c9 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,18 @@ Release Notes +_NOTE - This release will work on Moodle 4.04, & 4.05_ + +##### 1.404.01 (Build 2024102001) + +New features / improvements: + +* Adding support for 404, and 405. +* Adding improved activity icon for 404, and 405. + +Bug fixes: + +* Fix deprecated JS calls for 404. + _NOTE - This release will work on Moodle 4.00, 4.01, 4.02 & 4.03_ ##### 1.401.03 (Build 2022040112) diff --git a/README.md b/README.md index afc9dcc..0798700 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ has been received from Athlone Institute of Technology under the SATLE fund from National Forum, and also from UCL. ## Version support ## -This plugin has been developed to work on Moodle releases 4.00, 4.01, 4.02 and 4.03. +This plugin has been developed to work on Moodle releases 4.00, 4.01, 4.02, 4.03, 4.04, and 4.05. ## Development ## This plugin has been developed and is maintained by Brickfield Education Labs. @@ -51,7 +51,7 @@ This module uses code derived from ["jquery.editable.amd.js"](https://github.com This code written by [Victor Jonsson](http://victorjonsson.se/) is licensed under [GNU GPLv2](http://www.gnu.org/licenses/gpl-2.0.html). ### Icon design ### -Many thanks to [Stuart Lamour](https://github.com/stuartlamour) for our new board icon! +Many thanks to [Stuart Lamour](https://github.com/stuartlamour) for our new board icon! Also thanks to [Luca Bosch](https://github.com/lucaboesch) for our updated 4.04 icon! ## Documentation ## All public documentation for this plugin is maintained at the diff --git a/db/install.xml b/db/install.xml index 0e39c5f..4bfb45a 100755 --- a/db/install.xml +++ b/db/install.xml @@ -1,5 +1,5 @@ - diff --git a/version.php b/version.php index d0cedf8..7fb79fc 100755 --- a/version.php +++ b/version.php @@ -25,7 +25,7 @@ defined('MOODLE_INTERNAL') || die; $plugin->component = 'mod_board'; // Full name of the plugin (used for diagnostics). -$plugin->version = 2022040116; // The current module version Use 2022.04.01 as base for 4.00. -$plugin->requires = 2022041900; // Moodle 4.00 and up. -$plugin->release = '1.401.03 (Build 2022040112)'; +$plugin->version = 2024102001; // The current module version Use 2024.10.20 as base for 4.04. +$plugin->requires = 2024042200; // Moodle 4.04 and up. +$plugin->release = '1.404.01 (Build 2024102001)'; $plugin->maturity = MATURITY_STABLE;