From 215a599c67f3a9f2df4a2c1c7fb397b38e2a7e33 Mon Sep 17 00:00:00 2001 From: Stephan Robotta Date: Thu, 21 Dec 2023 17:00:48 +0100 Subject: [PATCH] Prepare release 1.4 --- README.md | 11 ++++++++++- version.php | 4 ++-- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 54e9fda..1f48964 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ Moodle Tiny editor Cloze question type button ============================================= -![Release](https://img.shields.io/badge/Release-1.3-blue.svg) +![Release](https://img.shields.io/badge/Release-1.4-blue.svg) [![Moodle Plugin CI](https://github.com/srobotta/moodle-tiny_cloze/workflows/Moodle%20Plugin%20CI/badge.svg?branch=main)](https://github.com/srobotta/moodle-tiny_cloze/actions?query=workflow%3A%22Moodle+Plugin+CI%22+branch%3Amain) ![Supported](https://img.shields.io/badge/Moodle-4.1+-orange.svg) @@ -103,6 +103,15 @@ at https://docs.moodle.org/en/Multi-language_content_filter. ## History +### v1.4 +- Extend tests to cover functionality of the whole plugin. +- Custom grade values for answers (this addresses [issue #16](https://github.com/srobotta/moodle-tiny_cloze/issues/16)) +- Add PHP 8.2 tests for the Moodle 4.3 test runs. +- Streamline the process when the strings for the dialogue are fetched. +- Add alt attributes for the icons. +- Add new modal creation process from Moodle 4.3 but keep the old process for backward compatibility. +- Add missing language string when capabilities are displayed. + ### v1.3 - Add new CI stack for latest release and adapt changes to work with Moodle 4.3. diff --git a/version.php b/version.php index a61d7b2..a51720d 100644 --- a/version.php +++ b/version.php @@ -25,7 +25,7 @@ defined('MOODLE_INTERNAL') || die(); $plugin->component = 'tiny_cloze'; -$plugin->release = '1.3'; -$plugin->version = 2023101000; +$plugin->release = '1.4'; +$plugin->version = 2023122100; $plugin->requires = 2022112800; $plugin->maturity = MATURITY_RC;