Skip to content

Commit

Permalink
Changelog for 2.0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
RisaDev committed Mar 28, 2024
1 parent efa77f8 commit 92be6d3
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions CustomizePlus/UI/Windows/CPlusChangeLog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ public CPlusChangeLog(PluginConfiguration config)

Add2_0_0_0(Changelog);
Add2_0_1_0(Changelog);
Add2_0_2_2(Changelog);
}

private (int, ChangeLogDisplayType) ConfigData()
Expand All @@ -28,6 +29,15 @@ private void Save(int version, ChangeLogDisplayType type)
_config.Save();
}

private static void Add2_0_2_2(Changelog log)
=> log.NextVersion("Version 2.0.2.2")
.RegisterHighlight("Added brand new IPC (version 4) for cross-plugin interraction. (2.0.2.0)")
.RegisterEntry("Please refer to repository readme on GitHub for information about using it.", 1)
.RegisterImportant("Old IPC (version 3) is still available, but it will be removed sometime before Dawntrail release. Plugin developers are advised to migrate as soon as possible.", 1)
.RegisterEntry("Updated to .NET 8. (2.0.2.0)")
.RegisterEntry("Updated external libraries. (2.0.2.1)")
.RegisterEntry("Added additional cleanup of user input. (2.0.2.0)");

private static void Add2_0_1_0(Changelog log)
=> log.NextVersion("Version 2.0.1.0")
.RegisterHighlight("Added support for legacy clipboard copies.")
Expand Down

0 comments on commit 92be6d3

Please sign in to comment.