Feature - dependency column justification
- The dependency columns are now right-justified (thanks to Eric Fluger).
This commit is contained in:
@@ -26,6 +26,7 @@
|
||||
+ Eliminated dependency on ncurses.
|
||||
+ Added _query helper command for script writers, which accepts a filter like
|
||||
any other report, but returns only full JSON.
|
||||
+ The dependency columns are now right-justified (thanks to Eric Fluger).
|
||||
+ Fixed bug #515, which displayed an incorrect message after duplicating a
|
||||
non-existent task (thanks to Peter De Poorter).
|
||||
+ Fixed bug #529, where the 'depends' attribute was not mentioned in the
|
||||
|
||||
9
INSTALL
9
INSTALL
@@ -63,14 +63,13 @@ step 7 above, they must first be regenerated by following steps [1], [2] and
|
||||
|
||||
$ sudo make uninstall
|
||||
|
||||
---
|
||||
|
||||
Taskwarrior Build Notes
|
||||
----------------
|
||||
-----------------------
|
||||
|
||||
Taskwarrior 1.9 has dependencies that are detected by the configure program in
|
||||
almost all cases, but there are situations and operating systems that mean you
|
||||
will need to offer configure a little help.
|
||||
Taskwarrior 1.9 has dependencies that are detected by cmake in almost all cases,
|
||||
but there are situations and operating systems that mean you will need to offer
|
||||
a little help.
|
||||
|
||||
If taskwarrior will not build on your system, first take a look at the Operating
|
||||
System notes below. If this doesn't help, then go to the Troubleshooting
|
||||
|
||||
@@ -520,7 +520,7 @@ int handleCustomReport (const std::string& report, std::string& outs)
|
||||
{
|
||||
table.addColumn (columnLabels[*col] != "" ? columnLabels[*col] : "Deps");
|
||||
table.setColumnWidth (columnCount, Table::minimum);
|
||||
table.setColumnJustification (columnCount, Table::left);
|
||||
table.setColumnJustification (columnCount, Table::right);
|
||||
|
||||
int row = 0;
|
||||
std::vector <Task> blocked;
|
||||
|
||||
Reference in New Issue
Block a user