diff --git a/README.md b/README.md index ba56746..8dda336 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.8-blue.svg) +![Release](https://img.shields.io/badge/Release-1.9-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,7 +103,13 @@ at https://docs.moodle.org/en/Multi-language_content_filter. ## History -### Current main branch +### v1.9 +- Fix issue that if a selected text contains trailing or leading whitespaces, + these are preserved around the cloze question string when inserted into the text. +- Support for a new REGEX and REGEX_C type that might available through a new + plugin [moodle-qtype_multianswerrgx](https://github.com/rezeau/moodle-qtype_multianswerrgx) + by [Joseph Rézeau](https://github.com/rezeau). +- Add CI of Moodle 4.5. - Fix bug that escaped closing curly brakets where not recognized [issue #21](https://github.com/srobotta/moodle-tiny_cloze/issues/21). - On double click on a cloze question opens the dialogue automatically. - Delete icon disappears when there is one answer option left only. diff --git a/screenshots/cloze_3_dialogue_edit.png b/screenshots/cloze_3_dialogue_edit.png index 499918e..0c34adc 100644 Binary files a/screenshots/cloze_3_dialogue_edit.png and b/screenshots/cloze_3_dialogue_edit.png differ diff --git a/screenshots/cloze_6_dialogue_numeric.png b/screenshots/cloze_6_dialogue_numeric.png index 50dcae8..ebf3c33 100644 Binary files a/screenshots/cloze_6_dialogue_numeric.png and b/screenshots/cloze_6_dialogue_numeric.png differ diff --git a/version.php b/version.php index fc166c9..743025a 100644 --- a/version.php +++ b/version.php @@ -25,8 +25,8 @@ defined('MOODLE_INTERNAL') || die(); $plugin->component = 'tiny_cloze'; -$plugin->release = '1.8'; -$plugin->version = 2024083000; +$plugin->release = '1.9'; +$plugin->version = 2024101600; $plugin->requires = 2022112800; $plugin->maturity = MATURITY_STABLE; -$plugin->supported = [401, 404]; +$plugin->supported = [401, 405];