Skip to content

Commit

Permalink
Prepare changelog.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ottermandias committed Jan 16, 2024
1 parent c87885b commit 917e80d
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Glamourer/Configuration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public class Configuration : IPluginConfiguration, ISavable
public bool RevertManualChangesOnZoneChange { get; set; } = false;
public bool ShowQuickBarInTabs { get; set; } = true;
public bool OpenWindowAtStart { get; set; } = false;
public bool UseAdvancedParameters { get; set; } = false;
public bool UseAdvancedParameters { get; set; } = true;
public bool ShowPalettePlusImport { get; set; } = true;
public ModifiableHotkey ToggleQuickDesignBar { get; set; } = new(VirtualKey.NO_KEY);
public DoubleModifier DeleteDesignModifier { get; set; } = new(ModifierHotkey.Control, ModifierHotkey.Shift);
Expand Down
19 changes: 19 additions & 0 deletions Glamourer/Gui/GlamourerChangelog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ public GlamourerChangelog(Configuration config)
Add1_0_5_0(Changelog);
Add1_0_6_0(Changelog);
Add1_0_7_0(Changelog);
Add1_1_0_0(Changelog);
}

private (int, ChangeLogDisplayType) ConfigData()
Expand All @@ -45,6 +46,24 @@ private void Save(int version, ChangeLogDisplayType type)
}
}

private static void Add1_1_0_0(Changelog log)
=> log.NextVersion("Version 1.1.0.0")
.RegisterHighlight("Added a new tab to browse, apply or copy (human) NPC appearances.")
.RegisterHighlight("A characters body type can now be changed when copying state or saving designs from certain NPCs.")
.RegisterHighlight("Added support for picking advanced colors for your characters customizations.")
.RegisterEntry("The display and application of those can be toggled off in Glamourers behaviour settings.", 1)
.RegisterEntry("This provides the same functionality as Palette+, and Palette+ will probably be discontinued soonish (in accordance with Chirp).", 1)
.RegisterEntry("An option to import existing palettes from Palette+ by name is provided for designs, and can be toggled off in the settings.", 1)
.RegisterHighlight("Advanced colors, equipment and dyes can now be reset to their game state separately by Control-Rightclicking them.")
.RegisterHighlight("Hairstyles and face paints can now be made favourites.")
.RegisterEntry("Added a new command '/glamour delete' to delete saved designs by name or identifier.")
.RegisterEntry("Added an optional parameter to the '/glamour apply' command that makes it apply the associated mod settings for a design to the collection associated with the identified character.")
.RegisterEntry("Fixed changing weapons in Designs not working correctly.")
.RegisterEntry("Fixed restricted gear protection breaking outfits for Mare pairs.")
.RegisterEntry("Improved the handling of some cheat codes and added new ones.")
.RegisterEntry("Added IPC to set single items or stains on characters.")
.RegisterEntry("Added IPC to apply designs by GUID, and obtain a list of designs.");

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.")
Expand Down
1 change: 0 additions & 1 deletion Glamourer/State/StateListener.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
using Penumbra.GameData.Structs;
using Dalamud.Game.ClientState.Conditions;
using Dalamud.Plugin.Services;
using FFXIVClientStructs.FFXIV.Shader;
using Glamourer.GameData;
using Penumbra.GameData.DataContainers;

Expand Down

0 comments on commit 917e80d

Please sign in to comment.