summaryrefslogtreecommitdiffstats
path: root/Cargo.lock
AgeCommit message (Collapse)Author
2020-01-19fix missing background on space after bullet in help screenCanop
2020-01-18doc & minor changes for :print_relative_pathCanop
Fix #169
2020-01-17Print relative path even above CWDRoshan George
2020-01-15version 0.11.9v0.11.9Canop
2020-01-12version 0.11.8v0.11.8Canop
2020-01-11hopefully bring compatibility with freeBSDCanop
Fix #134
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-10improve readability of skin used during installation processCanop
mainly for white backgrounds
2020-01-09Mac/bash : add .bash_profile to the list of possible sourcing filesCanop
Fix #84 (untested as for now)
2020-01-09version 0.11.3v0.11.3Canop
2019-12-30update cargo.lockv0.11.2Canop
2019-12-30fix alt-enter not being recognized on some computersv0.11.1Canop
(termimad now normalizes \r and \n into Enter to fix this)
2019-12-21Version 0.11.0v0.11.0Canop
2019-12-20version 0.10.5v0.10.5Canop
2019-12-17replace the "opener" crate with the "open" oneCanop
The opener crate panics when I try to open files on a server. The open crate just does nothing. It's cleaner.
2019-12-16fix a compilation problem on windowsv0.10.4Canop
2019-12-15migration from crossterm 0.13.3 to crossterm 0.14.0Canop
There was a lot of changes, mainly for events. Checks are in progress...
2019-12-14rewrite br shell function installation to comply with #53 and #39Canop
Everybody has its own idea about where config files should be stored. I probably spent way too much time there. But there it is. Fixes #39 Fixes #53
2019-12-01faster fuzzy searchesCanop
The `find` function do a lot of computations whose purpose is to find the exact position in chars of the best match. I've made another function, `score_of`, which only returns the score of the best match. This function is about 3 times faster. In order to manage the code duplication this brought, I've added a few test units. The code has also been modified to be benchmarkable and a bench case measures fuzzy searches.
2019-11-30tuning and perf improvements regarding searchCanop
2019-11-27fix crash on doing `:rm` on the last child of current rootv0.10.3Canop
This was due to the selection index being kept when the previously selected path isn't in the tree anymore.
2019-11-27help page refactored using Termimad templatesCanop
and also the background of the help page is now cleared if the terminal size changed since last drawing
2019-11-15version 0.10.2v0.10.2Canop
2019-11-13make it possible to define a global backgroundCanop
The default terminal background isn't always good or easy to change. So there's now a new skin entry `default`.
2019-11-11colored status line, using Termimad templatesCanop
2019-11-07replace the small spinner with a variable size messageCanop
The ⌛ wasn't very visible, especially on some terminals where it was rendered as a small monochrome pair of triangles. The new message is much more visible and explicit. The whole status system has been refactored in order to ease the next evolutions.
2019-11-04broot v0.10.1v0.10.1Canop
2019-11-04incorporate crossterm 0.13.2 to fix a pb in input on viCanop
Fix #73
2019-11-03broot v0.10.0v0.10.0Canop
This version is based on crossterm 0.13 and termimad 0.7.1. Fix #25 Fix #70
2019-10-28Application running entirely on stderrCanop
At the (temporary) price of having mouse support disabled
2019-10-27app mostly running on stderrCanop
thanks to crossterm 0.12.1 and termimad 0.7 "mostly" because I must find where there's something still going to stdout...
2019-10-23move to the last versions of crossterm and termimadCanop
2019-10-07use lazy-regex to slightly clean regex creation codeCanop
2019-09-26use id-arena to allocate lines created during tree computationCanop
I was using a big vector and referencing blines with usizes. It's now a little clearer and apparently a little faster (not much).
2019-09-20version 0.9.6v0.9.6Canop
2019-09-15version 0.9.5v0.9.5Canop
2019-09-15more commands available for shortcuts & keyboard keysCanop
All verbs also documented in website
2019-09-13version 0.9.4v0.9.4Canop
2019-08-02whalespotting modev0.9.3Canop
This mode is activated by the --sizes option and makes a few changes to the broot logic in order to ease size survey: - sizes computed and displayed - only one level of tree - size based ordering - hidden files and gitignored ones are shown (by default)
2019-07-31Fix non consistent builds due to lack of precise versionning in crossterm ↵Canop
subcrate versionning See https://github.com/TimonPost/crossterm/issues/186
2019-07-29input_field is skinnableCanop
2019-07-19change the behavior of open and alt-open on standard filesCanop
The logic behind opening has changed to allow easier opening of files in non terminal applications without closing broot. **Old behavior:** - in case of enter or double-click - on a directory: open that directory, staying in broot - on a file: open the file, quitting broot - in case of alt-enter - on a directory: cd to that directory, quitting broot - on a file: cd to that file's parent directory, quitting broot **New behavior:** - in case of enter or double-click - on a directory: open that directory, staying in broot - on a file: open that file in default editor, not closing broot - in case of alt-enter - on a directory: cd to that directory, quitting broot - on a file: open that file in default editor, quitting broot
2019-07-04use the new umask crateCanop
2019-07-03Hitting enter when first line is selected, or clicking it, goes up to the ↵v0.8.6Canop
parent directory
2019-06-30use mimalloc as allocator on linuxCanop
2019-06-22detect and color executable files on windowsCanop
2019-06-20new toggle to display last modified date of filesCanop
2019-06-20update changelogv0.8.5Canop
2019-06-19max width on help screen, prettier on very wide screenCanop