From e8a5f7687ac9efd30d549ce2dd1b83e452506215 Mon Sep 17 00:00:00 2001 From: Canop Date: Mon, 11 Jul 2022 19:16:24 +0200 Subject: [PATCH] version 1.14.2 --- CHANGELOG.md | 5 +++++ Cargo.lock | 16 +++++++++------- Cargo.toml | 4 ++-- 3 files changed, 16 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cf2356ff..fa5db219 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +### v1.14.2 - 2022-07-11 + +- 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 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 d8cc4aec..9f118b97 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 430d549e..8a302557 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "broot" -version = "1.14.1" +version = "1.14.2" authors = ["dystroy "] 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"