Skip to content

Commit

Permalink
version 1.40.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Canop committed Jul 16, 2024
1 parent d45e37f commit 5ffb5cb
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
### next
- You can now define preview transformers to be applied before preview. They allow for example previewing PDF or Office files, or beautifying JSON files. Edit the `preview_transformers` entry in your conf.hjson file (see https://github.com/Canop/broot/blob/main/resources/default-conf/conf.hjson)
### v1.40.0 - 2024-07-16
<a name="v1.40.0"></a>
#### Major Feature: preview transformers
You can now define preview transformers to be applied before preview.
They allow for example previewing PDF or Office files, or beautifying JSON files.
Edit the `preview_transformers` array in your conf.hjson file.
See https://dystroy.org/broot/conf_file/#preview
#### Fixes
- fix search on root - Fix #904
- fix some verb cycling problems - Fix #902

Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "broot"
version = "1.39.3-dev"
version = "1.40.0"
authors = ["dystroy <denys.seguret@gmail.com>"]
repository = "https://github.com/Canop/broot"
homepage = "https://dystroy.org/broot"
Expand Down
3 changes: 1 addition & 2 deletions src/file_sum/sum_computation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ use {
},
rustc_hash::{
FxHashMap,
FxHashSet,
},
std::{
convert::TryInto,
Expand Down Expand Up @@ -93,7 +92,7 @@ impl DirSummer {

// to avoid counting twice a node, we store their id in a set
#[cfg(unix)]
let nodes = Arc::new(Mutex::new(FxHashSet::<NodeId>::default()));
let nodes = Arc::new(Mutex::new(rustc_hash::FxHashSet::<NodeId>::default()));

// busy is the number of directories which are either being processed or queued
// We use this count to determine when threads can stop waiting for tasks
Expand Down

0 comments on commit 5ffb5cb

Please sign in to comment.