From 1b0c4326804fbd1cbfe46aa4aceb6b5b0cab1e51 Mon Sep 17 00:00:00 2001 From: Ottermandias Date: Thu, 12 Oct 2023 01:06:32 +0200 Subject: [PATCH] 1.0.3.0 --- Glamourer/Gui/GlamourerChangelog.cs | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/Glamourer/Gui/GlamourerChangelog.cs b/Glamourer/Gui/GlamourerChangelog.cs index a03b230..9dd2fda 100644 --- a/Glamourer/Gui/GlamourerChangelog.cs +++ b/Glamourer/Gui/GlamourerChangelog.cs @@ -20,6 +20,7 @@ public class GlamourerChangelog Add1_0_0_6(Changelog); Add1_0_1_1(Changelog); Add1_0_2_0(Changelog); + Add1_0_3_0(Changelog); } private (int, ChangeLogDisplayType) ConfigData() @@ -32,6 +33,23 @@ public class GlamourerChangelog _config.Save(); } + private static void Add1_0_3_0(Changelog log) + => log.NextVersion("Version 1.0.3.0") + .RegisterEntry("Hopefully improved Palette+ compatibility.") + .RegisterHighlight( + "Added a Quick Design Bar, which is a small bar in which you can select your designs and apply them to yourself or your target, or revert them.") + .RegisterEntry("You can toggle visibility of this bar via keybinds, which you can set up in the settings tab.", 1) + .RegisterEntry("You can also lock the bar, and enable or disable an additional, identical bar in the main window.", 1) + .RegisterEntry("Disabled a sound that played on startup when a certain Dalamud setting was enabled.") + .RegisterEntry("Fixed an issue with reading state for Who Am I!?!. (1.0.2.2)") + .RegisterEntry("Fixed an issue where applying gear sets would not always update your dyes. (1.0.2.2)") + .RegisterEntry("Fixed an issue where some errors due to missing null-checks wound up in the log. (1.0.2.2)") + .RegisterEntry("Fixed an issue with hat visibility. (1.0.2.1 and 1.0.2.2)") + .RegisterEntry("Improved some logging. (1.0.2.1)") + .RegisterEntry("Improved notifications when encountering errors while loading automation sets. (1.0.2.1)") + .RegisterEntry("Fixed another issue with monk fist weapons. (1.0.2.1)") + .RegisterEntry("Added missing dot to changelog entry."); + private static void Add1_0_2_0(Changelog log) => log.NextVersion("Version 1.0.2.0") .RegisterHighlight("Added option to favorite items so they appear first in the item selection combos.")