From be79b303eeb31bbcf812d5de8c5122e6d4b97133 Mon Sep 17 00:00:00 2001 From: Michael Milette Date: Mon, 23 Nov 2020 03:50:12 -0500 Subject: [PATCH] Filtecodes release 2.1.0 --- CHANGELOG.md | 6 +++--- README.md | 5 +++-- version.php | 4 ++-- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d2ed75..046a98c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ # Change Log All notable changes to this project will be documented in this file. -## [2.0.7] dev-2020-11-19 +## [2.1.0] 2020-11-23 ### Added - New {ifingroup id|idnumber}{/ifingroup} tags. - New {filtercodes} tag. Note: Only works for teachers and above. @@ -32,8 +32,8 @@ All notable changes to this project will be documented in this file. - {profile_field_shortname} now supports textarea type custom fields. - Re-enabled the %7Buserid%7D tag. - Fixed {courseshortname} so that it displays the site shortname if you are not in a course. -- Now passes 100% of the PHPUnit Tests. -- Tested to be compatible with Moodle 3.10. +- Should now be passing 100% of the PHPUnit Tests. +- Tested to be compatible up to and including Moodle 3.10. ## [2.0.0] 2020-07-01 ### Added diff --git a/README.md b/README.md index 4902f97..0d904ce 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ FilterCodes filter plugin for Moodle ==================================== ![PHP](https://img.shields.io/badge/PHP-v5.6%20%2F%20v7.0%20%2F%20v7.1%2F%20v7.2%2F%20v7.3%2F%20v7.4-blue.svg)` -![Moodle](https://img.shields.io/badge/Moodle-v2.7%20to%20v3.9.x-orange.svg) +![Moodle](https://img.shields.io/badge/Moodle-v2.7%20to%20v3.10.x-orange.svg) [![GitHub Issues](https://img.shields.io/github/issues/michael-milette/moodle-filter_filtercodes.svg)](https://github.com/michael-milette/moodle-filter_filtercodes/issues) [![Contributions welcome](https://img.shields.io/badge/contributions-welcome-green.svg)](#contributing) [![License](https://img.shields.io/badge/License-GPL%20v3-blue.svg)](#license) @@ -117,11 +117,11 @@ FilterCodes are meant to be entered as regular text in the Moodle WYSIWYG editor * {usersactive} : Count total number of registered users on the site. Does not included deleted users, disabled users, primary admin or guest. * {usersonline} : Total number of users who were online in the last 5 minutes. * {siteyear} : 4-digit current year. +* {now dateTimeFormat} : Display's the current date. For information on the optional dateTimeFormat format, see Supported dateTimeFormats Formats in the [FAQ](#faq) section of this documentation. * {coursecount} : Total number of courses on this Moodle site (not including Front Page). * {diskfreespace} : Display amount of free disk space for application folder. Infinite symbol will be displayed if greater than about 84,703.29 Yottabyte (YB) or failure to get size from operating system. * {diskfreespacedata} : Display amount of free disk space for moodledata folder. Infinite symbol will be displayed if greater than about 84,703.29 Yottabyte (YB) or failure to get size from operating system. * {wwwroot} : Root URL of the Moodle site. -* {now dateTimeFormat} : Display's the current date. For information on the optional dateTimeFormat format, see Supported dateTimeFormats Formats in the [FAQ](#faq) section of this documentation. ### UI Elements @@ -870,6 +870,7 @@ You can patch Moodle handle this properly in the first place. Applying the follo * Moodle 3.7: https://github.com/michael-milette/moodle/tree/MDL-63219-M37 * Moodle 3.8: https://github.com/michael-milette/moodle/tree/MDL-63219-M38 * Moodle 3.9: https://github.com/michael-milette/moodle/tree/MDL-63219-M39 +* Moodle 3.10: https://github.com/michael-milette/moodle/tree/MDL-63219-M310 ### Why is the IP Address listed as 0:0:0:0:0:0:0:1? diff --git a/version.php b/version.php index 619d888..5e07f8f 100644 --- a/version.php +++ b/version.php @@ -25,8 +25,8 @@ defined('MOODLE_INTERNAL') || die(); -$plugin->version = 2020070100; // The current plugin version (Date: YYYYMMDDXX). +$plugin->version = 2020112300; // The current plugin version (Date: YYYYMMDDXX). $plugin->requires = 2014051200; // Requires Moodle version 2.7. $plugin->component = 'filter_filtercodes'; // Full name of the plugin (used for diagnostics). -$plugin->release = '2.0.0'; +$plugin->release = '2.1.0'; $plugin->maturity = MATURITY_STABLE;