Skip to content
This repository was archived by the owner on Apr 11, 2022. It is now read-only.

Commit 5317876

Browse files
committed
Updated version
1 parent 38bdee4 commit 5317876

2 files changed

Lines changed: 12 additions & 2 deletions

File tree

boost/boost.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
* @license http://opensource.org/licenses/gpl-3.0.html
1919
*/
2020
$proper_name = 'Properties';
21-
$version = '2.1.6';
21+
$version = '2.1.7';
2222
$register = false;
2323
$unregister = false;
2424
$import_sql = false;

boost/update.php

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,10 @@ public function run(&$content)
139139
case $this->compare('2.1.6'):
140140
$methodName = $this->getMethodName('2.1.6');
141141
$this->$methodName($content);
142+
143+
case $this->compare('2.1.7'):
144+
$methodName = $this->getMethodName('2.1.7');
145+
$this->$methodName($content);
142146
}
143147
return $content;
144148
}
@@ -354,13 +358,19 @@ public function v2_1_5(&$content)
354358
$updates = array('Fixed Show more logic breaking searching.');
355359
$this->addContent($content, '2.1.5', $updates);
356360
}
357-
361+
358362
public function v2_1_6(&$content)
359363
{
360364
$updates = array('Added search bar to manager desktop', 'Added sort options to manager desktop', 'Fixed Show more button on manager desktop');
361365
$this->addContent($content, '2.1.6', $updates);
362366
}
363367

368+
public function v2_1_7(&$content)
369+
{
370+
$updates = array('Update Babel library.', 'Rewrote photo crop logic.', 'Fixed IE problems with rerouting.');
371+
$this->addContent($content, '2.1.7', $updates);
372+
}
373+
364374
private function addContent(&$content, $version, array $changes)
365375
{
366376
$changes_string = implode("\n+ ", $changes);

0 commit comments

Comments
 (0)