summaryrefslogtreecommitdiffstats
path: root/Makefile
AgeCommit message (Collapse)Author
2023-12-26upgrade to latest verison of tui-crates and native crossterm events. (#203)Sebastian Thiel
2023-12-09adjust names of `make fmt` and `make ready`; `fmt` now only checksSebastian Thiel
Let's not have the makefile change the codebase itself.
2023-12-09Adds new target that runs all the checks (to be used before creating a PR)Piotr Wach
2023-12-08run clippy locally just like on CISebastian Thiel
2022-03-19Improve aggregate progress reportingThomas Hurst
Previously, aggregate mode progress reports were handled by an infinitely-looping thread carrying a 64-bit atomic of the current count, which it would print periodically. This resulted in #99 - breaking on platforms without 64-bit atomics, for which a feature was added to disable it. It also implied a race condition, where the "Enumerating ..." message could be printed after results had been gathered but before dua exited. Additionally, part of the status message could be left on the display if the first line of a report was too short to cover it. This commit should resolve these: * The 64-bit atomic counter is replaced with an 8-bit AtomicBool * All printing is controlled from the main thread * The first line is cleared prior to printing a report The only notable drawback I see with this approach is that progress reporting can sometimes be delayed, since the display is only evaluated for update during periods the aggregation loop makes progress. The practical difference appears relatively minor. Since this should resolve #99, the aggregate-scan-progress feature is removed.
2021-08-05Add aggregate-scan-progress feature to help with #99Sebastian Thiel
2021-07-14Add checking and testing of new feature toggleSebastian Thiel
2020-09-28upgrade to latest version of tuiSebastian Thiel
2020-07-06Make interactive mode optional, allow selection of backend for windows, unixSebastian Thiel
2020-02-25Prevent continuous unit tests from triggering themselvesSebastian Thiel
2020-02-01Nicer and leaner makefileSebastian Thiel
2019-06-06refactorSebastian Thiel
2019-06-05move application tests closer to... the application. Nice!Sebastian Thiel
2019-06-04Add 'make test' target, fix unit testsSebastian Thiel
2019-06-02first infrastructure for unit-level testsSebastian Thiel
2019-05-29First instantiation of templateSebastian Thiel