Skip to content

Commit

Permalink
v5.21.06
Browse files Browse the repository at this point in the history
  • Loading branch information
Ross Parker committed Nov 7, 2022
1 parent 46a80ee commit 1beafd7
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 2 deletions.
5 changes: 5 additions & 0 deletions Free Learning/CHANGEDB.php
Original file line number Diff line number Diff line change
Expand Up @@ -2156,3 +2156,8 @@
++$count;
$sql[$count][0] = '5.21.05';
$sql[$count][1] = "";

//v5.21.06
++$count;
$sql[$count][0] = '5.21.06';
$sql[$count][1] = "";
4 changes: 4 additions & 0 deletions Free Learning/CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
CHANGELOG
=========
v5.21.06
--------
Extended execution time and memory limit for unit download

v5.21.05
--------
Added bulk Lock/Unlock option in Manage Units
Expand Down
2 changes: 1 addition & 1 deletion Free Learning/manifest.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
$entryURL = 'units_browse.php';
$type = 'Additional';
$category = 'Learn';
$version = '5.21.05';
$version = '5.21.06';
$author = 'Ross Parker';
$url = 'http://rossparker.org/free-learning';

Expand Down
5 changes: 5 additions & 0 deletions Free Learning/units_browse_details_export.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@
include $tcpdfFile;
}

// Override the ini to keep this process alive
ini_set('memory_limit', '2048M');
ini_set('max_execution_time', 1800);
set_time_limit(1800);

$output = '';

$publicUnits = $container->get(SettingGateway::class)->getSettingByScope('Free Learning', 'publicUnits');
Expand Down
2 changes: 1 addition & 1 deletion Free Learning/version.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@
/**
* Sets version information.
*/
$moduleVersion = '5.21.05';
$moduleVersion = '5.21.06';
$coreVersion = '24.0.00';

0 comments on commit 1beafd7

Please sign in to comment.