Release 1.0.0.2

This commit is contained in:
Ottermandias 2023-09-27 19:01:40 +02:00
parent d4faf309b7
commit b8dad18f86
5 changed files with 29 additions and 5 deletions

Binary file not shown.

View file

@ -5,8 +5,8 @@
<PlatformTarget>x64</PlatformTarget>
<RootNamespace>Glamourer</RootNamespace>
<AssemblyName>Glamourer</AssemblyName>
<FileVersion>1.0.0.1</FileVersion>
<AssemblyVersion>1.0.0.1</AssemblyVersion>
<FileVersion>1.0.0.2</FileVersion>
<AssemblyVersion>1.0.0.2</AssemblyVersion>
<Company>SoftOtter</Company>
<Product>Glamourer</Product>
<Copyright>Copyright © 2023</Copyright>

View file

@ -5,7 +5,7 @@
"Description": "Adds functionality to change and store appearance of players, customization and equip. Requires Penumbra to be installed and activated to work. Can also add preview options to the Changed Items tab for Penumbra.",
"Tags": [ "Appearance", "Glamour", "Race", "Outfit", "Armor", "Clothes", "Skins", "Customization", "Design", "Character" ],
"InternalName": "Glamourer",
"AssemblyVersion": "1.0.0.1",
"AssemblyVersion": "1.0.0.2",
"RepoUrl": "https://github.com/Ottermandias/Glamourer",
"ApplicableVersion": "any",
"DalamudApiLevel": 8,

View file

@ -15,6 +15,7 @@ public class GlamourerChangelog
Add1_0_0_0(Changelog);
Add1_0_0_1(Changelog);
Add1_0_0_2(Changelog);
}
private (int, ChangeLogDisplayType) ConfigData()
@ -27,6 +28,29 @@ public class GlamourerChangelog
_config.Save();
}
private static void Add1_0_0_2(Changelog log)
=> log.NextVersion("Version 1.0.0.2")
.RegisterHighlight("Added support for 'Clipboard' as a design source for /glamour apply.")
.RegisterEntry("Improved tooltips for tri-state toggles.")
.RegisterEntry("Improved some labels of settings to clarify what they do.")
.RegisterEntry("Improved vertical space for automated design sets.")
.RegisterEntry(
"Improved tooltips for renaming/moving designs via right-click context to make it clear that this does not rename the design itself.")
.RegisterHighlight("Added new configuration to hide advanced application rule settings in automated design lines.")
.RegisterHighlight("Added new configuration to hide unobtained item warnings in automated design lines.")
.RegisterEntry("Removed some warning popups for temporary designs when sharing non-human actors via Mare (I guess?)")
.RegisterEntry(
"Fixed an issue with unnecessary redrawing in GPose when having applied a change that required redrawing after entering GPose.")
.RegisterEntry("Fixed chat commands parsing concerning NPC identifiers.")
.RegisterEntry("Fixed restricted racial gear applying to accessories by mistake.")
.RegisterEntry("Maybe fixed Mare syncing having issues with restricted gear protection.")
.RegisterEntry("Fixed the icon for disabled mods in associated mods.")
.RegisterEntry("Fixed inability to remove associated mods except for the last one.")
.RegisterEntry(
"Fixed treating certain gloves as restricted because one restricted items sharing the model with identical, unrestricted gloves exists (wtf SE?).")
.RegisterEntry(
"Hopefully fixed ear shape numbering for Elezen and Lalafell (yes SE, just put a 1-indexed option in a sea of 0-indexed options, sure. Fuck off-by-one error).");
private static void Add1_0_0_1(Changelog log)
=> log.NextVersion("Version 1.0.0.1")
.RegisterImportant("Fixed Issue with Migration of identically named designs. "

View file

@ -6,8 +6,8 @@
"Description": "Adds functionality to change and store appearance of players, customization and equip. Requires Penumbra to be installed and activated to work. Can also add preview options to the Changed Items tab for Penumbra.",
"Tags": [ "Appearance", "Glamour", "Race", "Outfit", "Armor", "Clothes", "Skins", "Customization", "Design", "Character" ],
"InternalName": "Glamourer",
"AssemblyVersion": "1.0.0.1",
"TestingAssemblyVersion": "1.0.0.1",
"AssemblyVersion": "1.0.0.2",
"TestingAssemblyVersion": "1.0.0.2",
"RepoUrl": "https://github.com/Ottermandias/Glamourer",
"ApplicableVersion": "any",
"DalamudApiLevel": 8,