Release 1.0.0.1

This commit is contained in:
Ottermandias 2023-09-26 20:00:05 +02:00
parent f473797028
commit 089194132d
5 changed files with 17 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.0</FileVersion>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>1.0.0.1</FileVersion>
<AssemblyVersion>1.0.0.1</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.0",
"AssemblyVersion": "1.0.0.1",
"RepoUrl": "https://github.com/Ottermandias/Glamourer",
"ApplicableVersion": "any",
"DalamudApiLevel": 8,

View file

@ -14,6 +14,7 @@ public class GlamourerChangelog
Changelog = new Changelog("Glamourer Changelog", ConfigData, Save);
Add1_0_0_0(Changelog);
Add1_0_0_1(Changelog);
}
private (int, ChangeLogDisplayType) ConfigData()
@ -26,6 +27,17 @@ public class GlamourerChangelog
_config.Save();
}
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. "
+ "If you lost any designs during migration, try going to \"%appdata%\\XIVLauncher\\pluginConfigs\\Glamourer\\\" "
+ "and renaming the file \"Designs.json.bak\" to \"Designs.json\", then restarting.")
.RegisterEntry("This may cause some duplicated entries", 1)
.RegisterEntry("Added a highlight border around the Enable/Disable All toggle for Automated Designs.")
.RegisterEntry("Fixed newly created designs not being moved to folders when using paths like 'path/to/design' anymore.")
.RegisterEntry("Added a tooltip to clarify the intent of the Mod Associations tab.")
.RegisterEntry("Fixed an issue with some weapons not being recognized as offhands correctly.");
private static void Add1_0_0_0(Changelog log)
=> log.NextVersion("Version 1.0.0.0 (Full Rework)")
.RegisterHighlight(

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.0",
"TestingAssemblyVersion": "1.0.0.0",
"AssemblyVersion": "1.0.0.1",
"TestingAssemblyVersion": "1.0.0.1",
"RepoUrl": "https://github.com/Ottermandias/Glamourer",
"ApplicableVersion": "any",
"DalamudApiLevel": 8,