Skip to content

Commit

Permalink
bump to 0.3.1
Browse files Browse the repository at this point in the history
update the readme
  • Loading branch information
ontrigger committed Jun 25, 2021
1 parent fb7f609 commit 877acaa
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 5 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

* First public release
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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.

```
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
Expand All @@ -19,5 +24,6 @@ Create a file called `Environment.props` inside the project base and change the
```

## Contributors

* ontrigger
* MSchmoecker
4 changes: 2 additions & 2 deletions ValheimPerformanceOptimizations/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]
[assembly: AssemblyVersion("0.0.3.1")]
[assembly: AssemblyFileVersion("0.0.3.1")]
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down

0 comments on commit 877acaa

Please sign in to comment.