diff --git a/README.md b/README.md index 58678d8..4d5f88d 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ TinyMCE multilanguage plugin ============================ -![Release](https://img.shields.io/badge/Release-1.0-blue.svg) +![Release](https://img.shields.io/badge/Release-1.1-blue.svg) [![Moodle Plugin CI](https://github.com/bfh/moodle-tiny_multilang2/workflows/Moodle%20Plugin%20CI/badge.svg?branch=master)](https://github.com/bfh/moodle-tiny_multilang2/actions?query=workflow%3A%22Moodle+Plugin+CI%22+branch%3Amaster) ![Supported](https://img.shields.io/badge/Moodle-4.1+-orange.svg) [![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) @@ -28,7 +28,7 @@ formatting of the text is correct. ## Current version -The latest release is v1.0 (build 2023091100) for Moodle 4.1 and newer. +The latest release is v1.1 (build 2023100900) for Moodle 4.1 and newer. ## Requirements @@ -110,6 +110,20 @@ provided iso codes is preserved. ## Version History +### 1.1 +- Fix finally [There are some issues with the latest version #6](https://github.com/bfh/moodle-tiny_multilang2/issues/6) +- Fix problem with already defined behat test steps by switching behat class to use traits + (thank you, [Jason Platts](https://github.com/jason-platts)) +- Removed setting: `fallbackspantag` + - It was not observed correctly (markup in the editor is still + applied even if the setting was off). + - Correcting the first point would have lead to no styling which + is somewhat awkward when there are `` + tags contained in the text but not marked as such (because + of the setting being disabled). +- In Site administration -> Plugins -> Text editors the label for this plugin settings uses + noe the same language key as the plugin name itself (the "settings" suffix vanished). + ### 1.0 - Fix issue [TinyMCE link plugin does not work properly when multilang2 is installed](https://github.com/bfh/moodle-tiny_multilang2/issues/4). diff --git a/version.php b/version.php index 05c434a..b7cb33d 100644 --- a/version.php +++ b/version.php @@ -28,7 +28,7 @@ defined('MOODLE_INTERNAL') || die(); $plugin->component = 'tiny_multilang2'; -$plugin->release = '1.0'; -$plugin->version = 2023091100; +$plugin->release = '1.1'; +$plugin->version = 2023100900; $plugin->requires = 2022112800; $plugin->maturity = MATURITY_RC;