Skip to content

Commit 0fadb5e

Browse files
committed
feat(ui): when updating to a new version, show the version instead of the commit refs
1 parent 34e2c78 commit 0fadb5e

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

lua/lazy/view/render.lua

+10-3
Original file line numberDiff line numberDiff line change
@@ -341,9 +341,16 @@ function M:diagnostics(plugin)
341341
message = "already up to date",
342342
})
343343
else
344-
self:diagnostic({
345-
message = "updated from " .. plugin._.updated.from:sub(1, 7) .. " to " .. plugin._.updated.to:sub(1, 7),
346-
})
344+
local version = Git.info(plugin.dir, true).version
345+
if version then
346+
self:diagnostic({
347+
message = "updated to " .. tostring(version),
348+
})
349+
else
350+
self:diagnostic({
351+
message = "updated from " .. plugin._.updated.from:sub(1, 7) .. " to " .. plugin._.updated.to:sub(1, 7),
352+
})
353+
end
347354
end
348355
elseif plugin._.updates then
349356
local version = plugin._.updates.to.version

0 commit comments

Comments
 (0)