commit
a41addb05b
10
VERSION
10
VERSION
@ -1,11 +1,5 @@
|
|||||||
v0.2.1
|
v0.2.3
|
||||||
|
|
||||||
Changelog
|
Changelog
|
||||||
|
|
||||||
* Supports nginx (@alex3305)
|
* Bugfix for automatic actions typo error in v0.2.2 (@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)
|
|
||||||
|
@ -85,7 +85,7 @@ function ($scope, $interval, BoardService) {
|
|||||||
getSecondaryText = function(action) {
|
getSecondaryText = function(action) {
|
||||||
var text = ': ',
|
var text = ': ',
|
||||||
actionBoard = getBoardData(action.board_id),
|
actionBoard = getBoardData(action.board_id),
|
||||||
boardCategories = getBoardData(actionBoard),
|
boardCategories = getCategories(actionBoard),
|
||||||
userList = getUsers(actionBoard);
|
userList = getUsers(actionBoard);
|
||||||
|
|
||||||
switch(parseInt(action.trigger_id)) {
|
switch(parseInt(action.trigger_id)) {
|
||||||
|
@ -52,7 +52,7 @@ Admin users have the same, with the additional abilities of adding/editing users
|
|||||||

|

|
||||||
|
|
||||||
###Boards
|
###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
|
* Proposed
|
||||||
* Backlog
|
* Backlog
|
||||||
@ -67,7 +67,7 @@ Or maybe you want to track a simple todo list with just:
|
|||||||
* Doing
|
* Doing
|
||||||
* Done
|
* 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`.
|
Boards may also have categories for additional organization, *e.g.* `Bug`, `Enhancement`, `New Feature`.
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user