feat: add author name in changelog tab

This commit is contained in:
Aireil 2023-03-18 16:15:31 +01:00
parent 1d7580122c
commit 14d5d28cde
No known key found for this signature in database
GPG key ID: EA9CA38B48706D3D

View file

@ -1748,6 +1748,11 @@ internal class PluginInstallerWindow : Window, IDisposable
ImGui.SameLine();
ImGui.TextColored(ImGuiColors.DalamudGrey3, $" v{log.Version}");
if (log.Author != null)
{
ImGui.SameLine();
ImGui.TextColored(ImGuiColors.DalamudGrey3, Locs.PluginBody_AuthorWithoutDownloadCount(log.Author));
}
cursor.Y += ImGui.GetTextLineHeightWithSpacing();
ImGui.SetCursorPos(cursor);