mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-13 12:14:16 +01:00
feat: add author name in changelog tab
This commit is contained in:
parent
1d7580122c
commit
14d5d28cde
1 changed files with 5 additions and 0 deletions
|
|
@ -1748,6 +1748,11 @@ internal class PluginInstallerWindow : Window, IDisposable
|
||||||
|
|
||||||
ImGui.SameLine();
|
ImGui.SameLine();
|
||||||
ImGui.TextColored(ImGuiColors.DalamudGrey3, $" v{log.Version}");
|
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();
|
cursor.Y += ImGui.GetTextLineHeightWithSpacing();
|
||||||
ImGui.SetCursorPos(cursor);
|
ImGui.SetCursorPos(cursor);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue