mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Bug
- On the 'udas' report, the orphans were not counted separately for the totals.
This commit is contained in:
parent
2815fcb90d
commit
a3b56feb1f
2 changed files with 3 additions and 2 deletions
|
@ -25,6 +25,7 @@ Features
|
||||||
+ Filter optimization: with no 'OR' or 'XOR' operators, no UUIDS but with IDs
|
+ Filter optimization: with no 'OR' or 'XOR' operators, no UUIDS but with IDs
|
||||||
the completed.data file is not referenced
|
the completed.data file is not referenced
|
||||||
+ Reduced excessive number of sort columns on certain reports
|
+ Reduced excessive number of sort columns on certain reports
|
||||||
|
+ Speed boost for 'next' report
|
||||||
+ Similar helper subcommands for 'uuids' as for there is for 'ids' (_uuids and
|
+ Similar helper subcommands for 'uuids' as for there is for 'ids' (_uuids and
|
||||||
_zshuuids).
|
_zshuuids).
|
||||||
+ Possible to specify the date format when editing with 'dateformat.edit'.
|
+ Possible to specify the date format when editing with 'dateformat.edit'.
|
||||||
|
|
|
@ -158,8 +158,8 @@ int CmdUDAs::execute (std::string& output)
|
||||||
<< orphanView.render ()
|
<< orphanView.render ()
|
||||||
<< optionalBlankLine ()
|
<< optionalBlankLine ()
|
||||||
<< (udas.size () == 1
|
<< (udas.size () == 1
|
||||||
? format (STRING_CMD_UDAS_ORPHAN, udas.size ())
|
? format (STRING_CMD_UDAS_ORPHAN, orphans.size ())
|
||||||
: format (STRING_CMD_UDAS_ORPHANS, udas.size ()))
|
: format (STRING_CMD_UDAS_ORPHANS, orphans.size ()))
|
||||||
<< "\n";
|
<< "\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue