From a21e260d612fee7a294f356c39f3e0993e03a4b9 Mon Sep 17 00:00:00 2001 From: codengine <498798+codengine@users.noreply.github.com> Date: Sun, 19 Jan 2025 00:22:17 +0100 Subject: [PATCH] bump version --- CHANGELOG.md | 9 +++++++++ SOTFEdit/App.xaml.cs | 1 + SOTFEdit/AssemblyInfo.cs | 7 ++++--- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0edba15..31735ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## v0.12.9 + +- Updated polish translation +- Fix drying racks + - Food was always created as cooked +- Fix crash due to unexpected storage data + - This may be a bug in the game. Logs were assigned to stick holders, skulls were assigned to hutches etc. +- Add paper target as screw structure + ## v0.12.8 - Added new screw structures: Small Raft, Large Raft, Houseboat, Mooring, KnightV Holder, Foldable Glider Holder diff --git a/SOTFEdit/App.xaml.cs b/SOTFEdit/App.xaml.cs index 2f4c969..b9ac1bd 100644 --- a/SOTFEdit/App.xaml.cs +++ b/SOTFEdit/App.xaml.cs @@ -32,6 +32,7 @@ namespace SOTFEdit; /// public partial class App { + public const string Version = "0.12.9"; private static readonly ILogger Logger = LogManager.GetCurrentClassLogger(); public App() diff --git a/SOTFEdit/AssemblyInfo.cs b/SOTFEdit/AssemblyInfo.cs index cb27456..3d22051 100644 --- a/SOTFEdit/AssemblyInfo.cs +++ b/SOTFEdit/AssemblyInfo.cs @@ -2,6 +2,7 @@ using System.Runtime.InteropServices; using System.Runtime.Versioning; using System.Windows; +using SOTFEdit; [assembly: ThemeInfo( ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located @@ -12,11 +13,11 @@ // app, or any theme specific resource dictionaries) )] [assembly: AssemblyCompany("codengine")] -[assembly: AssemblyFileVersion("0.12.8")] -[assembly: AssemblyInformationalVersion("0.12.8")] +[assembly: AssemblyFileVersion(App.Version)] +[assembly: AssemblyInformationalVersion(App.Version)] [assembly: AssemblyProduct("SOTFEdit")] [assembly: AssemblyTitle("SOTFEdit")] -[assembly: AssemblyVersion("0.12.8")] +[assembly: AssemblyVersion(App.Version)] [assembly: TargetPlatform("Windows7.0")] [assembly: SupportedOSPlatform("Windows7.0")] [assembly: Guid("d59ec208-5fc6-4336-a9db-dbeb36938f78")] \ No newline at end of file