diff --git a/CHANGELOG.md b/CHANGELOG.md index eff7aa6..3289f61 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,2 +1,8 @@ +# Changes in 0.3.1 + +* Fixed multiple crashes caused by logging out and back in into any world +* Tiny performance improvement for comfort level calculation + # Changes in 0.3.0 -* First public release \ No newline at end of file + +* First public release diff --git a/README.md b/README.md index 5d3cf68..6adde3f 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,18 @@ # ValheimPerformanceOptimizations -Rendering, logic, and loading time optimizations for Valheim. + +Rendering, logic, and loading time optimizations for both client and server versions of Valheim. + ## Stats + * 5-10 ms faster GPU render times in bases (3 fps without the mod -> 15 fps with) * General game stability improvements - less stutters in bases * Up to 20 second faster world loading times (excluding the first launch) * General game logic performance improvements (no concrete data on framerates) ## Development Setup + Create a file called `Environment.props` inside the project base and change the Valheim install path to your location. + ``` @@ -19,5 +24,6 @@ Create a file called `Environment.props` inside the project base and change the ``` ## Contributors + * ontrigger * MSchmoecker diff --git a/ValheimPerformanceOptimizations/Properties/AssemblyInfo.cs b/ValheimPerformanceOptimizations/Properties/AssemblyInfo.cs index 5f35535..d8f0fcd 100644 --- a/ValheimPerformanceOptimizations/Properties/AssemblyInfo.cs +++ b/ValheimPerformanceOptimizations/Properties/AssemblyInfo.cs @@ -31,5 +31,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("0.0.3.0")] -[assembly: AssemblyFileVersion("0.0.3.0")] \ No newline at end of file +[assembly: AssemblyVersion("0.0.3.1")] +[assembly: AssemblyFileVersion("0.0.3.1")] \ No newline at end of file diff --git a/ValheimPerformanceOptimizations/ValheimPerformanceOptimizations.cs b/ValheimPerformanceOptimizations/ValheimPerformanceOptimizations.cs index 5dd39d6..a7d53f9 100644 --- a/ValheimPerformanceOptimizations/ValheimPerformanceOptimizations.cs +++ b/ValheimPerformanceOptimizations/ValheimPerformanceOptimizations.cs @@ -5,7 +5,7 @@ namespace ValheimPerformanceOptimizations { - [BepInPlugin(PluginId, "Valheim Performance Optimizations", "0.3.0")] + [BepInPlugin(PluginId, "Valheim Performance Optimizations", "0.3.1")] public class ValheimPerformanceOptimizations : BaseUnityPlugin { public const string PluginId = "dev.ontrigger.vpo";