From 5859020ff871a3e766d9f343d920497be9a9803f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henri=20Hyyryl=C3=A4inen?= Date: Wed, 19 Jun 2024 11:21:14 +0300 Subject: [PATCH] Bump version to 0.6.7.1 --- Thrive.csproj | 2 +- export_presets.cfg | 12 ++++++------ project.godot | 2 +- simulation_parameters/common/patch_notes.yml | 13 +++++++++++++ src/saving/ISaveUpgradeStep.cs | 1 + 5 files changed, 22 insertions(+), 8 deletions(-) diff --git a/Thrive.csproj b/Thrive.csproj index 4fb3d30543..93db079c61 100644 --- a/Thrive.csproj +++ b/Thrive.csproj @@ -9,7 +9,7 @@ 12.0 enable Revolutionary Games Studio - 0.6.7.0 + 0.6.7.1 diff --git a/export_presets.cfg b/export_presets.cfg index 6bb7b196e2..00d1cde706 100644 --- a/export_presets.cfg +++ b/export_presets.cfg @@ -80,8 +80,8 @@ application/modify_resources=true application/icon="res://assets/misc/icon.ico" application/console_wrapper_icon="" application/icon_interpolation=4 -application/file_version="0.6.7.0" -application/product_version="0.6.7.0" +application/file_version="0.6.7.1" +application/product_version="0.6.7.1" application/company_name="Revolutionary Games Studio" application/product_name="Thrive" application/file_description="Thrive Game" @@ -148,8 +148,8 @@ application/modify_resources=true application/icon="res://assets/misc/icon.ico" application/console_wrapper_icon="" application/icon_interpolation=4 -application/file_version="0.6.7.0" -application/product_version="0.6.7.0" +application/file_version="0.6.7.1" +application/product_version="0.6.7.1" application/company_name="Revolutionary Games Studio" application/product_name="Thrive" application/file_description="Thrive Game" @@ -261,8 +261,8 @@ application/modify_resources=true application/icon="res://assets/misc/icon.ico" application/console_wrapper_icon="" application/icon_interpolation=4 -application/file_version="0.6.7.0" -application/product_version="0.6.7.0" +application/file_version="0.6.7.1" +application/product_version="0.6.7.1" application/company_name="Revolutionary Games Studio" application/product_name="Thrive" application/file_description="Thrive Game" diff --git a/project.godot b/project.godot index c1a7778906..0848f9378b 100644 --- a/project.godot +++ b/project.godot @@ -15,7 +15,7 @@ config/description="Thrive is an open source evolution simulation game. Play as a microbe on an alien world trying to survive and adapt to your surroundings in order to thrive. https://revolutionarygamesstudio.com/" -config/version="0.6.7.0" +config/version="0.6.7.1" run/main_scene="res://src/general/MainMenu.tscn" config/use_custom_user_dir=true config/custom_user_dir_name="Thrive" diff --git a/simulation_parameters/common/patch_notes.yml b/simulation_parameters/common/patch_notes.yml index 9b9945a48c..63584ab09b 100644 --- a/simulation_parameters/common/patch_notes.yml +++ b/simulation_parameters/common/patch_notes.yml @@ -479,3 +479,16 @@ - Updated xunit from 2.8.0 to 2.8.1 - Updated code checking tools - Updated translations + +0.6.7.1: + IntroductionText: | + This is a quick small patch release to fix a few major issues that were resolved since the last release. The most major fix is that many more older CPUs should be able to run Thrive now. This problem was caused by a build configuration setting unintentionally targeting much newer CPU instructions than intended. + ReleaseLink: https://github.com/Revolutionary-Games/Thrive/releases/tag/v0.6.7.1 + PatchNotes: + - Changed compilation options for the fallback native library that should now work on older CPUs that only have SSE 4.2 and no newer instructions + - Fixed the game getting stuck when selecting 32 native executor threads + - Re-enabled Harmony mod loading as this no longer seems to cause the game to get stuck on start up with Godot 4 + - Reduced unnecessary StringName allocations related to key prompt icons and checking pressed inputs + - Updated YamlDotNet from 15.1.6 to 15.3.0 + - Updated Jolt Physics Engine version + - Updated translations diff --git a/src/saving/ISaveUpgradeStep.cs b/src/saving/ISaveUpgradeStep.cs index e23a12e1e7..6dbda701bc 100644 --- a/src/saving/ISaveUpgradeStep.cs +++ b/src/saving/ISaveUpgradeStep.cs @@ -87,6 +87,7 @@ private static Dictionary InitializeSaveUpgradeSteps() { "0.6.6.0", new UpgradeJustVersionNumber("0.6.6.1") }, { "0.6.6.1", new UpgradeJustVersionNumber("0.6.6.2") }, { "0.6.7.0-rc1", new UpgradeJustVersionNumber("0.6.7.0") }, + { "0.6.7.0", new UpgradeJustVersionNumber("0.6.7.1") }, }; } }