From: <gem...@li...> - 2012-03-09 08:38:50
|
Revision: 541 http://gemstracker.svn.sourceforge.net/gemstracker/?rev=541&view=rev Author: mennodekker Date: 2012-03-09 08:38:44 +0000 (Fri, 09 Mar 2012) Log Message: ----------- Final steps before tagging 1.5.2 Modified Paths: -------------- trunk/library/changelog.txt trunk/library/classes/Gems/Upgrades.php Modified: trunk/library/changelog.txt =================================================================== --- trunk/library/changelog.txt 2012-03-09 08:28:26 UTC (rev 540) +++ trunk/library/changelog.txt 2012-03-09 08:38:44 UTC (rev 541) @@ -1,3 +1,8 @@ +Important changes from 1.5.1 => 1.5.2 +============================================================ +Renamed project.ini setting concentRejected to consentRejected +Default consent can be changed from 'Unknown' to something else in Project.ini setting consentDefault, please check local respondentController + Important changes from 1.5.0 => 1.5.1 ============================================================ New event introduced: TrackCompletedEvent Modified: trunk/library/classes/Gems/Upgrades.php =================================================================== --- trunk/library/classes/Gems/Upgrades.php 2012-03-09 08:28:26 UTC (rev 540) +++ trunk/library/classes/Gems/Upgrades.php 2012-03-09 08:38:44 UTC (rev 541) @@ -57,6 +57,7 @@ //And add our patches $this->register('Upgrade143to15', 'Upgrade from 1.43 to 1.5'); $this->register('Upgrade15to151', 'Upgrade from 1.5.0. to 1.5.1'); + $this->register('Upgrade151to152', 'Upgrade from 1.5.1. to 1.5.2'); } @@ -94,4 +95,14 @@ return true; } + + /** + * To upgrade to 1.5.2 just execute patchlevel 45 + */ + public function Upgrade15to151() + { + $this->_batch->addTask('Db_ExecutePatch', 45); + + return true; + } } \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |