summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCanop <cano.petrole@gmail.com>2020-05-29 11:45:13 +0200
committerCanop <cano.petrole@gmail.com>2020-05-29 11:45:13 +0200
commita43243830fbdc5f1393f4748db77ac284154d653 (patch)
tree7f9b6306629fdb827b3dd4a4f8bcc3d24f79f117
parent60b9c35f7364c40c4a175bd620b52747d020ea1e (diff)
Fix uppercase letters ignored in input field0.14.1
-rw-r--r--CHANGELOG.md4
-rw-r--r--Cargo.lock8
-rw-r--r--Cargo.toml4
-rw-r--r--src/app/app.rs1
4 files changed, 11 insertions, 6 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e371406..ccc5f48 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+<a name="v0.14.1"></a>
+### v0.14.1 - 2020-05-29
+- fix uppercase letters ignored in input field
+
<a name="v0.14.0"></a>
### v0.14.0 - 2020-05-29
#### Major feature: `:focus` verb
diff --git a/Cargo.lock b/Cargo.lock
index 46e1e5c..a56dce8 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -93,7 +93,7 @@ dependencies = [
[[package]]
name = "broot"
-version = "0.14.0"
+version = "0.14.1"
dependencies = [
"chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)",
"clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -116,7 +116,7 @@ dependencies = [
"secular 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
"simplelog 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)",
"strict 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
- "termimad 0.8.22 (registry+https://github.com/rust-lang/crates.io-index)",
+ "termimad 0.8.23 (registry+https://github.com/rust-lang/crates.io-index)",
"toml 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)",
"umask 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
"users 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -1035,7 +1035,7 @@ dependencies = [
[[package]]
name = "termimad"
-version = "0.8.22"
+version = "0.8.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"crossbeam 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -1400,7 +1400,7 @@ dependencies = [
"checksum syn 1.0.17 (registry+https://github.com/rust-lang/crates.io-index)" = "0df0eb663f387145cab623dea85b09c2c5b4b0aef44e945d928e682fce71bb03"
"checksum synstructure 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3f085a5855930c0441ca1288cf044ea4aecf4f43a91668abdb870b4ba546a203"
"checksum term 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c0863a3345e70f61d613eab32ee046ccd1bcc5f9105fe402c61fcd0c13eeb8b5"
-"checksum termimad 0.8.22 (registry+https://github.com/rust-lang/crates.io-index)" = "55340dc37e58e19f7ba42f7227d76a3e939160cdbfa2a531fbb79fde9ed5864c"
+"checksum termimad 0.8.23 (registry+https://github.com/rust-lang/crates.io-index)" = "d457a91d0c9fbc663c18961e78f541e61aa9446dc1c0cdd87109543f7289447f"
"checksum textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
"checksum thiserror 1.0.19 (registry+https://github.com/rust-lang/crates.io-index)" = "b13f926965ad00595dd129fa12823b04bbf866e9085ab0a5f2b05b850fbfc344"
"checksum thiserror-impl 1.0.19 (registry+https://github.com/rust-lang/crates.io-index)" = "893582086c2f98cde18f906265a65b5030a074b1046c674ae898be6519a7f479"
diff --git a/Cargo.toml b/Cargo.toml
index 2e7b3ba..8954a15 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "broot"
-version = "0.14.0"
+version = "0.14.1"
authors = ["dystroy <denys.seguret@gmail.com>"]
repository = "https://github.com/Canop/broot"
documentation = "https://dystroy.org/broot"
@@ -33,7 +33,7 @@ regex = "1.3"
secular = "0.2"
simplelog = "0.7"
strict = "0.1.3"
-termimad = "0.8.22"
+termimad = "0.8.23"
toml = "0.5"
umask = "1.0"
diff --git a/src/app/app.rs b/src/app/app.rs
index ae61b9f..5aa617e 100644
--- a/src/app/app.rs
+++ b/src/app/app.rs
@@ -332,6 +332,7 @@ impl App {
break;
}
};
+ debug!("event: {:?}", &event);
match event {
Event::Click(x, y, KeyModifiers::NONE)
if self.clicked_panel_index(x, y, screen) != self.active_panel_idx =>