diff --git a/README.md b/README.md index c595b0d..d947880 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ # Plugins -The following plugins can be installed using the [`ya pkg` package manager](https://yazi-rs.github.io/docs/cli#pm) introduced in Yazi v25.5.28. +The following plugins can be installed using the [`ya pkg` package manager](https://yazi-rs.github.io/docs/cli#pm) introduced in Yazi v25.5.31. For specific installation commands and configuration instructions, check the individual `README.md` of each plugin by clicking the link below: diff --git a/chmod.yazi/main.lua b/chmod.yazi/main.lua index 589ebd5..b05f05a 100644 --- a/chmod.yazi/main.lua +++ b/chmod.yazi/main.lua @@ -1,4 +1,4 @@ ---- @since 25.5.28 +--- @since 25.5.31 local selected_or_hovered = ya.sync(function() local tab, paths = cx.active, {} diff --git a/git.yazi/main.lua b/git.yazi/main.lua index fd8b8bf..140ad5a 100644 --- a/git.yazi/main.lua +++ b/git.yazi/main.lua @@ -1,4 +1,4 @@ ---- @since 25.5.28 +--- @since 25.5.31 local WINDOWS = ya.target_family() == "windows" diff --git a/jump-to-char.yazi/main.lua b/jump-to-char.yazi/main.lua index 0398a69..8a434f1 100644 --- a/jump-to-char.yazi/main.lua +++ b/jump-to-char.yazi/main.lua @@ -1,4 +1,4 @@ ---- @since 25.5.28 +--- @since 25.5.31 local AVAILABLE_CHARS = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789." diff --git a/lsar.yazi/main.lua b/lsar.yazi/main.lua index 1a765c4..69bc480 100644 --- a/lsar.yazi/main.lua +++ b/lsar.yazi/main.lua @@ -1,4 +1,4 @@ ---- @since 25.5.28 +--- @since 25.5.31 local M = {} diff --git a/mactag.yazi/main.lua b/mactag.yazi/main.lua index b823944..3d1a305 100644 --- a/mactag.yazi/main.lua +++ b/mactag.yazi/main.lua @@ -1,4 +1,4 @@ ---- @since 25.5.28 +--- @since 25.5.31 local update = ya.sync(function(st, tags) for path, tag in pairs(tags) do diff --git a/mime-ext.yazi/main.lua b/mime-ext.yazi/main.lua index 0f8cdc0..06c0005 100644 --- a/mime-ext.yazi/main.lua +++ b/mime-ext.yazi/main.lua @@ -1,4 +1,4 @@ ---- @since 25.5.28 +--- @since 25.5.31 local FILES = { [".envrc"] = "text/plain", diff --git a/mount.yazi/main.lua b/mount.yazi/main.lua index 2d9b645..32dc15e 100644 --- a/mount.yazi/main.lua +++ b/mount.yazi/main.lua @@ -1,4 +1,4 @@ ---- @since 25.5.28 +--- @since 25.5.31 local toggle_ui = ya.sync(function(self) if self.children then diff --git a/piper.yazi/main.lua b/piper.yazi/main.lua index cc2646c..127e7fa 100644 --- a/piper.yazi/main.lua +++ b/piper.yazi/main.lua @@ -1,4 +1,4 @@ ---- @since 25.5.28 +--- @since 25.5.31 local M = {} diff --git a/smart-enter.yazi/main.lua b/smart-enter.yazi/main.lua index c69a101..e9e2ec6 100644 --- a/smart-enter.yazi/main.lua +++ b/smart-enter.yazi/main.lua @@ -1,4 +1,4 @@ ---- @since 25.5.28 +--- @since 25.5.31 --- @sync entry local function setup(self, opts) self.open_multi = opts.open_multi end diff --git a/smart-filter.yazi/main.lua b/smart-filter.yazi/main.lua index 4141f95..490a9dd 100644 --- a/smart-filter.yazi/main.lua +++ b/smart-filter.yazi/main.lua @@ -1,4 +1,4 @@ ---- @since 25.5.28 +--- @since 25.5.31 local hovered = ya.sync(function() local h = cx.active.current.hovered diff --git a/smart-paste.yazi/main.lua b/smart-paste.yazi/main.lua index 7740e9a..0837a4b 100644 --- a/smart-paste.yazi/main.lua +++ b/smart-paste.yazi/main.lua @@ -1,4 +1,4 @@ ---- @since 25.5.28 +--- @since 25.5.31 --- @sync entry return { entry = function() diff --git a/sudo-demo.yazi/main.lua b/sudo-demo.yazi/main.lua index 9c3d89b..bd92edc 100644 --- a/sudo-demo.yazi/main.lua +++ b/sudo-demo.yazi/main.lua @@ -1,4 +1,4 @@ ---- @since 25.5.28 +--- @since 25.5.31 --- Verify if `sudo` is already authenticated --- @return boolean diff --git a/toggle-pane.yazi/main.lua b/toggle-pane.yazi/main.lua index 130c174..72bbf0e 100644 --- a/toggle-pane.yazi/main.lua +++ b/toggle-pane.yazi/main.lua @@ -1,4 +1,4 @@ ---- @since 25.5.28 +--- @since 25.5.31 --- @sync entry local function entry(st, job) diff --git a/vcs-files.yazi/main.lua b/vcs-files.yazi/main.lua index 32f9649..f16c883 100644 --- a/vcs-files.yazi/main.lua +++ b/vcs-files.yazi/main.lua @@ -1,4 +1,4 @@ ---- @since 25.5.28 +--- @since 25.5.31 local root = ya.sync(function() return cx.active.current.cwd end)