Package Details: yazi-nightly-bin 25.3.7.20250317.c5808a0-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 lf ls manager rust tui
Licenses: MIT
Conflicts: yazi
Provides: yazi
Submitter: latipun
Maintainer: latipun
Last Packager: latipun
Votes: 5
Popularity: 0.90
First Submitted: 2024-08-07 14:28 (UTC)
Last Updated: 2025-03-17 10:20 (UTC)

Dependencies (13)

Sources (1)

Latest Comments

latipun commented on 2025-03-11 04:44 (UTC)

@boydaihungst, thank you for the report. Sorry, it took for a while to update 🙏

Seems this package not updating because I had a typo. I already updated it, hope it solves the issue.

boydaihungst commented on 2025-03-07 17:02 (UTC) (edited on 2025-03-07 17:09 (UTC) by boydaihungst)

Please remove the exit statement, as it prevents the contained functions from executing.
Reference: Arch Wiki - PKGBUILD

Additionally, could you update pkgver to use Calendar Versioning (25.3.7.20250307.a2bbd29)?
Reference: GitHub PR #2291

Currently, vercmp 0.3.0.20240808.407ad26-1 25.3.7.20250307.a2bbd29 returns -1, meaning this package will never be updated

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