summaryrefslogtreecommitdiffstats
path: root/src/options.rs
AgeCommit message (Collapse)Author
2024-01-23feat: add `dua i --no-entry-check` flag. (#227)Sebastian Thiel
With it, in interactive mode, entries will not be checked for presence. This can avoid laggy behaviour when switching between directories as `lstat` calls will not run, which can be slow on some filesystems.
2023-12-27feat: add `--log-file` flag to keep track of some debug info, which includes ↵Sebastian Thiel
panics. Previously, when `dua i` was used, panics would be hard to observe, if at all, as they would print to the alternate screen. Now, when the `--log-file dua.log` is specified, the panic will be emitted into the log file instead and thus won't be lost anymore. This may help with debugging in future.
2023-12-27Option to enable debug logsPiotr Wach
2023-12-26upgrade to latest verison of tui-crates and native crossterm events. (#203)Sebastian Thiel
2023-03-12feat: improve CLI help provided with the `--format` flag.Sebastian Thiel
It's now possible to see what possible values are without reading a swath of text. Now the default is shown as well which is more important now that it changes depending on the platform.
2023-03-12refactorSebastian Thiel
2023-03-11use binary format by default (except on macOS)Helmut K. C. Tessarek
2022-12-13upgrade to clap 4Sebastian Thiel
2022-09-19thanks clippySebastian Thiel
2022-02-21Adjust to changes in clapSebastian Thiel
2022-01-23Update clap to official releaseMarcin Puc
2021-12-27upgrade clapSebastian Thiel
2021-12-27feat: Add `--ignore-dirs` option, with useful default on linux (#116)Sebastian Thiel
On linux there are a few directories which shouldn't be traversed by default as they may cause hangs and blocking. With the new argument it's possible to specify absolute directories to not enter during traversal, with a default set to avoid problematic directories on linux right away.
2021-10-26fix: cargo install without --locked should work now (#111)Sebastian Thiel
2021-08-16Fix #102, bump patch levelSebastian Thiel
2021-06-07Set default processor count on Apple Silicon in a way that won't be totally ↵Sebastian Thiel
wrong in future Soon new hardware will be revealed which probably acts differently.
2021-01-23Fix --versionSebastian Thiel
Fixes #76
2020-12-16Select better default thread count on Apple Silicon (M1)Sebastian Thiel
2020-11-15Custom usage to fix #71Sebastian Thiel
2020-11-15switch from structup to clap 3 beta.2Sebastian Thiel
…to see if the order of arguments is corrected. It's not the case. Related to #71
2020-07-06Make interactive mode optional, allow selection of backend for windows, unixSebastian Thiel
2020-07-06Allow case-insensitivity with byte format variantsSebastian Thiel
2020-07-02show possible variants of byte formatsSebastian Thiel
2020-07-02make aliases visible in generated docsSebastian Thiel
2020-07-02Bring structopt back, argh doesn't support OsStringsSebastian Thiel
https://www.reddit.com/r/rust/comments/hjn64e/dua_28_disk_usage_analyzer_is_now_430kb_smaller/fwnjjp9?utm_source=share&utm_medium=web2x
2020-07-02All tests work with argh (which really needs aliases)Sebastian Thiel
2020-05-04Add '-x' flag to not cross filesystemsSebastian Thiel
Fixes #3
2020-02-22Rename 'count-links' to more descriptive 'count-hard-links'Sebastian Thiel
2020-02-22Add hardlink tracking, and an option to disable itThomas Hurst
2020-02-22Add support for real/apparent sizeThomas Hurst
2019-11-06Update all dependencies to latest versionSebastian Thiel
2019-06-04Add support for static byte unitsSebastian Thiel
2019-06-04Rename 'human*' formats to their non-prefixed counterpartSebastian Thiel
This makes more sense, and is more comfortable.
2019-06-02basic frame to support new interactive modeSebastian Thiel
2019-06-01Simplified handling of 'no paths given' casev1.1.0Sebastian Thiel
2019-06-01now with colored helpSebastian Thiel
2019-06-01Add simple statistics, just for fun!Sebastian Thiel
2019-06-01Sort by size in bytes by default; can be turned off for immediate feedbackSebastian Thiel
2019-06-01Pull out all modules into filesSebastian Thiel