Update BannerInterfaceStorage for 6.31h

This commit is contained in:
Ottermandias 2023-02-09 20:46:35 +01:00
parent f16c6363ab
commit c3a71ab95e
5 changed files with 31 additions and 17 deletions

View file

@ -34,10 +34,22 @@ public partial class ConfigWindow
Add6_3_0( ret );
Add6_4_0( ret );
Add6_5_0( ret );
Add6_5_2( ret );
return ret;
}
private static void Add6_5_2( Changelog log )
=> log.NextVersion( "Version 0.6.5.2" )
.RegisterEntry( "Updated for game version 6.31 Hotfix." )
.RegisterEntry( "Added option-specific descriptions for mods, instead of having just descriptions for groups of options. (Thanks Caraxi!)" )
.RegisterEntry( "Those are now accurately parsed from TTMPs, too.", 1 )
.RegisterEntry( "Improved launch times somewhat through parallelization of some tasks." )
.RegisterEntry( "Added some performance tracking for start-up durations and for real time data to Release builds. They can be seen and enabled in the Debug tab when Debug Mode is enabled." )
.RegisterEntry( "Fixed an issue with IMC changes and Mare Synchronos interoperability." )
.RegisterEntry( "Fixed an issue with housing mannequins crashing the game when resource logging was enabled." )
.RegisterEntry( "Fixed an issue generating Mip Maps for texture import on Wine." );
private static void Add6_5_0( Changelog log )
=> log.NextVersion( "Version 0.6.5.0" )
.RegisterEntry( "Fixed an issue with Item Swaps not using applied IMC changes in some cases." )