Update libs so new worlds are working

This commit is contained in:
RisaDev
2024-06-12 01:54:30 +03:00
parent 8669c43dbd
commit 606becc46b
4 changed files with 9 additions and 3 deletions

View File

@@ -19,6 +19,7 @@ public class CPlusChangeLog
Add2_0_2_2(Changelog); Add2_0_2_2(Changelog);
Add2_0_3_0(Changelog); Add2_0_3_0(Changelog);
Add2_0_4_0(Changelog); Add2_0_4_0(Changelog);
Add2_0_4_1(Changelog);
} }
private (int, ChangeLogDisplayType) ConfigData() private (int, ChangeLogDisplayType) ConfigData()
@@ -31,6 +32,11 @@ public class CPlusChangeLog
_config.Save(); _config.Save();
} }
private static void Add2_0_4_1(Changelog log)
=> log.NextVersion("Version 2.0.4.1")
.RegisterEntry("Added support for new worlds.", 1)
.RegisterEntry("Source code maintenance - external libraries update.");
private static void Add2_0_4_0(Changelog log) private static void Add2_0_4_0(Changelog log)
=> log.NextVersion("Version 2.0.4.0") => log.NextVersion("Version 2.0.4.0")
.RegisterImportant("Version 3 IPC has been removed, any plugins still relying on it will stop working until updated.") .RegisterImportant("Version 3 IPC has been removed, any plugins still relying on it will stop working until updated.")