diff --git a/Glamourer/Gui/GlamourerChangelog.cs b/Glamourer/Gui/GlamourerChangelog.cs index 3411bf2..ae9227f 100644 --- a/Glamourer/Gui/GlamourerChangelog.cs +++ b/Glamourer/Gui/GlamourerChangelog.cs @@ -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.") diff --git a/Glamourer/Gui/MainWindow.cs b/Glamourer/Gui/MainWindow.cs index d4e19b2..df50fb5 100644 --- a/Glamourer/Gui/MainWindow.cs +++ b/Glamourer/Gui/MainWindow.cs @@ -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;