Skip to content

Commit fe0b6ee

Browse files
committed
Prepare release 1.3 for Moodle 4.5
1 parent 50bfa05 commit fe0b6ee

File tree

3 files changed

+27
-6
lines changed

3 files changed

+27
-6
lines changed

.github/workflows/moodle-plugin-ci.yml

+18
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,24 @@ jobs:
3030
fail-fast: false
3131
matrix:
3232
include:
33+
- php: '8.1'
34+
moodle-branch: 'MOODLE_405_STABLE'
35+
database: pgsql
36+
- php: '8.2'
37+
moodle-branch: 'MOODLE_405_STABLE'
38+
database: pgsql
39+
- php: '8.3'
40+
moodle-branch: 'MOODLE_405_STABLE'
41+
database: pgsql
42+
- php: '8.1'
43+
moodle-branch: 'MOODLE_405_STABLE'
44+
database: mariadb
45+
- php: '8.2'
46+
moodle-branch: 'MOODLE_405_STABLE'
47+
database: mariadb
48+
- php: '8.3'
49+
moodle-branch: 'MOODLE_405_STABLE'
50+
database: mariadb
3351
- php: '8.1'
3452
moodle-branch: 'MOODLE_404_STABLE'
3553
database: pgsql

README.md

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
TinyMCE multilanguage plugin
22
============================
33

4-
![Release](https://img.shields.io/badge/Release-1.2-blue.svg)
4+
![Release](https://img.shields.io/badge/Release-1.3-blue.svg)
55
[![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)
66
[![PHP Support](https://img.shields.io/badge/php-7.4--8.3-blue)](https://github.com/bfh/moodle-tiny_multilang2/actions)
7-
[![Moodle Support](https://img.shields.io/badge/Moodle-4.1--4.4+-orange)](https://github.com/bfh/moodle-tiny_multilang2/actions)
7+
[![Moodle Support](https://img.shields.io/badge/Moodle-4.1--4.5+-orange)](https://github.com/bfh/moodle-tiny_multilang2/actions)
88
[![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)
99
[![GitHub contributors](https://img.shields.io/github/contributors/bfh/moodle-tiny_multilang2)](https://github.com/bfh/moodle-tiny_multilang2/graphs/contributors)
1010

@@ -29,7 +29,7 @@ formatting of the text is correct.
2929

3030
## Current version
3131

32-
The latest release is v1.2 (build 2024042200) for Moodle 4.1 and newer.
32+
The latest release is v1.3 (build 2024100900) for Moodle 4.1 and newer.
3333

3434
## Requirements
3535

@@ -114,6 +114,9 @@ provided iso codes is preserved.
114114

115115
## Version History
116116

117+
### 1.3
118+
- Adaptions for Moodle 4.5.
119+
117120
### 1.2
118121
- Removal of the attribute `dir` e.g. `dir="ltr"` for language direction because it
119122
breaks the standard multilanguage filter in Moodle.

version.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
defined('MOODLE_INTERNAL') || die();
2929

3030
$plugin->component = 'tiny_multilang2';
31-
$plugin->release = '1.2';
32-
$plugin->version = 2024042200;
31+
$plugin->release = '1.3';
32+
$plugin->version = 2024100900;
3333
$plugin->requires = 2022112800;
3434
$plugin->maturity = MATURITY_STABLE;
35-
$plugin->supported = [401, 404];
35+
$plugin->supported = [401, 405];

0 commit comments

Comments
 (0)