Skip to content

Commit

Permalink
V403.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gjb2048 committed Oct 15, 2023
1 parent 3b9321e commit 2de5ddb
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 4 additions & 0 deletions Changes.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
6 changes: 3 additions & 3 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -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'));
Expand Down
17 changes: 9 additions & 8 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand All @@ -44,4 +45,4 @@
$plugin->maturity = MATURITY_STABLE;

// User-friendly version number.
$plugin->release = '402.2.1b';
$plugin->release = '403.1.0';

0 comments on commit 2de5ddb

Please sign in to comment.