Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: v5.1.5 #569

Merged
merged 1 commit into from
Jan 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,17 @@ server is properly synchronized with the time servers.

## Changelog

v5.1.5

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

v5.1.4

- Bugfix: Avoid breaking completion defaults form in Moodle 4.3 #555 (thanks @opitz)
Expand Down
8 changes: 0 additions & 8 deletions lib.php
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,6 @@ function zoom_refresh_events($courseid, $zoom, $cm) {
* @param bool $viewfullnames Should we display full names
* @param int $timestart Print activity since this timestamp
* @return boolean True if anything was printed, otherwise false
* @todo implement this function
*/
function zoom_print_recent_activity($course, $viewfullnames, $timestart) {
return false;
Expand All @@ -465,7 +464,6 @@ function zoom_print_recent_activity($course, $viewfullnames, $timestart) {
* @param int $cmid course module id
* @param int $userid check for a particular user's activity only, defaults to 0 (all users)
* @param int $groupid check for a particular group's activity only, defaults to 0 (all groups)
* @todo implement this function
*/
function zoom_get_recent_mod_activity(&$activities, &$index, $timestart, $courseid, $cmid, $userid = 0, $groupid = 0) {
}
Expand All @@ -478,7 +476,6 @@ function zoom_get_recent_mod_activity(&$activities, &$index, $timestart, $course
* @param bool $detail print detailed report
* @param array $modnames as returned by get_module_types_names()
* @param bool $viewfullnames display users' full names
* @todo implement this function
*/
function zoom_print_recent_mod_activity($activity, $courseid, $detail, $modnames, $viewfullnames) {
}
Expand All @@ -490,7 +487,6 @@ function zoom_print_recent_mod_activity($activity, $courseid, $detail, $modnames
* module uses that capability.
*
* @return array
* @todo implement this function
*/
function zoom_get_extra_capabilities() {
return [];
Expand Down Expand Up @@ -905,7 +901,6 @@ function zoom_reset_course_form_defaults($course) {
* @param stdClass $cm
* @param stdClass $context
* @return array of [(string)filearea] => (string)description
* @todo implement this function
*/
function zoom_get_file_areas($course, $cm, $context) {
return [];
Expand All @@ -927,7 +922,6 @@ function zoom_get_file_areas($course, $cm, $context) {
* @param string $filepath
* @param string $filename
* @return file_info instance or null if not found
* @todo implement this function
*/
function zoom_get_file_info($browser, $areas, $course, $cm, $context, $filearea, $itemid, $filepath, $filename) {
return null;
Expand Down Expand Up @@ -968,7 +962,6 @@ function zoom_pluginfile($course, $cm, $context, $filearea, array $args, $forced
* @param stdClass $course current course record
* @param stdClass $module current zoom instance record
* @param cm_info $cm course module information
* @todo implement this function
*/
function zoom_extend_navigation(navigation_node $navref, stdClass $course, stdClass $module, cm_info $cm) {
}
Expand All @@ -981,7 +974,6 @@ function zoom_extend_navigation(navigation_node $navref, stdClass $course, stdCl
*
* @param settings_navigation $settingsnav complete settings navigation tree
* @param navigation_node $zoomnode zoom administration node
* @todo implement this function
*/
function zoom_extend_settings_navigation(settings_navigation $settingsnav, navigation_node $zoomnode = null) {
}
Expand Down
2 changes: 1 addition & 1 deletion version.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

$plugin->component = 'mod_zoom';
$plugin->version = 2024012500;
$plugin->release = 'v5.1.4';
$plugin->release = 'v5.1.5';
$plugin->requires = 2019052000;
$plugin->maturity = MATURITY_STABLE;
$plugin->cron = 0;
Loading