This commit is contained in:
RisaDev
2024-09-30 23:39:47 +03:00
parent b2d110980e
commit 1ac191133d

View File

@@ -23,6 +23,7 @@ public class CPlusChangeLog
Add2_0_4_4(Changelog);
Add2_0_5_0(Changelog);
Add2_0_6_0(Changelog);
Add2_0_6_3(Changelog);
}
private (int, ChangeLogDisplayType) ConfigData()
@@ -35,6 +36,16 @@ public class CPlusChangeLog
_config.Save();
}
private static void Add2_0_6_3(Changelog log)
=> log.NextVersion("Version 2.0.6.3")
.RegisterEntry("Added new IPC methods: GameState.GetCutsceneParentIndex, GameState.SetCutsceneParentIndex.")
.RegisterImportant("Those methods were requested by Ktisis developer. Other developers are advised to not use them unless absolutely sure what they are doing.", 1)
.RegisterEntry("Improved support logs. (2.0.6.2)")
.RegisterEntry("Tweaked logging a bit to be less spammy in \"Debug+\" mode.")
.RegisterEntry("Made Character Select Screen handling more reliable. (2.0.6.1, 2.0.6.3)")
.RegisterEntry("Fixed incorrect handling of GPose actors.")
.RegisterEntry("Source code maintenance - external libraries update.");
private static void Add2_0_6_0(Changelog log)
=> log.NextVersion("Version 2.0.6.0")
.RegisterHighlight("IPC has been re-enabled.")