Skip to content

Commit

Permalink
2.0.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
RisaDev committed Jun 16, 2024
1 parent fba3185 commit dcb45c3
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions CustomizePlus/UI/Windows/CPlusChangeLog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ public CPlusChangeLog(PluginConfiguration config)
Add2_0_3_0(Changelog);
Add2_0_4_0(Changelog);
Add2_0_4_1(Changelog);
Add2_0_4_4(Changelog);
}

private (int, ChangeLogDisplayType) ConfigData()
Expand All @@ -32,10 +33,16 @@ private void Save(int version, ChangeLogDisplayType type)
_config.Save();
}

private static void Add2_0_4_4(Changelog log)
=> log.NextVersion("Version 2.0.4.4")
.RegisterHighlight("Added edit button to the template selector in the profile editor which allows to quickly begin editing associated template.")
.RegisterEntry("Fixed \"Limit to my creatures\" setting not working correctly. (2.0.4.2)")
.RegisterEntry("Added additional logging. (2.0.4.2)");

private static void Add2_0_4_1(Changelog log)
=> log.NextVersion("Version 2.0.4.1")
.RegisterEntry("Added support for new worlds.")
.RegisterEntry("Source code maintenance - external libraries update.");
=> log.NextVersion("Version 2.0.4.1")
.RegisterEntry("Added support for new worlds.")
.RegisterEntry("Source code maintenance - external libraries update.");

private static void Add2_0_4_0(Changelog log)
=> log.NextVersion("Version 2.0.4.0")
Expand Down

0 comments on commit dcb45c3

Please sign in to comment.