From 79ca27cad8199848cb575696668be205fbd92528 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Suwi=C5=84ski?= Date: Thu, 19 Nov 2020 09:25:59 +0100 Subject: [PATCH] added CHANGELOG, TODO and version update --- CHANGELOG.md | 12 ++++++++++++ TODO.md | 4 +++- version.php | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..24c3ac1 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,12 @@ +# Changelog + +## [1.1.0] - 2020-11-19 + +### Added + +- security settings revokethreshold and minrequestperiod +- support for standard not email based login of existing users + +### Fixed + +- settings form help typos diff --git a/TODO.md b/TODO.md index 5493b83..7d928b0 100644 --- a/TODO.md +++ b/TODO.md @@ -1,5 +1,7 @@ TODO: -- unit tests +- configurable takeover of user authtype after self singup in other auth module + in case of standard not email based logins - js snippet to change login form (ex. to add "Generate OTP" button) on valid email as username +- unit tests diff --git a/version.php b/version.php index 9ce352b..c1750cb 100644 --- a/version.php +++ b/version.php @@ -24,7 +24,7 @@ defined('MOODLE_INTERNAL') || die(); -$plugin->version = 2020111803; // The current plugin version (Date: YYYYMMDDXX). +$plugin->version = 2020111900; // The current plugin version (Date: YYYYMMDDXX). $plugin->requires = 2018120304; // Requires this Moodle version. $plugin->component = 'auth_emailotp'; // Full name of the plugin (used for diagnostics). $plugin->maturity = MATURITY_STABLE;