mirror of
https://github.com/GothenburgBitFactory/taskshell.git
synced 2025-06-26 10:54:29 +02:00
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:
parent
09032052d1
commit
d5bd17cff0
3 changed files with 5 additions and 1 deletions
1
AUTHORS
1
AUTHORS
|
@ -3,6 +3,7 @@ the following people:
|
||||||
|
|
||||||
Paul Beckingham (Principal Author)
|
Paul Beckingham (Principal Author)
|
||||||
Federico Hernandez (Principal Author)
|
Federico Hernandez (Principal Author)
|
||||||
|
Dirk Deimeke (Technical Advisor & Evangelist)
|
||||||
|
|
||||||
The following submitted code, packages or analysis, and deserve special thanks:
|
The following submitted code, packages or analysis, and deserve special thanks:
|
||||||
|
|
||||||
|
|
|
@ -6,6 +6,9 @@
|
||||||
(thanks to Eric Hymowitz).
|
(thanks to Eric Hymowitz).
|
||||||
- TS-34 Tasksh throw a warning at the end of a review command
|
- TS-34 Tasksh throw a warning at the end of a review command
|
||||||
(thanks to bjonnh).
|
(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 ---------------------------
|
------ current release ---------------------------
|
||||||
|
|
||||||
|
|
|
@ -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.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.sort", "reviewed+,modified+"}, input, output);
|
||||||
execute ("task", {"rc.confirmation:no", "rc.verbose:nothing", "config", "report._reviewed.filter",
|
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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue