Skip to content

Commit

Permalink
Build a new release
Browse files Browse the repository at this point in the history
  • Loading branch information
srobotta committed Apr 18, 2023
1 parent eddd9d4 commit a0d6bc3
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 5 deletions.
15 changes: 13 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ CI](https://github.com/bfh/moodle-tiny_fontcolor/workflows/Moodle%20Plugin%20CI/
[![License GPL-3.0](https://img.shields.io/github/license/bfh/moodle-tiny_fontcolor?color=lightgrey)](https://github.com/bfh/moodle-tiny_fontcolor/blob/main/LICENSE)
[![GitHub contributors](https://img.shields.io/github/contributors/bfh/moodle-tiny_fontcolor)](https://github.com/bfh/moodle-tiny_fontcolor/graphs/contributors)

# To Install it manually #
# Installation #

- Unzip the plugin in the Moodle .../lib/editor/tiny/plugins/fontcolor directory.
- Unzip the contents of the zip archive into the Moodle `.../lib/editor/tiny/plugins/fontcolor` directory.
- As a Moodle Admin go to Site Administration -> Plugins -> Text Editors -> TinyMCE editor -> Tiny text color/text background color settings
and add a view color names and color codes for at least on of the setting "Available text colors" or "Available text background colors".
- You may also enable the color picker for text color or background color.
Expand All @@ -22,3 +22,14 @@ the text color setting and the background color setting.
The color name can be an arbitrary string e.g. Red or Dark Green or whatever you name
your color. The name can be also the "corporate name" e.g. that is used in any style guides
of the corporate identity at your institution.

# Version History #

## 0.2.1

- Add behat test for the admin settings page and reorganize tests.
- Remove function `str_contains` to be PHP7.x compliant.
- Change maturity of plugin to release candidate.

## 0.2.0
Initial release
6 changes: 3 additions & 3 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
defined('MOODLE_INTERNAL') || die();

$plugin->component = 'tiny_fontcolor';
$plugin->release = '0.2.0';
$plugin->version = 2023040400;
$plugin->release = '0.2.1';
$plugin->version = 2023041800;
$plugin->requires = 2022112800;
$plugin->maturity = MATURITY_ALPHA;
$plugin->maturity = MATURITY_RC;

0 comments on commit a0d6bc3

Please sign in to comment.