From c78f39b50f04fb23c8376369d6c9a21226002d9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=89=E5=92=B2=E9=9B=85=20=C2=B7=20Misaki=20Masa?= Date: Wed, 11 Dec 2024 21:54:32 +0800 Subject: [PATCH] chore: bump version to 0.4.2 (#2031) --- Cargo.lock | 36 ++++++++++++++-------------- Cargo.toml | 2 +- yazi-adapter/Cargo.toml | 8 +++---- yazi-boot/Cargo.toml | 12 +++++----- yazi-cli/Cargo.toml | 14 +++++------ yazi-codegen/Cargo.toml | 2 +- yazi-config/Cargo.toml | 8 +++---- yazi-core/Cargo.toml | 24 +++++++++---------- yazi-dds/Cargo.toml | 10 ++++---- yazi-fm/Cargo.toml | 24 +++++++++---------- yazi-fs/Cargo.toml | 6 ++--- yazi-macro/Cargo.toml | 2 +- yazi-plugin/Cargo.toml | 18 +++++++------- yazi-plugin/preset/plugins/video.lua | 2 +- yazi-proxy/Cargo.toml | 8 +++---- yazi-scheduler/Cargo.toml | 16 ++++++------- yazi-shared/Cargo.toml | 4 ++-- 17 files changed, 98 insertions(+), 98 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 379d8fde..4680377e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2256,9 +2256,9 @@ checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b" [[package]] name = "serde" -version = "1.0.215" +version = "1.0.216" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6513c1ad0b11a9376da888e3e0baa0077f1aed55c17f50e7b2397136129fb88f" +checksum = "0b9781016e935a97e8beecf0c933758c97a5520d32930e460142b4cd80c6338e" dependencies = [ "serde_derive", ] @@ -2275,9 +2275,9 @@ dependencies = [ [[package]] name = "serde_derive" -version = "1.0.215" +version = "1.0.216" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ad1e866f866923f252f05c889987993144fb74e722403468a4ebd70c3cd756c0" +checksum = "46f859dbbf73865c6627ed570e78961cd3ac92407a2d117204c49232485da55e" dependencies = [ "proc-macro2", "quote", @@ -3342,7 +3342,7 @@ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049" [[package]] name = "yazi-adapter" -version = "0.4.1" +version = "0.4.2" dependencies = [ "ansi-to-tui", "anyhow", @@ -3362,7 +3362,7 @@ dependencies = [ [[package]] name = "yazi-boot" -version = "0.4.1" +version = "0.4.2" dependencies = [ "clap", "clap_complete", @@ -3380,7 +3380,7 @@ dependencies = [ [[package]] name = "yazi-cli" -version = "0.4.1" +version = "0.4.2" dependencies = [ "anyhow", "clap", @@ -3402,7 +3402,7 @@ dependencies = [ [[package]] name = "yazi-codegen" -version = "0.4.1" +version = "0.4.2" dependencies = [ "quote", "syn", @@ -3410,7 +3410,7 @@ dependencies = [ [[package]] name = "yazi-config" -version = "0.4.1" +version = "0.4.2" dependencies = [ "anyhow", "bitflags 2.6.0", @@ -3430,7 +3430,7 @@ dependencies = [ [[package]] name = "yazi-core" -version = "0.4.1" +version = "0.4.2" dependencies = [ "anyhow", "bitflags 2.6.0", @@ -3463,7 +3463,7 @@ dependencies = [ [[package]] name = "yazi-dds" -version = "0.4.1" +version = "0.4.2" dependencies = [ "anyhow", "mlua", @@ -3484,7 +3484,7 @@ dependencies = [ [[package]] name = "yazi-fm" -version = "0.4.1" +version = "0.4.2" dependencies = [ "anyhow", "better-panic", @@ -3518,7 +3518,7 @@ dependencies = [ [[package]] name = "yazi-fs" -version = "0.4.1" +version = "0.4.2" dependencies = [ "anyhow", "arc-swap", @@ -3537,11 +3537,11 @@ dependencies = [ [[package]] name = "yazi-macro" -version = "0.4.1" +version = "0.4.2" [[package]] name = "yazi-plugin" -version = "0.4.1" +version = "0.4.2" dependencies = [ "ansi-to-tui", "anyhow", @@ -3581,7 +3581,7 @@ checksum = "f4b6c8e12e39ac0f79fa96f36e5b88e0da8d230691abd729eec709b43c74f632" [[package]] name = "yazi-proxy" -version = "0.4.1" +version = "0.4.2" dependencies = [ "anyhow", "mlua", @@ -3594,7 +3594,7 @@ dependencies = [ [[package]] name = "yazi-scheduler" -version = "0.4.1" +version = "0.4.2" dependencies = [ "anyhow", "async-priority-channel", @@ -3616,7 +3616,7 @@ dependencies = [ [[package]] name = "yazi-shared" -version = "0.4.1" +version = "0.4.2" dependencies = [ "anyhow", "crossterm", diff --git a/Cargo.toml b/Cargo.toml index 102a0550..5c70007d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,7 +26,7 @@ parking_lot = "0.12.3" ratatui = { version = "0.29.0", features = [ "unstable-rendered-line-info" ] } regex = "1.11.1" scopeguard = "1.2.0" -serde = { version = "1.0.215", features = [ "derive" ] } +serde = { version = "1.0.216", features = [ "derive" ] } serde_json = "1.0.133" shell-words = "1.1.0" tokio = { version = "1.42.0", features = [ "full" ] } diff --git a/yazi-adapter/Cargo.toml b/yazi-adapter/Cargo.toml index f0a9189d..d427058a 100644 --- a/yazi-adapter/Cargo.toml +++ b/yazi-adapter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yazi-adapter" -version = "0.4.1" +version = "0.4.2" edition = "2021" license = "MIT" authors = [ "sxyazi " ] @@ -9,9 +9,9 @@ homepage = "https://yazi-rs.github.io" repository = "https://github.com/sxyazi/yazi" [dependencies] -yazi-config = { path = "../yazi-config", version = "0.4.1" } -yazi-macro = { path = "../yazi-macro", version = "0.4.1" } -yazi-shared = { path = "../yazi-shared", version = "0.4.1" } +yazi-config = { path = "../yazi-config", version = "0.4.2" } +yazi-macro = { path = "../yazi-macro", version = "0.4.2" } +yazi-shared = { path = "../yazi-shared", version = "0.4.2" } # External dependencies ansi-to-tui = { workspace = true } diff --git a/yazi-boot/Cargo.toml b/yazi-boot/Cargo.toml index 0e8b0a1c..7fcfc461 100644 --- a/yazi-boot/Cargo.toml +++ b/yazi-boot/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yazi-boot" -version = "0.4.1" +version = "0.4.2" edition = "2021" license = "MIT" authors = [ "sxyazi " ] @@ -9,11 +9,11 @@ homepage = "https://yazi-rs.github.io" repository = "https://github.com/sxyazi/yazi" [dependencies] -yazi-adapter = { path = "../yazi-adapter", version = "0.4.1" } -yazi-config = { path = "../yazi-config", version = "0.4.1" } -yazi-fs = { path = "../yazi-fs", version = "0.4.1" } -yazi-macro = { path = "../yazi-macro", version = "0.4.1" } -yazi-shared = { path = "../yazi-shared", version = "0.4.1" } +yazi-adapter = { path = "../yazi-adapter", version = "0.4.2" } +yazi-config = { path = "../yazi-config", version = "0.4.2" } +yazi-fs = { path = "../yazi-fs", version = "0.4.2" } +yazi-macro = { path = "../yazi-macro", version = "0.4.2" } +yazi-shared = { path = "../yazi-shared", version = "0.4.2" } # External dependencies clap = { workspace = true } diff --git a/yazi-cli/Cargo.toml b/yazi-cli/Cargo.toml index dfe1e7e5..84bbf4b5 100644 --- a/yazi-cli/Cargo.toml +++ b/yazi-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yazi-cli" -version = "0.4.1" +version = "0.4.2" edition = "2021" license = "MIT" authors = [ "sxyazi " ] @@ -9,11 +9,11 @@ homepage = "https://yazi-rs.github.io" repository = "https://github.com/sxyazi/yazi" [dependencies] -yazi-boot = { path = "../yazi-boot", version = "0.4.1" } -yazi-dds = { path = "../yazi-dds", version = "0.4.1" } -yazi-fs = { path = "../yazi-fs", version = "0.4.1" } -yazi-macro = { path = "../yazi-macro", version = "0.4.1" } -yazi-shared = { path = "../yazi-shared", version = "0.4.1" } +yazi-boot = { path = "../yazi-boot", version = "0.4.2" } +yazi-dds = { path = "../yazi-dds", version = "0.4.2" } +yazi-fs = { path = "../yazi-fs", version = "0.4.2" } +yazi-macro = { path = "../yazi-macro", version = "0.4.2" } +yazi-shared = { path = "../yazi-shared", version = "0.4.2" } # External dependencies anyhow = { workspace = true } @@ -25,7 +25,7 @@ tokio = { workspace = true } toml_edit = "0.22.22" [build-dependencies] -yazi-shared = { path = "../yazi-shared", version = "0.4.1" } +yazi-shared = { path = "../yazi-shared", version = "0.4.2" } # External build dependencies anyhow = { workspace = true } diff --git a/yazi-codegen/Cargo.toml b/yazi-codegen/Cargo.toml index e3bef854..ea203b38 100644 --- a/yazi-codegen/Cargo.toml +++ b/yazi-codegen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yazi-codegen" -version = "0.4.1" +version = "0.4.2" edition = "2021" license = "MIT" authors = [ "sxyazi " ] diff --git a/yazi-config/Cargo.toml b/yazi-config/Cargo.toml index 370a1ca2..c1cc9f9f 100644 --- a/yazi-config/Cargo.toml +++ b/yazi-config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yazi-config" -version = "0.4.1" +version = "0.4.2" edition = "2021" license = "MIT" authors = [ "sxyazi " ] @@ -9,9 +9,9 @@ homepage = "https://yazi-rs.github.io" repository = "https://github.com/sxyazi/yazi" [dependencies] -yazi-fs = { path = "../yazi-fs", version = "0.4.1" } -yazi-macro = { path = "../yazi-macro", version = "0.4.1" } -yazi-shared = { path = "../yazi-shared", version = "0.4.1" } +yazi-fs = { path = "../yazi-fs", version = "0.4.2" } +yazi-macro = { path = "../yazi-macro", version = "0.4.2" } +yazi-shared = { path = "../yazi-shared", version = "0.4.2" } # External dependencies anyhow = { workspace = true } diff --git a/yazi-core/Cargo.toml b/yazi-core/Cargo.toml index 593c37d2..c7f7bb70 100644 --- a/yazi-core/Cargo.toml +++ b/yazi-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yazi-core" -version = "0.4.1" +version = "0.4.2" edition = "2021" license = "MIT" authors = [ "sxyazi " ] @@ -9,17 +9,17 @@ homepage = "https://yazi-rs.github.io" repository = "https://github.com/sxyazi/yazi" [dependencies] -yazi-adapter = { path = "../yazi-adapter", version = "0.4.1" } -yazi-boot = { path = "../yazi-boot", version = "0.4.1" } -yazi-codegen = { path = "../yazi-codegen", version = "0.4.1" } -yazi-config = { path = "../yazi-config", version = "0.4.1" } -yazi-dds = { path = "../yazi-dds", version = "0.4.1" } -yazi-fs = { path = "../yazi-fs", version = "0.4.1" } -yazi-macro = { path = "../yazi-macro", version = "0.4.1" } -yazi-plugin = { path = "../yazi-plugin", version = "0.4.1" } -yazi-proxy = { path = "../yazi-proxy", version = "0.4.1" } -yazi-scheduler = { path = "../yazi-scheduler", version = "0.4.1" } -yazi-shared = { path = "../yazi-shared", version = "0.4.1" } +yazi-adapter = { path = "../yazi-adapter", version = "0.4.2" } +yazi-boot = { path = "../yazi-boot", version = "0.4.2" } +yazi-codegen = { path = "../yazi-codegen", version = "0.4.2" } +yazi-config = { path = "../yazi-config", version = "0.4.2" } +yazi-dds = { path = "../yazi-dds", version = "0.4.2" } +yazi-fs = { path = "../yazi-fs", version = "0.4.2" } +yazi-macro = { path = "../yazi-macro", version = "0.4.2" } +yazi-plugin = { path = "../yazi-plugin", version = "0.4.2" } +yazi-proxy = { path = "../yazi-proxy", version = "0.4.2" } +yazi-scheduler = { path = "../yazi-scheduler", version = "0.4.2" } +yazi-shared = { path = "../yazi-shared", version = "0.4.2" } # External dependencies anyhow = { workspace = true } diff --git a/yazi-dds/Cargo.toml b/yazi-dds/Cargo.toml index a046d9ad..0396a620 100644 --- a/yazi-dds/Cargo.toml +++ b/yazi-dds/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yazi-dds" -version = "0.4.1" +version = "0.4.2" edition = "2021" license = "MIT" authors = [ "sxyazi " ] @@ -13,10 +13,10 @@ default = [ "vendored-lua" ] vendored-lua = [ "mlua/vendored" ] [dependencies] -yazi-boot = { path = "../yazi-boot", version = "0.4.1" } -yazi-fs = { path = "../yazi-fs", version = "0.4.1" } -yazi-macro = { path = "../yazi-macro", version = "0.4.1" } -yazi-shared = { path = "../yazi-shared", version = "0.4.1" } +yazi-boot = { path = "../yazi-boot", version = "0.4.2" } +yazi-fs = { path = "../yazi-fs", version = "0.4.2" } +yazi-macro = { path = "../yazi-macro", version = "0.4.2" } +yazi-shared = { path = "../yazi-shared", version = "0.4.2" } # External dependencies anyhow = { workspace = true } diff --git a/yazi-fm/Cargo.toml b/yazi-fm/Cargo.toml index 079a43e7..30ecdf17 100644 --- a/yazi-fm/Cargo.toml +++ b/yazi-fm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yazi-fm" -version = "0.4.1" +version = "0.4.2" edition = "2021" license = "MIT" authors = [ "sxyazi " ] @@ -13,17 +13,17 @@ default = [ "vendored-lua" ] vendored-lua = [ "mlua/vendored" ] [dependencies] -yazi-adapter = { path = "../yazi-adapter", version = "0.4.1" } -yazi-boot = { path = "../yazi-boot", version = "0.4.1" } -yazi-codegen = { path = "../yazi-codegen", version = "0.4.1" } -yazi-config = { path = "../yazi-config", version = "0.4.1" } -yazi-core = { path = "../yazi-core", version = "0.4.1" } -yazi-dds = { path = "../yazi-dds", version = "0.4.1" } -yazi-fs = { path = "../yazi-fs", version = "0.4.1" } -yazi-macro = { path = "../yazi-macro", version = "0.4.1" } -yazi-plugin = { path = "../yazi-plugin", version = "0.4.1" } -yazi-proxy = { path = "../yazi-proxy", version = "0.4.1" } -yazi-shared = { path = "../yazi-shared", version = "0.4.1" } +yazi-adapter = { path = "../yazi-adapter", version = "0.4.2" } +yazi-boot = { path = "../yazi-boot", version = "0.4.2" } +yazi-codegen = { path = "../yazi-codegen", version = "0.4.2" } +yazi-config = { path = "../yazi-config", version = "0.4.2" } +yazi-core = { path = "../yazi-core", version = "0.4.2" } +yazi-dds = { path = "../yazi-dds", version = "0.4.2" } +yazi-fs = { path = "../yazi-fs", version = "0.4.2" } +yazi-macro = { path = "../yazi-macro", version = "0.4.2" } +yazi-plugin = { path = "../yazi-plugin", version = "0.4.2" } +yazi-proxy = { path = "../yazi-proxy", version = "0.4.2" } +yazi-shared = { path = "../yazi-shared", version = "0.4.2" } # External dependencies anyhow = { workspace = true } diff --git a/yazi-fs/Cargo.toml b/yazi-fs/Cargo.toml index 03ea362e..05f77a2c 100644 --- a/yazi-fs/Cargo.toml +++ b/yazi-fs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yazi-fs" -version = "0.4.1" +version = "0.4.2" edition = "2021" license = "MIT" authors = [ "sxyazi " ] @@ -9,8 +9,8 @@ homepage = "https://yazi-rs.github.io" repository = "https://github.com/sxyazi/yazi" [dependencies] -yazi-macro = { path = "../yazi-macro", version = "0.4.1" } -yazi-shared = { path = "../yazi-shared", version = "0.4.1" } +yazi-macro = { path = "../yazi-macro", version = "0.4.2" } +yazi-shared = { path = "../yazi-shared", version = "0.4.2" } # External dependencies anyhow = { workspace = true } diff --git a/yazi-macro/Cargo.toml b/yazi-macro/Cargo.toml index 30eabe85..dffef058 100644 --- a/yazi-macro/Cargo.toml +++ b/yazi-macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yazi-macro" -version = "0.4.1" +version = "0.4.2" edition = "2021" license = "MIT" authors = [ "sxyazi " ] diff --git a/yazi-plugin/Cargo.toml b/yazi-plugin/Cargo.toml index 69ad5910..4bee29d4 100644 --- a/yazi-plugin/Cargo.toml +++ b/yazi-plugin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yazi-plugin" -version = "0.4.1" +version = "0.4.2" edition = "2021" license = "MIT" authors = [ "sxyazi " ] @@ -13,14 +13,14 @@ default = [ "vendored-lua" ] vendored-lua = [ "mlua/vendored" ] [dependencies] -yazi-adapter = { path = "../yazi-adapter", version = "0.4.1" } -yazi-boot = { path = "../yazi-boot", version = "0.4.1" } -yazi-config = { path = "../yazi-config", version = "0.4.1" } -yazi-dds = { path = "../yazi-dds", version = "0.4.1" } -yazi-fs = { path = "../yazi-fs", version = "0.4.1" } -yazi-macro = { path = "../yazi-macro", version = "0.4.1" } -yazi-proxy = { path = "../yazi-proxy", version = "0.4.1" } -yazi-shared = { path = "../yazi-shared", version = "0.4.1" } +yazi-adapter = { path = "../yazi-adapter", version = "0.4.2" } +yazi-boot = { path = "../yazi-boot", version = "0.4.2" } +yazi-config = { path = "../yazi-config", version = "0.4.2" } +yazi-dds = { path = "../yazi-dds", version = "0.4.2" } +yazi-fs = { path = "../yazi-fs", version = "0.4.2" } +yazi-macro = { path = "../yazi-macro", version = "0.4.2" } +yazi-proxy = { path = "../yazi-proxy", version = "0.4.2" } +yazi-shared = { path = "../yazi-shared", version = "0.4.2" } # External dependencies ansi-to-tui = { workspace = true } diff --git a/yazi-plugin/preset/plugins/video.lua b/yazi-plugin/preset/plugins/video.lua index 93b50c7f..4ecb757d 100644 --- a/yazi-plugin/preset/plugins/video.lua +++ b/yazi-plugin/preset/plugins/video.lua @@ -50,7 +50,7 @@ function M:preload(job) local qv = 31 - math.floor(PREVIEW.image_quality * 0.3) -- stylua: ignore local status, err = Command("ffmpeg"):args({ - "-v", "quiet", "-hwaccel", "auto", + "-v", "quiet", "-threads", 1, "-hwaccel", "auto", "-skip_frame", "nokey", "-ss", ss, "-an", "-sn", "-dn", "-i", tostring(job.file.url), diff --git a/yazi-proxy/Cargo.toml b/yazi-proxy/Cargo.toml index 0dcbfcdb..7df6de1a 100644 --- a/yazi-proxy/Cargo.toml +++ b/yazi-proxy/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yazi-proxy" -version = "0.4.1" +version = "0.4.2" edition = "2021" license = "MIT" authors = [ "sxyazi " ] @@ -13,9 +13,9 @@ default = [ "vendored-lua" ] vendored-lua = [ "mlua/vendored" ] [dependencies] -yazi-config = { path = "../yazi-config", version = "0.4.1" } -yazi-macro = { path = "../yazi-macro", version = "0.4.1" } -yazi-shared = { path = "../yazi-shared", version = "0.4.1" } +yazi-config = { path = "../yazi-config", version = "0.4.2" } +yazi-macro = { path = "../yazi-macro", version = "0.4.2" } +yazi-shared = { path = "../yazi-shared", version = "0.4.2" } # External dependencies anyhow = { workspace = true } diff --git a/yazi-scheduler/Cargo.toml b/yazi-scheduler/Cargo.toml index 424bcc68..0f2f112c 100644 --- a/yazi-scheduler/Cargo.toml +++ b/yazi-scheduler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yazi-scheduler" -version = "0.4.1" +version = "0.4.2" edition = "2021" license = "MIT" authors = [ "sxyazi " ] @@ -9,13 +9,13 @@ homepage = "https://yazi-rs.github.io" repository = "https://github.com/sxyazi/yazi" [dependencies] -yazi-config = { path = "../yazi-config", version = "0.4.1" } -yazi-dds = { path = "../yazi-dds", version = "0.4.1" } -yazi-fs = { path = "../yazi-fs", version = "0.4.1" } -yazi-macro = { path = "../yazi-macro", version = "0.4.1" } -yazi-plugin = { path = "../yazi-plugin", version = "0.4.1" } -yazi-proxy = { path = "../yazi-proxy", version = "0.4.1" } -yazi-shared = { path = "../yazi-shared", version = "0.4.1" } +yazi-config = { path = "../yazi-config", version = "0.4.2" } +yazi-dds = { path = "../yazi-dds", version = "0.4.2" } +yazi-fs = { path = "../yazi-fs", version = "0.4.2" } +yazi-macro = { path = "../yazi-macro", version = "0.4.2" } +yazi-plugin = { path = "../yazi-plugin", version = "0.4.2" } +yazi-proxy = { path = "../yazi-proxy", version = "0.4.2" } +yazi-shared = { path = "../yazi-shared", version = "0.4.2" } # External dependencies anyhow = { workspace = true } diff --git a/yazi-shared/Cargo.toml b/yazi-shared/Cargo.toml index 47ca2dd9..9501ef85 100644 --- a/yazi-shared/Cargo.toml +++ b/yazi-shared/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yazi-shared" -version = "0.4.1" +version = "0.4.2" edition = "2021" license = "MIT" authors = [ "sxyazi " ] @@ -10,7 +10,7 @@ repository = "https://github.com/sxyazi/yazi" rust-version = "1.78.0" [dependencies] -yazi-macro = { path = "../yazi-macro", version = "0.4.1" } +yazi-macro = { path = "../yazi-macro", version = "0.4.2" } # External dependencies anyhow = { workspace = true }