summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCanop <cano.petrole@gmail.com>2022-07-11 19:16:24 +0200
committerCanop <cano.petrole@gmail.com>2022-07-11 19:16:24 +0200
commite8a5f7687ac9efd30d549ce2dd1b83e452506215 (patch)
tree75f1ec7ea114151f4e06809c8d4b8decc3077ec2
parentdb417052bc7557fa0f0277225106db56666d4822 (diff)
version 1.14.2v1.14.2
-rw-r--r--CHANGELOG.md5
-rw-r--r--Cargo.lock16
-rw-r--r--Cargo.toml4
3 files changed, 16 insertions, 9 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index cf2356f..fa5db21 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,8 @@
+### v1.14.2 - 2022-07-11
+<a name="v1.14.2"></a>
+- Terminal background luma determination now works on all tested unixes, including MacOS - Fix #575
+- Allow :focus based verbs to take a pattern - Fix #389
+
### v1.14.1 - 2022-07-06
<a name="v1.14.1"></a>
Due to a technical problem, background color based skin selection is disabled on non linux systems.
diff --git a/Cargo.lock b/Cargo.lock
index d8cc4ae..9f118b9 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -137,7 +137,7 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
[[package]]
name = "broot"
-version = "1.14.1"
+version = "1.14.2"
dependencies = [
"ahash 0.7.6",
"ansi_colours",
@@ -187,7 +187,7 @@ dependencies = [
"umask",
"unicode-width",
"users",
- "xterm-query 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
+ "xterm-query 0.1.0",
]
[[package]]
@@ -1862,13 +1862,14 @@ dependencies = [
[[package]]
name = "terminal-light"
-version = "0.8.1"
-source = "git+https://github.com/Canop/terminal-light?branch=mio#2077bc03573b61f967aec001a6f64da78f11a5eb"
+version = "1.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d07063eee8d7fdc8dd56ed0e6668b0ead96815410a5e3ebeedf4eceb6f49f914"
dependencies = [
"coolor",
"crossterm",
"thiserror",
- "xterm-query 0.1.0 (git+https://github.com/Canop/xterm-query?branch=mio)",
+ "xterm-query 0.2.0",
]
[[package]]
@@ -2237,8 +2238,9 @@ dependencies = [
[[package]]
name = "xterm-query"
-version = "0.1.0"
-source = "git+https://github.com/Canop/xterm-query?branch=mio#0a6bb9438ae532931a363e02922a71c5e775bbe7"
+version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ec02abe9c7efbcb010adc0d90bc4a054653477cd4a3eb8eef5a689799c146a13"
dependencies = [
"mio",
"nix",
diff --git a/Cargo.toml b/Cargo.toml
index 430d549..8a30255 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "broot"
-version = "1.14.1"
+version = "1.14.2"
authors = ["dystroy <denys.seguret@gmail.com>"]
repository = "https://github.com/Canop/broot"
documentation = "https://dystroy.org/broot"
@@ -59,7 +59,7 @@ syntect = { package = "syntect-no-panic", version = "4.6.1" } # see issue #485
tempfile = "3.2"
termimad = "0.20.2"
terminal-clipboard = { version = "0.3.1", optional = true }
-terminal-light = { version = "0.8.1", git = "https://github.com/Canop/terminal-light", branch = "mio" }
+terminal-light = "1.0.0"
toml = "0.5"
umask = "2.0.0"
unicode-width = "0.1.8"