Merge pull request #30 from kiswa/master

Merge master into demo
This commit is contained in:
Matt 2014-10-21 08:38:44 -04:00
commit a41addb05b
3 changed files with 5 additions and 11 deletions

10
VERSION
View File

@ -1,11 +1,5 @@
v0.2.1
v0.2.3
Changelog
* Supports nginx (@alex3305)
* Supports use in Docker (Ubuntu Trusty & nginx - @alex3305)
* Build scripts executable by default (@niedzielski)
* Automatic Actions now allow "Unassigned" and "Uncategorized" for changing assignee or category (Issue #5)
* Links in item descriptions open in new tab (Issue #18)
* Lanes are now Columns to match common Kanban terminology (Issue #4)
* Any exception in API is handled and returns a 503 (inspired by @amalfra)
* Bugfix for automatic actions typo error in v0.2.2 (@alex3305)

View File

@ -85,7 +85,7 @@ function ($scope, $interval, BoardService) {
getSecondaryText = function(action) {
var text = ': ',
actionBoard = getBoardData(action.board_id),
boardCategories = getBoardData(actionBoard),
boardCategories = getCategories(actionBoard),
userList = getUsers(actionBoard);
switch(parseInt(action.trigger_id)) {

View File

@ -52,7 +52,7 @@ Admin users have the same, with the additional abilities of adding/editing users
![Settings Image](http://taskboard.matthewross.me/docs/images/settings-standard.png)
###Boards
Each board may have as many lanes as needed. For example, a software project might have lanes like:
Each board may have as many columns as needed. For example, a software project might have columns like:
* Proposed
* Backlog
@ -67,7 +67,7 @@ Or maybe you want to track a simple todo list with just:
* Doing
* Done
It's all up to you! However many lanes you have, each lane may have tasks added to it, and tasks can be dragged to other lanes as they progress (or edited and assigned to a new lane).
It's all up to you! However many columns you have, each column may have tasks added to it, and tasks can be dragged to other columns as they progress (or edited and assigned to a new column).
Boards may also have categories for additional organization, *e.g.* `Bug`, `Enhancement`, `New Feature`.