muffin v7.4.3

This commit is contained in:
alydev 2025-12-22 00:05:42 +10:00
parent bddffe21ae
commit 5791858984
4 changed files with 835 additions and 816 deletions

View file

@ -5,6 +5,7 @@ using System.Numerics;
using Dalamud.Bindings.ImGui;
using Dalamud.Interface;
using Dalamud.Interface.Utility.Raii;
using Questionable.Data;
using Questionable.Model.Changelog;
namespace Questionable.Windows.ChangelogComponents;
@ -26,7 +27,7 @@ internal sealed class ChangelogEntryComponent
public void Draw(ChangelogEntry changelog, bool isLatest, bool hasSetInitialState)
{
bool isNew = changelog.IsNewVersion(_configuration.LastViewedChangelogVersion);
bool isNew = changelog.IsNewVersion(_configuration.LastViewedChangelogVersion, ChangelogData.Changelogs);
ImGui.GetWindowDrawList();
string text = changelog.ReleaseDate.ToString("MMMM dd, yyyy", CultureInfo.InvariantCulture);
if (!hasSetInitialState)