summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2020-03-16bump patch levelv2.3.6Sebastian Thiel
2020-03-16potentially faster release binaries; smaller release binariesSebastian Thiel
2020-03-16Now we are truly single-threaded when threads = 1Sebastian Thiel
2020-03-16Add marker for future improvement : parallel deletionSebastian Thiel
2020-03-16jwalk 0.5 has landed - now we don't follow symlinks during traversal!Sebastian Thiel
2020-03-15Bump patch levelv2.3.5Sebastian Thiel
2020-03-15Revert "Upgrade to jwalk 0.5; stop following symlinks during traversal"Sebastian Thiel
This reverts commit 4990fa4202f2b687ee2476efe0a406fdfe23fd96. Performance regression - it only uses a single thread for most of the iteration.
2020-03-15Upgrade to jwalk 0.5; stop following symlinks during traversalv2.3.4Sebastian Thiel
2020-03-15minor update: itertoolsSebastian Thiel
2020-03-15updated dependencies, againSebastian Thiel
2020-03-15remove 32bit apple target, it's now unsupportedSebastian Thiel
2020-03-15Bump patch level; update dependenciesSebastian Thiel
2020-03-15adapt journey tests to changed signatureSebastian Thiel
related to #42
2020-03-14bump versiov2.3.3Sebastian Thiel
2020-03-14exit the program directly to avoid latencySebastian Thiel
2020-02-25Add Fedora installation instructionsArtem Polishchuk
2020-02-25Prevent continuous unit tests from triggering themselvesSebastian Thiel
2020-02-25Add license file to TUI-react; include it in dua, update dependenciesv2.3.2tui-react-v0.2.1Sebastian Thiel
related to https://github.com/Byron/dua-cli/issues/38
2020-02-23dependency update, version bumpv2.3.1Sebastian Thiel
2020-02-22(cargo-release) start next development iteration 2.3.1-alpha.0Sebastian Thiel
2020-02-22Update readme in preparation for new releasev2.3.0Sebastian Thiel
[skip CI]
2020-02-22Rename 'count-links' to more descriptive 'count-hard-links'Sebastian Thiel
2020-02-22Merge branch 'Freaky-hardlink-tracking'Sebastian Thiel
2020-02-22Remove short-comings from README, as they are not present anymoreSebastian Thiel
2020-02-22cargo fmtSebastian Thiel
2020-02-22Add hardlink tracking, and an option to disable itThomas Hurst
2020-02-22(cargo-release) start next development iteration 2.2.1-alpha.0Sebastian Thiel
2020-02-22dependency update, cut releasev2.2.0Sebastian Thiel
2020-02-22Merge branch 'Freaky-apparent-size'Sebastian Thiel
2020-02-22Add support for real/apparent sizeThomas Hurst
2020-02-01Upgrade tui-reactSebastian Thiel
2020-02-01New release of tui-reactSebastian Thiel
2020-02-01cargo update - will a better lock file fix this issue?Sebastian Thiel
2020-02-01Fix installation instructionsSebastian Thiel
[skip CI]
2020-02-01For now, only run unit-tests on CISebastian Thiel
It needs more patience to make things work on linux, but is entirely possible thanks to the docker support built-in to this project.
2020-02-01Fix script paths; add badge2.1.13Sebastian Thiel
2020-02-01Add installation noteSebastian Thiel
2020-02-01Add travis support including releasesSebastian Thiel
2020-02-01Update tui to 0.8Sebastian Thiel
2020-02-01Update petgraphSebastian Thiel
2020-02-01cargo-update + new Cargo.lock formatSebastian Thiel
2020-02-01Nicer and leaner makefileSebastian Thiel
2019-12-29Fix version in READMESebastian Thiel
2019-11-06Update all dependencies to latest versionSebastian Thiel
2019-10-23Bump versionv2.1.12Sebastian Thiel
2019-10-23Make sure borders are drawn more priminently on focusSebastian Thiel
While still being distinguishable on light backgrounds.
2019-07-26Bump version to 2.2.0v2.1.11Sebastian Thiel
2019-07-26Update dependenciesVinzent Steinberg
2019-07-26Don't follow symlinks when calculating size interactivelyVinzent Steinberg
This should provide more accurate results. Unfortunately, this cannot be easily fixed for the non-interactive part of the app, because it uses `jwalk` which does not expose any options to deal with symlinks.
2019-07-26Don't follow symlinks when deleting files recursivelyVinzent Steinberg
The fix in 560a76d43fa44c4ebf9bdc51087647bb800bbe68 did not work, because it checked the metadata of the file the symlink was pointing to, instead of the metadata of the symlink. Effectively, this resulted in symlinks never being detected. Also see https://doc.rust-lang.org/std/fs/struct.FileType.html#method.is_symlink. Fixes #24.