Skip to content

Commit

Permalink
Version 8.9.1 (2024121800)
Browse files Browse the repository at this point in the history
  • Loading branch information
ibernhardf committed Dec 18, 2024
1 parent a5cbb04 commit e26e93f
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 3 deletions.
24 changes: 24 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
## Version 8.9.1 (2024121800)
* Improvement: Add helper function to get a list of all cmids (of all booking instances).
* Improvement: GH-771 Show countlabel whenever filters are activated (to have the reset button).
* Improvement: Add "h" string also to htmlstring.
* Improvement: Truncate teacher description on overview page, add modal to view long description directly.
* Improvement: Add debug messages, so we can investigate broken download (Wunderbyte-GmbH/Wunderbyte-GmbH#283).
* Improvement: Improve settings for Moodle Mobile App.
* Improvement: Try catch for campaign application to make sure nothing breaks if campaign contains errors.
* Improvement: Codestyle remove duplicated function.
* Bugfix: GH-765 Make sure we don't encounter error with legacy booking answers.
* Bugfix: Display "hour" only once.
* Bugfix: Correctly create and delete user events (for each session) for teachers of booking options.
* Bugfix: Error when creating booking option templates with teachers, dates and addtocalendar active (fixes #766).
* Bugfix: strip_tags needs string value, null not allowed.
* Bugfix: Check for singleton of (extrabutton-)condition.
* Bugfix: Add link to booking rules for string deleteinfoscheckboxadminwarning.
* Bugfix: Correctly handle cancel of reservation in report.php (#759).
* Bugfix: Make sure rules of instance are deleted with booking instance (#764).
* Test: New phpunit test method test_backup_restore_bookings_with_options_quiz_into_other_course() (#518).
* Test: Extend phpunit test method test_backup_restore_bookings_with_options_quiz_into_other_course() to use custom fields too (#518).
* Test: Update phpunit test method test_backup_restore_bookings_with_options_quiz_into_other_course() to use few date sessions (#518).
* Test: Improve cache clean-up.
* Test: New phpunit test_rule_on_freeplace_on_intervals() (#467).

## Version 8.9.0 (2024121200)
* Improvement: Possibility to turn off prices for not logged in users #762.
* Improvement: Empty tabs (#709).
Expand Down
6 changes: 3 additions & 3 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@

defined('MOODLE_INTERNAL') || die();

$plugin->version = 2024121701;
$plugin->version = 2024121800;
$plugin->requires = 2022112800; // Requires this Moodle version. Current: Moodle 4.1.
$plugin->release = '8.9.0';
$plugin->release = '8.9.1';
$plugin->maturity = MATURITY_STABLE;
$plugin->component = 'mod_booking';
$plugin->supported = [401, 405];
$plugin->dependencies = [
'local_wunderbyte_table' => 2024112800,
'local_wunderbyte_table' => 2024121200,
];

0 comments on commit e26e93f

Please sign in to comment.