This commit is contained in:
Ottermandias 2023-11-11 14:16:21 +01:00
parent 879b8e49a0
commit 09b0db977f

View file

@ -22,6 +22,7 @@ public class GlamourerChangelog
Add1_0_2_0(Changelog); Add1_0_2_0(Changelog);
Add1_0_3_0(Changelog); Add1_0_3_0(Changelog);
Add1_0_4_0(Changelog); Add1_0_4_0(Changelog);
Add1_0_5_0(Changelog);
} }
private (int, ChangeLogDisplayType) ConfigData() private (int, ChangeLogDisplayType) ConfigData()
@ -34,6 +35,20 @@ public class GlamourerChangelog
_config.Save(); _config.Save();
} }
private static void Add1_0_5_0(Changelog log)
=> log.NextVersion("Version 1.0.5.0")
.RegisterHighlight("Dyes are can now be favorited the same way equipment pieces can.")
.RegisterHighlight("The quick design bar combo can now be scrolled through via mousewheel when hovering over the combo without opening it.")
.RegisterEntry("Control-Rightclicking the quick design bar now not only jumps to the corresponding design, but also opens the main window if it is not currently open.")
.RegisterHighlight("You can now filter for designs containing specific items by using \"i:partial item name\".")
.RegisterEntry("When overwriting a saved designs data entirely from clipboard, you can now undo this change and restore the prior design data once via a button top-left.")
.RegisterEntry("Removed the \"Enabled\" checkbox in the settings since it was barely doing anything but breaking Glamourer.")
.RegisterEntry("If you want to disable Glamourers state-tracking and hooking, you will need to disable the entire Plugin via Dalamud now.", 1)
.RegisterEntry("Added a reference to \"/glamour\" in the \"/glamourer help\" section.")
.RegisterEntry("Updated BNPC Data with new crowd-sourced data from the gubal library.")
.RegisterEntry("Fixed an issue with the quick design bar when no designs are saved.")
.RegisterEntry("Fixed a problem with characters not redrawing after leaving GPose even if necessary.");
private static void Add1_0_4_0(Changelog log) private static void Add1_0_4_0(Changelog log)
=> log.NextVersion("Version 1.0.4.0") => log.NextVersion("Version 1.0.4.0")
.RegisterEntry("The GPose target is now used for target-dependent functionality in GPose.") .RegisterEntry("The GPose target is now used for target-dependent functionality in GPose.")