Skip to content

Commit 863a7ed

Browse files
committed
Add changelog.
1 parent 30a87e3 commit 863a7ed

File tree

2 files changed

+31
-3
lines changed

2 files changed

+31
-3
lines changed

Penumbra/Penumbra.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
using OtterGui.Tasks;
2121
using Penumbra.GameData.Enums;
2222
using Penumbra.UI;
23-
using IPenumbraApi = Penumbra.Api.Api.IPenumbraApi;
2423
using ResidentResourceManager = Penumbra.Interop.Services.ResidentResourceManager;
2524

2625
namespace Penumbra;

Penumbra/UI/Changelog.cs

Lines changed: 31 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,39 @@ public PenumbraChangelog(Configuration config)
5050
AddDummy(Changelog);
5151
AddDummy(Changelog);
5252
Add1_1_0_0(Changelog);
53-
}
54-
53+
Add1_1_1_0(Changelog);
54+
}
55+
5556
#region Changelogs
5657

58+
private static void Add1_1_1_0(Changelog log)
59+
=> log.NextVersion("Version 1.1.1.0")
60+
.RegisterHighlight("Filtering for mods is now tokenized and can filter for multiple things at once, or exclude specific things.")
61+
.RegisterEntry("Hover over the filter to see the new available options in the tooltip.", 1)
62+
.RegisterEntry("Be aware that the tokenization changed the prior behavior slightly.", 1)
63+
.RegisterEntry("This is open to improvements, if you have any ideas, let me know!", 1)
64+
.RegisterHighlight("Added initial identification of characters in the login-screen by name.")
65+
.RegisterEntry("Those characters can not be redrawn and re-use some things, so this may not always behave as expected, but should work in general. Let me know if you encounter edge cases!", 1)
66+
.RegisterEntry("Added functionality for IMC groups to apply to all variants for a model instead of a specific one.")
67+
.RegisterEntry("Improved the resource tree view with filters and incognito mode. (by Ny)")
68+
.RegisterEntry("Added a tooltip to the global EQP condition.")
69+
.RegisterEntry("Fixed the new worlds not being identified correctly because Square Enix could not be bothered to turn them public.")
70+
.RegisterEntry("Fixed model import getting stuck when doing weight adjustments. (by ackwell)")
71+
.RegisterEntry("Fixed an issue with dye previews in the material editor not applying.")
72+
.RegisterEntry("Fixed an issue with collections not saving on renames.")
73+
.RegisterEntry("Fixed an issue parsing collections with settings set to negative values, which should now be set to 0.")
74+
.RegisterEntry("Fixed an issue with the accessory VFX addition.")
75+
.RegisterEntry("Fixed an issue with GMP animation type entries.")
76+
.RegisterEntry("Fixed another issue with the mod merger.")
77+
.RegisterEntry("Fixed an issue with IMC groups and IPC.")
78+
.RegisterEntry("Fixed some issues with the capitalization of the root directory.")
79+
.RegisterEntry("Fixed IMC attribute tooltips not appearing for disabled checkboxes.")
80+
.RegisterEntry("Added GetChangedItems IPC for single mods. (1.1.0.2)")
81+
.RegisterEntry("Fixed an issue with creating unnamed collections. (1.1.0.2)")
82+
.RegisterEntry("Fixed an issue with the mod merger. (1.1.0.2)")
83+
.RegisterEntry("Fixed the global EQP entry for rings checking for bracelets instead of rings. (1.1.0.2)")
84+
.RegisterEntry("Fixed an issue with newly created collections not being added to the collection list. (1.1.0.1)");
85+
5786
private static void Add1_1_0_0(Changelog log)
5887
=> log.NextVersion("Version 1.1.0.0")
5988
.RegisterImportant(

0 commit comments

Comments
 (0)