This commit is contained in:
Ottermandias 2023-12-21 15:29:36 +01:00
parent 36d95c37bc
commit f2ea528316
2 changed files with 12 additions and 0 deletions

View file

@ -24,6 +24,7 @@ public class GlamourerChangelog
Add1_0_4_0(Changelog);
Add1_0_5_0(Changelog);
Add1_0_6_0(Changelog);
Add1_0_7_0(Changelog);
}
private (int, ChangeLogDisplayType) ConfigData()
@ -44,6 +45,16 @@ public class GlamourerChangelog
}
}
private static void Add1_0_7_0(Changelog log)
=> log.NextVersion("Version 1.0.7.0")
.RegisterHighlight("Glamourer now can set the free company crests on body slots, head slots and shields.")
.RegisterEntry("Fixed an issue with tooltips in certain combo selectors.")
.RegisterEntry("Fixed some issues with Hide Hat Gear and monsters turned into humans.")
.RegisterEntry(
"Hopefully fixed issues with icons used by Glamourer that are modified through Penumbra preventing Glamourer to even start in some cases.")
.RegisterEntry("Those icons might still not appear if they fail to load, but Glamourer should at least still work.", 1)
.RegisterEntry("Pre-emptively fixed a potential issue for the holidays.");
private static void Add1_0_6_0(Changelog log)
=> log.NextVersion("Version 1.0.6.0")
.RegisterHighlight("Added the option to define custom color groups and associate designs with them.")

View file

@ -8,6 +8,7 @@ using Glamourer.Events;
using Glamourer.Gui.Tabs;
using Glamourer.Gui.Tabs.ActorTab;
using Glamourer.Gui.Tabs.AutomationTab;
using Glamourer.Gui.Tabs.DebugTab;
using Glamourer.Gui.Tabs.DesignTab;
using Glamourer.Gui.Tabs.UnlocksTab;
using ImGuiNET;