Skip to content

Commit 812974f

Browse files
committed
release: v5.1.5
1 parent 0b678e2 commit 812974f

File tree

3 files changed

+12
-9
lines changed

3 files changed

+12
-9
lines changed

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,17 @@ server is properly synchronized with the time servers.
5353

5454
## Changelog
5555

56+
v5.1.5
57+
58+
- Bugfix: Add PNG/SVG calendar icon for Moodle 4.3 #558 (thanks @ScottVerbeek)
59+
- Bugfix: Display user fullname in breakout room participant list #562 (thanks @mofetdanielsmolkin)
60+
- Bugfix: Sort session report by start time #567
61+
- Code quality: Namespace CSS identifiers #560 (thanks @danielcifuentesopen)
62+
- Code quality: Optimize SVGs #561 (thanks @jakearchibald for SVGOMG)
63+
- Code quality: Remove long-forgotten todo PHPDoc tags causing warnings in moodle-cs v3.3.13
64+
- Regression: Registration field default was accidentally upgrading to null #565 (thanks @michael-milette)
65+
- Introduced in v5.1.0 when fixing recording field definition.
66+
5667
v5.1.4
5768

5869
- Bugfix: Avoid breaking completion defaults form in Moodle 4.3 #555 (thanks @opitz)

lib.php

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,6 @@ function zoom_refresh_events($courseid, $zoom, $cm) {
443443
* @param bool $viewfullnames Should we display full names
444444
* @param int $timestart Print activity since this timestamp
445445
* @return boolean True if anything was printed, otherwise false
446-
* @todo implement this function
447446
*/
448447
function zoom_print_recent_activity($course, $viewfullnames, $timestart) {
449448
return false;
@@ -465,7 +464,6 @@ function zoom_print_recent_activity($course, $viewfullnames, $timestart) {
465464
* @param int $cmid course module id
466465
* @param int $userid check for a particular user's activity only, defaults to 0 (all users)
467466
* @param int $groupid check for a particular group's activity only, defaults to 0 (all groups)
468-
* @todo implement this function
469467
*/
470468
function zoom_get_recent_mod_activity(&$activities, &$index, $timestart, $courseid, $cmid, $userid = 0, $groupid = 0) {
471469
}
@@ -478,7 +476,6 @@ function zoom_get_recent_mod_activity(&$activities, &$index, $timestart, $course
478476
* @param bool $detail print detailed report
479477
* @param array $modnames as returned by get_module_types_names()
480478
* @param bool $viewfullnames display users' full names
481-
* @todo implement this function
482479
*/
483480
function zoom_print_recent_mod_activity($activity, $courseid, $detail, $modnames, $viewfullnames) {
484481
}
@@ -490,7 +487,6 @@ function zoom_print_recent_mod_activity($activity, $courseid, $detail, $modnames
490487
* module uses that capability.
491488
*
492489
* @return array
493-
* @todo implement this function
494490
*/
495491
function zoom_get_extra_capabilities() {
496492
return [];
@@ -905,7 +901,6 @@ function zoom_reset_course_form_defaults($course) {
905901
* @param stdClass $cm
906902
* @param stdClass $context
907903
* @return array of [(string)filearea] => (string)description
908-
* @todo implement this function
909904
*/
910905
function zoom_get_file_areas($course, $cm, $context) {
911906
return [];
@@ -927,7 +922,6 @@ function zoom_get_file_areas($course, $cm, $context) {
927922
* @param string $filepath
928923
* @param string $filename
929924
* @return file_info instance or null if not found
930-
* @todo implement this function
931925
*/
932926
function zoom_get_file_info($browser, $areas, $course, $cm, $context, $filearea, $itemid, $filepath, $filename) {
933927
return null;
@@ -968,7 +962,6 @@ function zoom_pluginfile($course, $cm, $context, $filearea, array $args, $forced
968962
* @param stdClass $course current course record
969963
* @param stdClass $module current zoom instance record
970964
* @param cm_info $cm course module information
971-
* @todo implement this function
972965
*/
973966
function zoom_extend_navigation(navigation_node $navref, stdClass $course, stdClass $module, cm_info $cm) {
974967
}
@@ -981,7 +974,6 @@ function zoom_extend_navigation(navigation_node $navref, stdClass $course, stdCl
981974
*
982975
* @param settings_navigation $settingsnav complete settings navigation tree
983976
* @param navigation_node $zoomnode zoom administration node
984-
* @todo implement this function
985977
*/
986978
function zoom_extend_settings_navigation(settings_navigation $settingsnav, navigation_node $zoomnode = null) {
987979
}

version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
$plugin->component = 'mod_zoom';
2828
$plugin->version = 2024012500;
29-
$plugin->release = 'v5.1.4';
29+
$plugin->release = 'v5.1.5';
3030
$plugin->requires = 2019052000;
3131
$plugin->maturity = MATURITY_STABLE;
3232
$plugin->cron = 0;

0 commit comments

Comments
 (0)