Skip to content

Commit

Permalink
version bump - and better version of termimad
Browse files Browse the repository at this point in the history
  • Loading branch information
Canop committed Jun 17, 2019
1 parent 43fd6d8 commit 9be588b
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 10 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
<a name="v0.8.4"></a>
### v0.8.4 - 2019-06-17
- apply verbs on link files, not on their targets (rm some_link was dangerous)

<a name="v0.8.3"></a>
### v0.8.3 - 2019-06-16
- mouse support: click to select, double-click to open
Expand Down
14 changes: 7 additions & 7 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "broot"
version = "0.8.3"
version = "0.8.4"
authors = ["dystroy <[email protected]>"]
repository = "https://github.com/Canop/broot"
description = "Fuzzy Search + tree + cd"
Expand All @@ -23,7 +23,7 @@ glob = "0.3"
crossbeam = "0.7"
opener = "0.4"
crossterm = "0.9.6"
termimad = "0.3.6"
termimad = "0.3.7"
#termimad = { path = "../termimad" }

[target.'cfg(unix)'.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/help_states.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ impl HelpState {
}

fn resize_area(&mut self, screen: &Screen) {
let area = Area::new(0, 0, screen.w, screen.h - 3);
let area = Area::new(0, 0, screen.w, screen.h - 2);
self.view.resize(&area);
}
}
Expand Down

0 comments on commit 9be588b

Please sign in to comment.