Skip to content

Commit

Permalink
Version bump and changelog update
Browse files Browse the repository at this point in the history
  • Loading branch information
marcusgreen committed Oct 24, 2023
1 parent 4f3a166 commit 3da6237
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
10 changes: 8 additions & 2 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,11 @@ Version 1.0.0 of the Moodle driprelease tool Oct 2023
Added course group option to create restriction sets to limit access both
between dates and by course group membership.

Changed date incrementation so it starts from the first selected checkbox, rather than the
first item from the list of activities.
Changed date incrementation so it starts from the first selected checkbox, rather than the first item from the list of activities.

Version 1.0.1 of the Moodle driprelease tool Oct 2023

Fixed errors in the form code that showed when Debug was set higher than Normal.
Removed redundant variables (purely for code clarity)
Clarified some of the help strings in the form, which had references to when sessions
were measured in weeks not days. Setting in days means it can deal with a "one quiz a day" scenario, which is bound to be required at some point.
2 changes: 1 addition & 1 deletion lang/en/tool_driprelease.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
defined('MOODLE_INTERNAL') || die();
$string['activitiespersession'] = 'Activities per session';
$string['activitiespersession_text'] = 'Set the number of activitie that are available in each session, e.g. if a session is one week 5 will give you one per day';
$string['activitiespersession_help'] = 'How many items per session, for example if set to 10 and "Repeat every" is set to 2 (weeks), students would see 5 activities per week';
$string['activitiespersession_help'] = 'How many items per session, for example if Activities per session is set to 5 and "Session length" is set to 7 (days), students would see 5 activities per week';
$string['activitiesincourse'] = 'Activities in course';
$string['courshasnogroups'] = 'This course has no groups';
$string['coursesettingnogroups'] = 'This course is set to no groups';
Expand Down
4 changes: 2 additions & 2 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
defined('MOODLE_INTERNAL') || die();

$plugin->component = 'tool_driprelease';
$plugin->release = '1.0.0';
$plugin->version = 2023100300;
$plugin->release = '1.0.1';
$plugin->version = 2023102400;
$plugin->requires = 2020110900;
$plugin->maturity = MATURITY_BETA;

0 comments on commit 3da6237

Please sign in to comment.