aboutsummaryrefslogtreecommitdiff
path: root/src/output/sorting.rs
AgeCommit message (Collapse)Author
2021-11-17fix testsDaniel Schadt
2021-11-12Minor code smell fixesDaniel
2020-10-10fix testsv1.3.1Daniel
2020-10-10fix lintsDaniel
2020-10-04update to newest evtclibDaniel
There's a good chance that this will be evtclib 0.5, so we want to adapt our API usage (mainly replacing evtclib::Boss with evtclib::Encounter). The naming is a bit all over the place now, as we sometimes refer to bosses and sometimes to encounters, but I hope to make a sensible decision at *some point* about what we're actually doing here.
2020-06-26implement sorting based on durationDaniel Schadt
2020-06-12fix tests for sortingDaniel
2020-05-14add a small test for sorting with SortingDaniel
2020-05-14fix testsDaniel
We changed the descending prefix to be ~ earlier, so now we need to adjust the tests as well.
2020-05-13fix formattingDaniel
2020-05-13change sorting reversing prefix to ~Daniel
Since - leads to structopt interpreting the component as the start of another argument, we need to use a different one.
2020-05-13first attempt at sorting outputDaniel
This does currently not work yet, as we cannot call .finish() on dyn Aggregator. This needs to be adjusted. However, this provides the basic infrastructure for producing sorted output, including the required command line parsing.