summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2020-07-07Bump patch levelv2.9.1Sebastian Thiel
2020-07-07Merge branch 'rivy-fix.win'Sebastian Thiel
2020-07-07Fix color handling (causing the text to disappear); fix tty detectionSebastian Thiel
Crossterm works differently from termion, I might say: more correct!
2020-07-06add windows wildcard argument support (using `wild`)Roy Ivy III
2020-07-06fix windows compiler warnings (unused_variables)Roy Ivy III
2020-07-06Cut new release: 2.9v2.9.0Sebastian Thiel
2020-07-06releases are working as expectedSebastian Thiel
2020-07-06Skip one test on windowsSebastian Thiel
2020-07-06fix release.ymlSebastian Thiel
2020-07-06windows is nightly only right nowSebastian Thiel
2020-07-06Setup main branch for release build testingSebastian Thiel
2020-07-06Don't implicitly pull in termion! Kills windows build reliably…Sebastian Thiel
2020-07-06Inform about a certain decision related to tui backend supportSebastian Thiel
2020-07-06Make interactive mode optional, allow selection of backend for windows, unixSebastian Thiel
2020-07-06Add preliminary windows test for buildingSebastian Thiel
2020-07-06Completely rid ourselves of Termion to make backend selection possibleSebastian Thiel
2020-07-06Replace termion::color with coloredSebastian Thiel
2020-07-06termcolor spends 1200 lines on handlings buffers, and it's not liking plain ↵Sebastian Thiel
io::Write Which means it doesn't like what's currently there. So let's go back to what can actually work: colored.
2020-07-06for a moment I thought 'colored' could be used, but…Sebastian Thiel
…it's really allocation heavy. Something simpler might be it, what about termcolor?
2020-07-06Always use crossterm for now just to test if it works and…Sebastian Thiel
…it does!
2020-07-06Use crosstermion to create a terminal with the corresponding backendSebastian Thiel
The only question left is how to conform colors.
2020-07-06Allow case-insensitivity with byte format variantsSebastian Thiel
2020-07-06convert input handling to crosstermionSebastian Thiel
2020-07-02show possible variants of byte formatsSebastian Thiel
2020-07-02Put Freaky into the changelog :)Sebastian Thiel
2020-07-02bump patch levelv2.8.2Sebastian 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-02Bump patch levelv2.8.1Sebastian Thiel
2020-07-02Use 'anyhow' instead of 'failure' to simplify code and reduce bloatSebastian Thiel
2020-07-02bump minor versionv2.8.0Sebastian Thiel
2020-07-02All tests work with argh (which really needs aliases)Sebastian Thiel
2020-07-02First version of options struct based on ArghSebastian Thiel
2020-07-02upgrade byte-unit to version 4v2.7.0Sebastian Thiel
2020-07-02update dependenciesSebastian Thiel
2020-07-02fix unittests, at least to work locally on MacOSSebastian Thiel
2020-07-02Cut a new minor release: 2.7Sebastian Thiel
2020-07-02Use u128 for byte sizesThomas Hurst
Per issue #58, u64 is insufficient for use with very large sparse files. Enormous file sizes are also a common filesystem error trope, either from disk corruption or software bugs, and they're also conceivable with virtual filesystems. Handle this as gracefully as can be reasonably expected using 128-bit integers, which should be sufficient for most uses.
2020-07-01Fix inode filtering with multiple devicesThomas Hurst
Inodes are only unique per device, so include device in the lookup. Also replace a conditional with an additional pattern match, makes it a bit tidier I think.
2020-06-02Add more information about what it means to 'quit more quickly'Sebastian Thiel
As kindly requested in #55
2020-05-31bump patch levelv2.6.1Sebastian Thiel
2020-05-31Avoid deallocation a potentially big hashmapSebastian Thiel
2020-05-31Abort on panic for smaller binaries; update dependenciesSebastian Thiel
2020-05-28Check package size limit in CI using cargo-dietSebastian Thiel
2020-05-27Fix install script instructionsSebastian Thiel
2020-05-26Optimize crate size with `cargo diet -r`Sebastian Thiel
2020-05-21remove unused filesSebastian Thiel
2020-05-20Add information about Windows installationsSebastian Thiel
Related to #2
2020-05-19disable test modeSebastian Thiel
2020-05-19see if all targets work!Sebastian Thiel