Skip to content

Commit 5a4e6e4

Browse files
committed
feat: truncate long items in the file list (#2754)
1 parent cea2628 commit 5a4e6e4

File tree

26 files changed

+170
-144
lines changed

26 files changed

+170
-144
lines changed

Cargo.lock

Lines changed: 18 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

yazi-adapter/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yazi-adapter"
3-
version = "25.4.8"
3+
version = "25.5.14"
44
edition = "2024"
55
license = "MIT"
66
authors = [ "sxyazi <[email protected]>" ]
@@ -9,10 +9,10 @@ homepage = "https://yazi-rs.github.io"
99
repository = "https://github.com/sxyazi/yazi"
1010

1111
[dependencies]
12-
yazi-config = { path = "../yazi-config", version = "25.4.8" }
13-
yazi-macro = { path = "../yazi-macro", version = "25.4.8" }
14-
yazi-shared = { path = "../yazi-shared", version = "25.4.8" }
15-
yazi-term = { path = "../yazi-term", version = "25.4.8" }
12+
yazi-config = { path = "../yazi-config", version = "25.5.14" }
13+
yazi-macro = { path = "../yazi-macro", version = "25.5.14" }
14+
yazi-shared = { path = "../yazi-shared", version = "25.5.14" }
15+
yazi-term = { path = "../yazi-term", version = "25.5.14" }
1616

1717
# External dependencies
1818
ansi-to-tui = { workspace = true }

yazi-binding/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yazi-binding"
3-
version = "25.4.8"
3+
version = "25.5.14"
44
edition = "2024"
55
license = "MIT"
66
authors = [ "sxyazi <[email protected]>" ]
@@ -9,9 +9,9 @@ homepage = "https://yazi-rs.github.io"
99
repository = "https://github.com/sxyazi/yazi"
1010

1111
[dependencies]
12-
yazi-fs = { path = "../yazi-fs", version = "25.4.8" }
13-
yazi-macro = { path = "../yazi-macro", version = "25.4.8" }
14-
yazi-shared = { path = "../yazi-shared", version = "25.4.8" }
12+
yazi-fs = { path = "../yazi-fs", version = "25.5.14" }
13+
yazi-macro = { path = "../yazi-macro", version = "25.5.14" }
14+
yazi-shared = { path = "../yazi-shared", version = "25.5.14" }
1515

1616
# External dependencies
1717
mlua = { workspace = true }

yazi-boot/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yazi-boot"
3-
version = "25.4.8"
3+
version = "25.5.14"
44
edition = "2024"
55
license = "MIT"
66
authors = [ "sxyazi <[email protected]>" ]
@@ -9,19 +9,19 @@ homepage = "https://yazi-rs.github.io"
99
repository = "https://github.com/sxyazi/yazi"
1010

1111
[dependencies]
12-
yazi-adapter = { path = "../yazi-adapter", version = "25.4.8" }
13-
yazi-config = { path = "../yazi-config", version = "25.4.8" }
14-
yazi-fs = { path = "../yazi-fs", version = "25.4.8" }
15-
yazi-macro = { path = "../yazi-macro", version = "25.4.8" }
16-
yazi-shared = { path = "../yazi-shared", version = "25.4.8" }
12+
yazi-adapter = { path = "../yazi-adapter", version = "25.5.14" }
13+
yazi-config = { path = "../yazi-config", version = "25.5.14" }
14+
yazi-fs = { path = "../yazi-fs", version = "25.5.14" }
15+
yazi-macro = { path = "../yazi-macro", version = "25.5.14" }
16+
yazi-shared = { path = "../yazi-shared", version = "25.5.14" }
1717

1818
# External dependencies
1919
clap = { workspace = true }
2020
regex = { workspace = true }
2121
serde = { workspace = true }
2222

2323
[build-dependencies]
24-
yazi-shared = { path = "../yazi-shared", version = "25.4.8" }
24+
yazi-shared = { path = "../yazi-shared", version = "25.5.14" }
2525

2626
# External dependencies
2727
clap = { workspace = true }

yazi-cli/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yazi-cli"
3-
version = "25.4.8"
3+
version = "25.5.14"
44
edition = "2024"
55
license = "MIT"
66
authors = [ "sxyazi <[email protected]>" ]
@@ -9,11 +9,11 @@ homepage = "https://yazi-rs.github.io"
99
repository = "https://github.com/sxyazi/yazi"
1010

1111
[dependencies]
12-
yazi-boot = { path = "../yazi-boot", version = "25.4.8" }
13-
yazi-dds = { path = "../yazi-dds", version = "25.4.8" }
14-
yazi-fs = { path = "../yazi-fs", version = "25.4.8" }
15-
yazi-macro = { path = "../yazi-macro", version = "25.4.8" }
16-
yazi-shared = { path = "../yazi-shared", version = "25.4.8" }
12+
yazi-boot = { path = "../yazi-boot", version = "25.5.14" }
13+
yazi-dds = { path = "../yazi-dds", version = "25.5.14" }
14+
yazi-fs = { path = "../yazi-fs", version = "25.5.14" }
15+
yazi-macro = { path = "../yazi-macro", version = "25.5.14" }
16+
yazi-shared = { path = "../yazi-shared", version = "25.5.14" }
1717

1818
# External dependencies
1919
anyhow = { workspace = true }
@@ -26,7 +26,7 @@ toml = { workspace = true }
2626
twox-hash = { workspace = true }
2727

2828
[build-dependencies]
29-
yazi-shared = { path = "../yazi-shared", version = "25.4.8" }
29+
yazi-shared = { path = "../yazi-shared", version = "25.5.14" }
3030

3131
# External build dependencies
3232
anyhow = { workspace = true }

yazi-codegen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yazi-codegen"
3-
version = "25.4.8"
3+
version = "25.5.14"
44
edition = "2024"
55
license = "MIT"
66
authors = [ "sxyazi <[email protected]>" ]

yazi-config/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yazi-config"
3-
version = "25.4.8"
3+
version = "25.5.14"
44
edition = "2024"
55
license = "MIT"
66
authors = [ "sxyazi <[email protected]>" ]
@@ -9,11 +9,11 @@ homepage = "https://yazi-rs.github.io"
99
repository = "https://github.com/sxyazi/yazi"
1010

1111
[dependencies]
12-
yazi-codegen = { path = "../yazi-codegen", version = "25.4.8" }
13-
yazi-fs = { path = "../yazi-fs", version = "25.4.8" }
14-
yazi-macro = { path = "../yazi-macro", version = "25.4.8" }
15-
yazi-shared = { path = "../yazi-shared", version = "25.4.8" }
16-
yazi-term = { path = "../yazi-term", version = "25.4.8" }
12+
yazi-codegen = { path = "../yazi-codegen", version = "25.5.14" }
13+
yazi-fs = { path = "../yazi-fs", version = "25.5.14" }
14+
yazi-macro = { path = "../yazi-macro", version = "25.5.14" }
15+
yazi-shared = { path = "../yazi-shared", version = "25.5.14" }
16+
yazi-term = { path = "../yazi-term", version = "25.5.14" }
1717

1818
# External dependencies
1919
anyhow = { workspace = true }

yazi-core/Cargo.toml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yazi-core"
3-
version = "25.4.8"
3+
version = "25.5.14"
44
edition = "2024"
55
license = "MIT"
66
authors = [ "sxyazi <[email protected]>" ]
@@ -9,19 +9,19 @@ homepage = "https://yazi-rs.github.io"
99
repository = "https://github.com/sxyazi/yazi"
1010

1111
[dependencies]
12-
yazi-adapter = { path = "../yazi-adapter", version = "25.4.8" }
13-
yazi-boot = { path = "../yazi-boot", version = "25.4.8" }
14-
yazi-codegen = { path = "../yazi-codegen", version = "25.4.8" }
15-
yazi-config = { path = "../yazi-config", version = "25.4.8" }
16-
yazi-dds = { path = "../yazi-dds", version = "25.4.8" }
17-
yazi-fs = { path = "../yazi-fs", version = "25.4.8" }
18-
yazi-macro = { path = "../yazi-macro", version = "25.4.8" }
19-
yazi-plugin = { path = "../yazi-plugin", version = "25.4.8" }
20-
yazi-proxy = { path = "../yazi-proxy", version = "25.4.8" }
21-
yazi-scheduler = { path = "../yazi-scheduler", version = "25.4.8" }
22-
yazi-shared = { path = "../yazi-shared", version = "25.4.8" }
23-
yazi-term = { path = "../yazi-term", version = "25.4.8" }
24-
yazi-widgets = { path = "../yazi-widgets", version = "25.4.8" }
12+
yazi-adapter = { path = "../yazi-adapter", version = "25.5.14" }
13+
yazi-boot = { path = "../yazi-boot", version = "25.5.14" }
14+
yazi-codegen = { path = "../yazi-codegen", version = "25.5.14" }
15+
yazi-config = { path = "../yazi-config", version = "25.5.14" }
16+
yazi-dds = { path = "../yazi-dds", version = "25.5.14" }
17+
yazi-fs = { path = "../yazi-fs", version = "25.5.14" }
18+
yazi-macro = { path = "../yazi-macro", version = "25.5.14" }
19+
yazi-plugin = { path = "../yazi-plugin", version = "25.5.14" }
20+
yazi-proxy = { path = "../yazi-proxy", version = "25.5.14" }
21+
yazi-scheduler = { path = "../yazi-scheduler", version = "25.5.14" }
22+
yazi-shared = { path = "../yazi-shared", version = "25.5.14" }
23+
yazi-term = { path = "../yazi-term", version = "25.5.14" }
24+
yazi-widgets = { path = "../yazi-widgets", version = "25.5.14" }
2525

2626
# External dependencies
2727
anyhow = { workspace = true }

yazi-dds/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yazi-dds"
3-
version = "25.4.8"
3+
version = "25.5.14"
44
edition = "2024"
55
license = "MIT"
66
authors = [ "sxyazi <[email protected]>" ]
@@ -13,11 +13,11 @@ default = [ "vendored-lua" ]
1313
vendored-lua = [ "mlua/vendored" ]
1414

1515
[dependencies]
16-
yazi-binding = { path = "../yazi-binding", version = "25.4.8" }
17-
yazi-boot = { path = "../yazi-boot", version = "25.4.8" }
18-
yazi-fs = { path = "../yazi-fs", version = "25.4.8" }
19-
yazi-macro = { path = "../yazi-macro", version = "25.4.8" }
20-
yazi-shared = { path = "../yazi-shared", version = "25.4.8" }
16+
yazi-binding = { path = "../yazi-binding", version = "25.5.14" }
17+
yazi-boot = { path = "../yazi-boot", version = "25.5.14" }
18+
yazi-fs = { path = "../yazi-fs", version = "25.5.14" }
19+
yazi-macro = { path = "../yazi-macro", version = "25.5.14" }
20+
yazi-shared = { path = "../yazi-shared", version = "25.5.14" }
2121

2222
# External dependencies
2323
anyhow = { workspace = true }

yazi-ffi/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yazi-ffi"
3-
version = "25.4.8"
3+
version = "25.5.14"
44
edition = "2024"
55
license = "MIT"
66
authors = [ "sxyazi <[email protected]>" ]
@@ -9,7 +9,7 @@ homepage = "https://yazi-rs.github.io"
99
repository = "https://github.com/sxyazi/yazi"
1010

1111
[dependencies]
12-
yazi-macro = { path = "../yazi-macro", version = "25.4.8" }
12+
yazi-macro = { path = "../yazi-macro", version = "25.5.14" }
1313

1414
# External dependencies
1515
anyhow = { workspace = true }

0 commit comments

Comments
 (0)