Compare commits

...

1 Commits
v5.6 ... master

Author SHA1 Message Date
Liza e834160cd3
Show last updated time on Inventory tab 2024-08-02 15:51:49 +02:00
2 changed files with 14 additions and 1 deletions

View File

@ -1,6 +1,6 @@
<Project Sdk="Dalamud.NET.Sdk/9.0.2">
<PropertyGroup>
<Version>5.6</Version>
<Version>5.7</Version>
<OutputPath>dist</OutputPath>
</PropertyGroup>

View File

@ -22,6 +22,7 @@ internal sealed class InventoryTab : ITab
private readonly IPluginLog _pluginLog;
private List<TreeNode>? _listAsTrees;
private DateTime? _lastUpdate;
public InventoryTab(Configuration configuration, AllaganToolsIpc allaganToolsIpc, GameCache gameCache,
IPluginLog pluginLog)
@ -38,6 +39,7 @@ internal sealed class InventoryTab : ITab
if (!tab)
{
_listAsTrees = null;
_lastUpdate = null;
return;
}
@ -47,6 +49,16 @@ internal sealed class InventoryTab : ITab
if (ImGuiComponents.IconButtonWithText(FontAwesomeIcon.Redo, "Refresh"))
RefreshInventory();
if (_lastUpdate != null)
{
string text = $"Last Update: {_lastUpdate:t}";
ImGui.SameLine();
ImGui.SameLine(ImGui.GetContentRegionAvail().X - ImGui.CalcTextSize(text).X + ImGui.GetCursorPosX());
ImGui.AlignTextToFramePadding();
ImGui.TextColored(ImGuiColors.DalamudGrey, text);
}
ImGui.Separator();
if (_listAsTrees == null || _listAsTrees.Count == 0)
@ -167,6 +179,7 @@ internal sealed class InventoryTab : ITab
}
_listAsTrees = listAsTrees;
_lastUpdate = DateTime.Now;
}
catch (Exception e)
{