From 42b0cbcfd5fa93bd795468ba1586812e4220554c Mon Sep 17 00:00:00 2001 From: Nicolas Martignoni Date: Sun, 24 Dec 2023 13:25:20 +0100 Subject: [PATCH] Update release notes, version number and date and README file. --- CHANGELOG.md | 5 +++++ README.md | 2 +- version.php | 4 ++-- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 389ad3a..5f12edd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](https://semver.org/) and follow principles of [keep a changelog](https://keepachangelog.com). +## Version 2.17.3, 2023-12-24 + +### Changed +- New code for displaying the wireless clients info, which is now immediately updated upon client connexion; the info displayed is now the IP address and MAC address of the client, and the client name isn't displayed anymore (issue #128). + ## Version 2.17.2, 2023-11-28 ### Add diff --git a/README.md b/README.md index 78e8952..6215012 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ This plugin enables a Moodle administrator to monitor some hardware settings, to Administrators and users with manager role can moreover restart and shutdown the MoodleBox with buttons in the footer of each Moodle page. -The plugin is compatible with Moodle 3.6 or later. A Raspberry Pi model Zero 2 W, 3A+, 3B, 3B+ or 4B is recommended. +The plugin is compatible with Moodle 3.6 or later. A Raspberry Pi model Zero 2 W, 3A+, 3B, 3B+, 4B or 5 is recommended. ## Installation diff --git a/version.php b/version.php index 0c4c829..7318cd0 100644 --- a/version.php +++ b/version.php @@ -26,9 +26,9 @@ $plugin = new stdClass(); -$plugin->version = 2023120200; +$plugin->version = 2023122400; $plugin->release = '2.17.3'; $plugin->requires = 2018120300; $plugin->supported = [36, 403]; -$plugin->maturity = MATURITY_BETA; +$plugin->maturity = MATURITY_STABLE; $plugin->component = 'tool_moodlebox';