summaryrefslogtreecommitdiffstats
path: root/CHANGELOG.md
AgeCommit message (Collapse)Author
2020-04-08version 0.13.6v0.13.6Canop
2020-04-07small performance improvements of fuzzy scoringCanop
2020-03-28version 0.13.5Canop
It's released with a man page - Fix #165
2020-03-27add a man pagev0.13.5Canop
It can be built with release.sh or found in the official releases of new versions.
2020-03-24right key open directory, left key gets back (when input is empty)Canop
Fix #179
2020-03-19use $XDG_CONFIG_HOME/git/ignore if core.excludesFile is missingCanop
Fix #212
2020-03-19replace ~ in path arguments with user home dirCanop
Fix #211
2020-03-13version 0.13.4v0.13.4Canop
2020-03-01support verb {args} made of an optional group (experimental)Canop
Fix #210
2020-02-27update changelogCanop
2020-02-16version 0.13.2v0.13.2Canop
2020-02-15fix -i and -I launch arguments being ignoredCanop
fix #202 (there's a design problem in clap... using strings as keys isn't sound)
2020-02-08fix background not always removed when skin requires noneCanop
Fix #194
2020-02-05version 0.13.0v0.13.0Canop
2020-02-05update changelogCanop
2020-02-05several small flags related improvementsCanop
2020-02-04default_args in conf.toml and new launch flagsCanop
New flags are mostly here to let you negate on command line the flags you've set in conf.toml. For example `-D` negates `-d`.
2020-02-03`:git_status` verb keeping only git status relevant filesCanop
2020-02-03try to keep selection indexCanop
On refresh or after command, if the previously selected path can't be selected (missing file, probably) then the previous index will be kept if possible.
2020-02-03tree status closer to the root title (so to the left)Canop
Looking to the right was tiring on a wide terminal. Now the eye can stick to the left column.
2020-02-03cached background computation of git statusCanop
2020-01-29version 0.12.2v0.12.2Canop
Use crossterm 0.15.0 to fix ctrl-J being interpreted as Enter. Fix #177
2020-01-25version 0.12.1v0.12.1Canop
Fix #180
2020-01-24add `--conf` arg to launch broot with specific config file(s)Canop
fix #141
2020-01-23TAB key now jumps to direct matches onlyCanop
It was equivalent to the down key, which made it useless
2020-01-22fix a panic on "///" inputCanop
We decide, for now, that such an unparsable input should be handled as a fuzzy pattern. In the case of "///" this isn't terribly useful as such a pattern can't match on a filename. We'll change this behaviour when introducing the new input syntax. Fix #175
2020-01-19version 0.12v0.12.0Canop
2020-01-18doc & minor changes for :print_relative_pathCanop
Fix #169
2020-01-18change default value of the toggle_trim_root to falseCanop
Fix #106 but might be reverted
2020-01-17consider path `$ZDOTDIR/.zshrc` for zsh shell function sourcing (fix #90)Canop
2020-01-16commands given with `--cmd` must be separatedCanop
This removes ambiguities. Default separator is `;`. If the semicolon is used in commands, you may provide another separator using the environnment variable `BROOT_CMD_SEPARATOR`
2020-01-16update changelogCanop
2020-01-16update changelogCanop
2020-01-15version 0.11.9v0.11.9Canop
2020-01-15display the "real" size (space on disk) for sparse files (linuxCanop
When the size computed as `<number of blocks>*<block size>` is smaller than the nominal size, the file is considered sparse and a small 's' is displayed next to the size. Fix #102
2020-01-15fix `br -s` never finishing computing sizesCanop
This regression was added with an event loop refactoring in PR #132 I just revert this specific refactoring.
2020-01-15update doc & changelogCanop
2020-01-14`--set-install-state` sets the installation stateCanop
This can be used in tests or manual installs to set the installation state. For example, if you make an installation script which automatically installs just the fish function in ~/sea, you may do broot --set-install-state refused --print-shell-function fish > ~/sea/br.fish Fix #148
2020-01-14update changelogCanop
2020-01-12version 0.11.8v0.11.8Canop
2020-01-12update changelogCanop
2020-01-12generate shell completion scripts on buildCanop
2020-01-11hopefully bring compatibility with freeBSDCanop
Fix #134
2020-01-11r, w and x parts of the mode (permission) now separately skinnedCanop
2020-01-11Fix verbs not properly cancelled on actions such escapev0.11.7Canop
This could have some very nasty consequences. Fix #104
2020-01-10version 0.11.6Canop
2020-01-10fix scroll adjustement when using the arrow keysv0.11.6Canop
(when there's a scrollbar) Fix #112
2020-01-10allow env vars used in verb execution to contain parametersCanop
fix #114 More precisely when a token of the execution string is resolved as an env variable, the value is splited by space. I hope there's no usage broken by this when the env variable is used as another token that the first one...
2020-01-10fix wrong background applied below sizesCanop
2020-01-10fix unsignificative events interpreted as previous event repetitionCanop
Fix #111