From 4e7de5b9ed7c6cbdb9c8a5c4e8014ebbc28a5c71 Mon Sep 17 00:00:00 2001 From: RisaDev <151885272+RisaDev@users.noreply.github.com> Date: Thu, 27 Feb 2025 19:56:33 +0300 Subject: [PATCH] 2.0.7.15 --- CustomizePlus/UI/Windows/CPlusChangeLog.cs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/CustomizePlus/UI/Windows/CPlusChangeLog.cs b/CustomizePlus/UI/Windows/CPlusChangeLog.cs index a90c4ac..92d27f6 100644 --- a/CustomizePlus/UI/Windows/CPlusChangeLog.cs +++ b/CustomizePlus/UI/Windows/CPlusChangeLog.cs @@ -27,6 +27,7 @@ public CPlusChangeLog(PluginConfiguration config) Add2_0_7_0(Changelog); Add2_0_7_2(Changelog); Add2_0_7_9(Changelog); + Add2_0_7_15(Changelog); } private (int, ChangeLogDisplayType) ConfigData() @@ -39,6 +40,19 @@ private void Save(int version, ChangeLogDisplayType type) _config.Save(); } + private static void Add2_0_7_15(Changelog log) + => log.NextVersion("Version 2.0.7.15") + .RegisterEntry("Optimized JSON payload returned by Profile.GetByUniqueId IPC method. (requested by Mare Synchronos)") + .RegisterEntry("Values which are considered default are no longer returned, this drastically reduces the size of returned data.", 1) + .RegisterEntry("Fixed clipboard copies missing version data.") + .RegisterEntry("You do not need to do anything about this. This just fixes format inconsistencies between clipboard copies and on-disk data.", 1) + .RegisterEntry("Fixed (some?) \"ImGui assertation failed\" errors (2.0.7.14)") + .RegisterEntry("Improved support log contents (2.0.7.13)") + .RegisterEntry("Fixed skeleton changes not being detected when changing to between hairstyles with same amount of bones. (2.0.7.11)") + .RegisterEntry("Fixed character flashing in GPose. (Root bone position edits are no longer applied in GPose) (2.0.7.10)") + + .RegisterEntry("Source code maintenance - external libraries update."); + private static void Add2_0_7_9(Changelog log) => log.NextVersion("Version 2.0.7.9") .RegisterEntry("Added donation button to settings tab.")