Review: report now defaults to 6 days instead of 1 weeķ, which is more

convenient for those who review weekly

- Thanks to Dirk Deimeke.
This commit is contained in:
Paul Beckingham 2017-02-05 15:03:13 +01:00
parent 09032052d1
commit d5bd17cff0
3 changed files with 5 additions and 1 deletions

View file

@ -3,6 +3,7 @@ the following people:
Paul Beckingham (Principal Author)
Federico Hernandez (Principal Author)
Dirk Deimeke (Technical Advisor & Evangelist)
The following submitted code, packages or analysis, and deserve special thanks:

View file

@ -6,6 +6,9 @@
(thanks to Eric Hymowitz).
- TS-34 Tasksh throw a warning at the end of a review command
(thanks to bjonnh).
- Review report now defaults to 6 days instead of 1 weeķ, which is more
convenient for those who review weekly
(thanks to Dirk Deimeke).
------ current release ---------------------------

View file

@ -296,7 +296,7 @@ int cmdReview (const std::vector <std::string>& args, bool autoClear)
execute ("task", {"rc.confirmation:no", "rc.verbose:nothing", "config", "report._reviewed.columns", "uuid" }, input, output);
execute ("task", {"rc.confirmation:no", "rc.verbose:nothing", "config", "report._reviewed.sort", "reviewed+,modified+"}, input, output);
execute ("task", {"rc.confirmation:no", "rc.verbose:nothing", "config", "report._reviewed.filter",
"( reviewed.none: or reviewed.before:now-1week ) and ( +PENDING or +WAITING )" }, input, output);
"( reviewed.none: or reviewed.before:now-6days ) and ( +PENDING or +WAITING )" }, input, output);
}
}