Skip to content

Commit

Permalink
2.0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
RisaDev committed Feb 14, 2024
1 parent efd94fd commit f913728
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions CustomizePlus/UI/Windows/CPlusChangeLog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ public CPlusChangeLog(PluginConfiguration config)
Changelog = new Changelog("Customize+ update history", ConfigData, Save);

Add2_0_0_0(Changelog);
Add2_0_1_0(Changelog);
}

private (int, ChangeLogDisplayType) ConfigData()
Expand All @@ -26,6 +27,18 @@ private void Save(int version, ChangeLogDisplayType type)
_config.ChangelogSettings.ChangeLogDisplayType = type;
_config.Save();
}

private static void Add2_0_1_0(Changelog log)
=> log.NextVersion("Version 2.0.1.0")
.RegisterHighlight("Added support for legacy clipboard copies.")
.RegisterEntry("Added setting allowing disabling of confirmation messages for chat commands.")
.RegisterEntry("Template and profile editing is no longer disabled during GPose.")
.RegisterImportant("Customize+ is not 100% compatible with posing tools such as Ktisis, Brio and Anamnesis. Some features of those tools might alter Customize+ behavior or prevent it from working.", 1)
.RegisterHighlight("Fixed crash during \"Duty Complete\" cutscenes.")
.RegisterEntry("Fixed settings migration failing completely if one of the profiles is corrupted.")
.RegisterEntry("Improved error handling.")
.RegisterHighlight("Customize+ window will now display warning message if plugin encounters a critical error.", 1);

private static void Add2_0_0_0(Changelog log)
=> log.NextVersion("Version 2.0.0.0")
.RegisterHighlight("Major rework of the entire plugin.")
Expand Down

0 comments on commit f913728

Please sign in to comment.