Package Details: yazi-nightly-bin 0.3.0.20240808.407ad26-1

Git Clone URL: https://aur.archlinux.org/yazi-nightly-bin.git (read-only, click to copy)
Package Base: yazi-nightly-bin
Description: 💥 Blazing fast terminal file manager written in Rust, based on async I/O.
Upstream URL: https://yazi-rs.github.io
Keywords: file manager rust
Licenses: MIT
Conflicts: yazi
Provides: yazi
Submitter: latipun
Maintainer: latipun
Last Packager: latipun
Votes: 3
Popularity: 0.44
First Submitted: 2024-08-07 14:28 (UTC)
Last Updated: 2024-08-08 15:29 (UTC)

Dependencies (13)

Required by (0)

Sources (2)

Latest Comments

latipun commented on 2024-09-23 03:53 (UTC)

Thanks for the report 🎉 Seems this is already fixed in the upstream.

GrzegorzKozub commented on 2024-09-19 06:18 (UTC) (edited on 2024-09-21 06:10 (UTC) by GrzegorzKozub)

I fixed this error:

==> ERROR: pkgver is not allowed to contain colons, forward slashes, hyphens or whitespace.

Did this by ignoring the warnings spit by yazi --version:

●• ./yazi --version | awk -F'[ ()]' '{gsub(/-/, "", $5); print $2 "." $5 "." $4}'
The.`[input]`.under
..
change."Create:"`.=
..
0.3.3.20240921.1a1820c
●• ./yazi --version
WARNING: The `create_title` under `[input]` now accepts an array instead of a string to support different titles for `create` and `create --dir` command.

Please change `create_title = "Create:"` to `create_title = ["Create:", "Create (dir):"]` in your yazi.toml.

Yazi 0.3.3 (1a1820c 2024-09-21)
●• ./yazi --version | tail -1
Yazi 0.3.3 (1a1820c 2024-09-21)
●• ./yazi --version | tail -1 | awk -F'[ ()]' '{gsub(/-/, "", $5); print $2 "." $5 "." $4}'
0.3.3.20240921.1a1820c

@latipun, can you update the PKGBUILD?

I also reported https://github.com/sxyazi/yazi/issues/1668