diff --git a/ChangeLog b/ChangeLog index 28b3d4f2a..d177dea87 100644 --- a/ChangeLog +++ b/ChangeLog @@ -17,13 +17,15 @@ + Added feature #700, which adds tab-completion of built-in tags. + Added feature #710, which adds an attribute modifier prefix to return the complement of a filtered set (thanks to Dan White). + + Added feature #714, including Belarus holidays (thanks to Alexei Romanoff). # Tracked Bugs, sorted by ID. + Fixed bug #703, where global substitutions didn't make all expected annotation changes. + Fixed Bug #713, which fixes typos in the holidays-UK.rc file (thanks to Alexei Romanoff). - + Added feature #714, including Belarus holidays (thanks to Alexei Romanoff). + + Fixed Bug #723, which displayed a misleading message when the output was + truncated to a page. # Untracked Bugs, biggest first. diff --git a/src/custom.cpp b/src/custom.cpp index 104c7e0e4..a3c6f3d22 100644 --- a/src/custom.cpp +++ b/src/custom.cpp @@ -677,7 +677,7 @@ int handleCustomReport (const std::string& report, std::string& outs) out << ", " << maxrows << " shown"; if (maxlines && maxlines < table.rowCount ()) - out << ", truncated to " << maxlines - table_header << " tasks"; + out << ", truncated to " << maxlines - table_header << " lines"; out << std::endl; } diff --git a/test/limit.t b/test/limit.t index f59e1d6dc..d7669cde7 100755 --- a/test/limit.t +++ b/test/limit.t @@ -80,7 +80,7 @@ $output = qx{../src/task rc:limit.rc ls limit:3}; like ($output, qr/^30 tasks, 3 shown$/ms, 'limited to 3'); $output = qx{../src/task rc:limit.rc ls limit:page}; -like ($output, qr/^30 tasks, truncated to 17 tasks$/ms, 'limited to page'); +like ($output, qr/^30 tasks, truncated to 17 lines$/ms, 'limited to page'); # Cleanup. unlink 'pending.data';