From 2de5ddb6f85ccc02c54f477d718be6730985d1b3 Mon Sep 17 00:00:00 2001 From: Gareth Barnard <1058419+gjb2048@users.noreply.github.com> Date: Sun, 15 Oct 2023 13:41:47 +0100 Subject: [PATCH] V403.1.0 --- .github/workflows/ci.yml | 4 ++-- Changes.md | 4 ++++ Readme.md | 6 +++--- settings.php | 2 +- version.php | 17 +++++++++-------- 5 files changed, 19 insertions(+), 14 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 00a25c59..277af448 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,8 +21,8 @@ jobs: strategy: fail-fast: false matrix: - php: ['8.0', '8.1'] - moodle-branch: ['MOODLE_402_STABLE'] + php: ['8.0'] # Note in 8.2 Creation of dynamic properties are deprecated and thus PHPUnit and Behat tests will fail, so 8.2 removed. + moodle-branch: ['MOODLE_403_STABLE'] database: [mariadb] steps: diff --git a/Changes.md b/Changes.md index 47ba75c5..bbcb78b2 100644 --- a/Changes.md +++ b/Changes.md @@ -1,6 +1,10 @@ History ============= +Version 403.1.0 - TBR +----------------------------- +1. First version for Moodle 4.3. + Version 402.2.1b - 14/10/2023 ----------------------------- 1. Fix 'Webp image causes an error and makes course unaccessible' - #190. diff --git a/Readme.md b/Readme.md index 81738bbf..20368c3e 100644 --- a/Readme.md +++ b/Readme.md @@ -4,17 +4,17 @@ A topics based format that uses a grid of user selectable images to select a sec Required release of Moodle ========================== -This version works with Moodle 4.2 version 2023042400.00 (Build: 20230424) and above within the MOODLE_402_STABLE branch until the +This version works with Moodle 4.3 version 2023100900.00 (Build: 20231009) and above within the MOODLE_403_STABLE branch until the next release. -Please ensure that your hardware and software complies with 'Requirements' in '[Installing Moodle](https://docs.moodle.org/402/en/Installing_Moodle)'. +Please ensure that your hardware and software complies with 'Requirements' in '[Installing Moodle](https://docs.moodle.org/403/en/Installing_Moodle)'. Free software ============= The Grid format is 'free' software under the terms of the GNU GPLv3 License, please see 'COPYING.txt'. The primary source for downloading this branch of the format is https://moodle.org/plugins/view.php?plugin=format_grid -with 'Your Moodle version:' set at 'Moodle 4.2'. +with 'Your Moodle version:' set at 'Moodle 4.3'. The secondary source is https://github.com/gjbarnard/moodle-format_grid/tags diff --git a/settings.php b/settings.php index 671fe6a3..44ab1ff7 100644 --- a/settings.php +++ b/settings.php @@ -49,7 +49,7 @@ )); // Information. - $page->add(new admin_setting_information('format_grid/formatinformation', '', '', 402)); + $page->add(new admin_setting_information('format_grid/formatinformation', '', '', 403)); // Support.md. $page->add(new admin_setting_markdown('format_grid/formatsupport', '', '', 'Support.md')); diff --git a/version.php b/version.php index ee36d24f..8eecc8bf 100644 --- a/version.php +++ b/version.php @@ -19,23 +19,24 @@ * * @package format_grid * @version See the value of '$plugin->version' in below. - * @copyright © 2012 G J Barnard in respect to modifications of standard topics format. - * @author G J Barnard - {@link http://about.me/gjbarnard} and - * {@link http://moodle.org/user/profile.php?id=442195} + * @copyright 2012 G J Barnard in respect to modifications of standard topics format. + * @author G J Barnard - + * {@link https://moodle.org/user/profile.php?id=442195} + * {@link https://gjbarnard.co.uk} * @author Based on code originally written by Paul Krix and Julian Ridden. - * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later + * @license https://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later. */ defined('MOODLE_INTERNAL') || die(); // Plugin version. -$plugin->version = 2023051005; +$plugin->version = 2023101500; // Required Moodle version. -$plugin->requires = 2023042400.00; // 4.2 (Build: 20230424). +$plugin->requires = 2023100900.00; // 4.3 (Build: 20231009). // Supported Moodle version. -$plugin->supported = [402, 402]; +$plugin->supported = [403, 403]; // Full name of the plugin. $plugin->component = 'format_grid'; @@ -44,4 +45,4 @@ $plugin->maturity = MATURITY_STABLE; // User-friendly version number. -$plugin->release = '402.2.1b'; +$plugin->release = '403.1.0';