summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2016-08-14 14:50:04 -0400
committerFrederic Guillot <fred@kanboard.net>2016-08-14 14:50:04 -0400
commitd8b60ca0fa8d2e1fb3fa711dd24be16e01097654 (patch)
treee05db4cfa82292901cedff95cdb255972707deae
parent50b354851f6549bca084d79291749020d5fb4588 (diff)
Update test case, ChangeLog and contributors
-rw-r--r--CONTRIBUTORS.md1
-rw-r--r--ChangeLog5
-rw-r--r--tests/units/Helper/TaskHelperTest.php1
3 files changed, 7 insertions, 0 deletions
diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md
index c55debeb..b4c623ee 100644
--- a/CONTRIBUTORS.md
+++ b/CONTRIBUTORS.md
@@ -111,6 +111,7 @@ Contributors:
- [Raphaël Doursenaud](https://github.com/rdoursenaud)
- [René Stoltenberg](https://github.com/rstoltenberg)
- [Renothing](https://github.com/renothing)
+- [Rys Sommefeldt](https://github.com/rys)
- [Rzeka](https://github.com/rzeka)
- [Sébastien Kergreis](https://github.com/kerro)
- [Sebastien Pacilly](https://github.com/spacilly)
diff --git a/ChangeLog b/ChangeLog
index 25a92168..1ef7ebd3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,8 +1,13 @@
Version 1.0.33 (unreleased)
--------------
+New features:
+
+* New API calls for task metadata
+
Improvements:
+* Allow priority changes for inverted priority scales
* Add the possibility to attach template hooks with local variables and callback
* Add "reference" hooks
* Show project name in task forms
diff --git a/tests/units/Helper/TaskHelperTest.php b/tests/units/Helper/TaskHelperTest.php
index 454da553..2e2da6ee 100644
--- a/tests/units/Helper/TaskHelperTest.php
+++ b/tests/units/Helper/TaskHelperTest.php
@@ -9,6 +9,7 @@ class TaskHelperTest extends Base
public function testSelectPriority()
{
$helper = new TaskHelper($this->container);
+ $this->assertNotEmpty($helper->selectPriority(array('priority_end' => '1', 'priority_start' => '5', 'priority_default' => '2'), array()));
$this->assertNotEmpty($helper->selectPriority(array('priority_end' => '3', 'priority_start' => '1', 'priority_default' => '2'), array()));
$this->assertEmpty($helper->selectPriority(array('priority_end' => '3', 'priority_start' => '3', 'priority_default' => '2'), array()));
}