Skip to content

Commit

Permalink
Prepare version 1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
srobotta committed Oct 9, 2023
1 parent a36ffb5 commit 10e9235
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 4 deletions.
18 changes: 16 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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)
Expand All @@ -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

Expand Down Expand Up @@ -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 `<span class="multilang">`
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).
Expand Down
4 changes: 2 additions & 2 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;

0 comments on commit 10e9235

Please sign in to comment.