Skip to content

Commit

Permalink
Link the PR
Browse files Browse the repository at this point in the history
  • Loading branch information
sxyazi committed Oct 11, 2024
1 parent 8b47ebf commit b977e0f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions yazi-plugin/src/cha/cha.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ fn warn_deprecated() {
if !WARNED.swap(true, std::sync::atomic::Ordering::Relaxed) {
yazi_proxy::AppProxy::notify(yazi_proxy::options::NotifyOpt {
title: "Deprecated API".to_owned(),
content: "The `created`, `modified`, `accessed`, `length`, and `permissions` properties of `Cha` have been deprecated.
content: "The `created`, `modified`, `accessed`, `length`, and `permissions` properties of `Cha` have been renamed.
Please use the new `btime`, `mtime`, `atime`, `len`, and `perm` instead.".to_string(),
Please use the new `btime`, `mtime`, `atime`, `len`, and `perm` instead. See https://github.com/sxyazi/yazi/pull/1761 for details.".to_string(),
level: yazi_proxy::options::NotifyLevel::Warn,
timeout: Duration::from_secs(20),
});
Expand Down

0 comments on commit b977e0f

Please sign in to comment.