diff --git a/CHANGELOG.md b/CHANGELOG.md index 33cf4ec..0f00758 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -35,6 +35,9 @@ Types of changes * **Fixed** for any bug fixes. * **Security** in case of vulnerabilities. +## Version (4.5.0) - 2024-09-10 +- Tested for Moodle 4.5 and PHP 8.1 + ## Version (4.4.1) - 2024-07-18 - Solves Accessibility issue https://github.com/Lesterhuis-Training-en-Consultancy/moodle-block_quickcourselist/issues/1 diff --git a/styles.css b/styles.css index f253681..6901f6d 100755 --- a/styles.css +++ b/styles.css @@ -4,6 +4,8 @@ body.jsenabled .block_quickcourselist .submitbutton { .block_quickcourselist .quickcourseprogress { visibility: hidden; + width: 16px; + height: 16px; } .block_quickcourselist ul { @@ -18,4 +20,4 @@ body.jsenabled .block_quickcourselist .submitbutton { border-bottom-style: solid; border-bottom-width: 1px; border-bottom-color: #d3d3d3; -} \ No newline at end of file +} diff --git a/version.php b/version.php index 5edbafc..d16b360 100755 --- a/version.php +++ b/version.php @@ -29,9 +29,9 @@ defined('MOODLE_INTERNAL') || die; -$plugin->version = 2024071800; +$plugin->version = 2024091000; $plugin->requires = 2014051200; $plugin->component = 'block_quickcourselist'; $plugin->maturity = MATURITY_STABLE; -$plugin->release = '4.4.1'; -$plugin->supported = [401, 404]; +$plugin->release = '4.5.0'; +$plugin->supported = [401, 405];