summaryrefslogtreecommitdiffstats
path: root/src
AgeCommit message (Collapse)Author
2021-04-21Fix help menu typoJack Youstra
2021-03-23thanks clippySebastian Thiel
2021-02-20Respect 'stay_on_filesystem' when no input files are providedZeb Piasecki
2021-02-15Enforce drawing once after traversal is doneSebastian Thiel
Otherwise some 'scanning' message is likely to remain if there is no additional user input.
2021-02-15Keep selecting the first element during iteration unless…Sebastian Thiel
…the user provided input already. Related to #77
2021-02-15thanks clippySebastian Thiel
2021-02-15Add bindings 'H' and 'G' to go to the top/bottom of any paneSebastian Thiel
Fixes #78
2021-01-23Fix --versionSebastian Thiel
Fixes #76
2021-01-04dependency updateMaxim Zhukov
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-11-02Show 'scanning' note even without entering a directorySebastian Thiel
related to #70
2020-07-27refactorSebastian Thiel
2020-07-27src, aggregate: fix colors for aggregate modeMaxim Zhukov
Use Cyan for folders in aggregate mode Signed-off-by: Maxim Zhukov <mussitantesmortem@gmail.com>
2020-07-23fix styling for folders (cyan=folders, not chagned - regular files)Maxim Zhukov
Signed-off-by: Maxim Zhukov <mussitantesmortem@gmail.com>
2020-07-23fix clippy warningsMaxim Zhukov
Signed-off-by: Maxim Zhukov <mussitantesmortem@gmail.com>
2020-07-22Minor style improvements to handle special caseSebastian Thiel
2020-07-22Avoid jump when cycling through byte visualizationSebastian Thiel
2020-07-22fix mark paneSebastian Thiel
2020-07-22Help is back to normalSebastian Thiel
2020-07-22Help looks better now, but is far from 'normal'Sebastian Thiel
2020-07-22Switch to crosstermion 0.3 for tui 0.10 supportSebastian Thiel
2020-07-22Merge remote-tracking branch 'origin/master'Sebastian Thiel
2020-07-22Upgrade to tui 0.10 step one…tui-react-v0.10.0Sebastian Thiel
…which can be followed by a crosstermion upgrade once prodash/crosstermion have caught up.
2020-07-22Fix path construction of 'sample_02_tree' for testRoy Ivy III
2020-07-22Fix platform size difference of 'sample_01_tree' for testRoy Ivy III
- symbolic links are '0' size on windows vs '1' on *nix-type platforms
2020-07-22Re-enable test, disabled accidentallySebastian Thiel
2020-07-22update to colored 2.0Sebastian Thiel
2020-07-22fix test on windows - it's breaking now since #53 is fixedSebastian Thiel
Or so it seems… Life is too short to look into yet another windows-path related issue.
2020-07-22Don't pay extra on linux for helping with #53Sebastian Thiel
2020-07-22Use full path for obtaining the 'real size on disk'Sebastian Thiel
This fixes a long standing issue on windows, #53, which relies on the full path to be used. On linux, it seems to be enough to use the meta-data, which is also passed along. On windows, the path seems to actually be used, explaining why it wonderously didn't work on windows before.
2020-07-11Replace flume with just std::sync::mpscSebastian 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-06Skip one test on windowsSebastian Thiel
2020-07-06Make interactive mode optional, allow selection of backend for windows, unixSebastian 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-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-02Use 'anyhow' instead of 'failure' to simplify code and reduce bloatSebastian Thiel