Skip to content

Commit

Permalink
version 1.39.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Canop committed May 31, 2024
1 parent 7b892af commit 7dd815a
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
### next
- fix build on Android - thanks @dead10ck
### v1.39.0 - 2024-05-31
<a name="v1.39.0"></a>
- `:open_trash` shows the content of the trash. Other new internals & verbs: `:delete_trashed_file`, `:restore_trashed_file`, `:purge_trash` - Fix #855
- it's now possible to remove a default keybinding by defining a verb with no execution - Fix #632
- fix build on Android - thanks @dead10ck

### v1.38.0 - 2024-05-04
<a name="v1.38.0"></a>
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.0-dev"
version = "1.39.0"
authors = ["dystroy <[email protected]>"]
repository = "https://github.com/Canop/broot"
homepage = "https://dystroy.org/broot"
Expand Down
2 changes: 1 addition & 1 deletion compile-all-targets.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ cross_build "Windows" "x86_64-pc-windows-gnu" "clipboard,trash"
# Build the default linux version (with clipboard support, needing a recent GLIBC)
# recent glibc
echo -e "${H2}Compiling the standard linux version${EH}"
cargo build --quiet --release --features "clipboard"
cargo build --quiet --release --features "clipboard trash"
strip "target/release/$NAME"
mkdir build/x86_64-linux/
cp "target/release/$NAME" build/x86_64-linux/
Expand Down
6 changes: 6 additions & 0 deletions src/help/help_features.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,11 @@ pub fn list() -> Vec<(&'static str, &'static str)> {
":copy_path (copying the current path), and :input_paste (pasting into the input)",
));

#[cfg(feature = "trash")]
features.push((
"trash",
":trash, :open_trash, :restore_trashed_file, :purge_trash, :delete_trashed_file",
));

features
}

0 comments on commit 7dd815a

Please sign in to comment.