From fe0b6eedde0b7a987a1454732409e0ec5f3d7f57 Mon Sep 17 00:00:00 2001 From: Stephan Robotta Date: Wed, 9 Oct 2024 17:15:04 +0200 Subject: [PATCH] Prepare release 1.3 for Moodle 4.5 --- .github/workflows/moodle-plugin-ci.yml | 18 ++++++++++++++++++ README.md | 9 ++++++--- version.php | 6 +++--- 3 files changed, 27 insertions(+), 6 deletions(-) diff --git a/.github/workflows/moodle-plugin-ci.yml b/.github/workflows/moodle-plugin-ci.yml index bcbcbb0..e918d1c 100644 --- a/.github/workflows/moodle-plugin-ci.yml +++ b/.github/workflows/moodle-plugin-ci.yml @@ -30,6 +30,24 @@ jobs: fail-fast: false matrix: include: + - php: '8.1' + moodle-branch: 'MOODLE_405_STABLE' + database: pgsql + - php: '8.2' + moodle-branch: 'MOODLE_405_STABLE' + database: pgsql + - php: '8.3' + moodle-branch: 'MOODLE_405_STABLE' + database: pgsql + - php: '8.1' + moodle-branch: 'MOODLE_405_STABLE' + database: mariadb + - php: '8.2' + moodle-branch: 'MOODLE_405_STABLE' + database: mariadb + - php: '8.3' + moodle-branch: 'MOODLE_405_STABLE' + database: mariadb - php: '8.1' moodle-branch: 'MOODLE_404_STABLE' database: pgsql diff --git a/README.md b/README.md index a1c96bb..4c60ea9 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@ TinyMCE multilanguage plugin ============================ -![Release](https://img.shields.io/badge/Release-1.2-blue.svg) +![Release](https://img.shields.io/badge/Release-1.3-blue.svg) [![Moodle Plugin CI](https://github.com/bfh/moodle-tiny_multilang2/workflows/Moodle%20Plugin%20CI/badge.svg?branch=main)](https://github.com/bfh/moodle-tiny_multilang2/actions?query=workflow%3A%22Moodle+Plugin+CI%22+branch%3Amain) [![PHP Support](https://img.shields.io/badge/php-7.4--8.3-blue)](https://github.com/bfh/moodle-tiny_multilang2/actions) -[![Moodle Support](https://img.shields.io/badge/Moodle-4.1--4.4+-orange)](https://github.com/bfh/moodle-tiny_multilang2/actions) +[![Moodle Support](https://img.shields.io/badge/Moodle-4.1--4.5+-orange)](https://github.com/bfh/moodle-tiny_multilang2/actions) [![License GPL-3.0](https://img.shields.io/github/license/bfh/moodle-tiny_multilang2?color=lightgrey)](https://github.com/bfh/moodle-tiny_multilang2/blob/main/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/bfh/moodle-tiny_multilang2)](https://github.com/bfh/moodle-tiny_multilang2/graphs/contributors) @@ -29,7 +29,7 @@ formatting of the text is correct. ## Current version -The latest release is v1.2 (build 2024042200) for Moodle 4.1 and newer. +The latest release is v1.3 (build 2024100900) for Moodle 4.1 and newer. ## Requirements @@ -114,6 +114,9 @@ provided iso codes is preserved. ## Version History +### 1.3 +- Adaptions for Moodle 4.5. + ### 1.2 - Removal of the attribute `dir` e.g. `dir="ltr"` for language direction because it breaks the standard multilanguage filter in Moodle. diff --git a/version.php b/version.php index a60808e..e11b195 100644 --- a/version.php +++ b/version.php @@ -28,8 +28,8 @@ defined('MOODLE_INTERNAL') || die(); $plugin->component = 'tiny_multilang2'; -$plugin->release = '1.2'; -$plugin->version = 2024042200; +$plugin->release = '1.3'; +$plugin->version = 2024100900; $plugin->requires = 2022112800; $plugin->maturity = MATURITY_STABLE; -$plugin->supported = [401, 404]; +$plugin->supported = [401, 405];