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

@ -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);
}
}