From 9fcb19e25ab610d8510bc67a04bf8c6a224764cc Mon Sep 17 00:00:00 2001 From: SpikeHimself Date: Wed, 15 Mar 2023 00:35:52 +0100 Subject: [PATCH] Release v1.1.2 --- Docs/Modules/50Changelogs.t4 | 18 +++++++++++------- Docs/README.Thunderstore.md | 18 +++++++++++------- Docs/manifest.json | 2 +- XStorage/ModInfo.cs | 2 +- 4 files changed, 24 insertions(+), 16 deletions(-) diff --git a/Docs/Modules/50Changelogs.t4 b/Docs/Modules/50Changelogs.t4 index a5a0eb3..2919b8f 100644 --- a/Docs/Modules/50Changelogs.t4 +++ b/Docs/Modules/50Changelogs.t4 @@ -1,5 +1,16 @@ <#= mf.Heading("Changelogs") #> +* **v1.1.2** (2023-03-15) + + * Dependency updates: BepInEx 5.4.21, Jotunn 2.11.0 + + * Fix panel size calculation + + * Save panel positions as Vector2 instead of Vector3 + +
+Click to view previous versions + * **v1.1.1** (2023-03-13) * Fix mod breaking after logging out and then starting/joining another game @@ -20,13 +31,6 @@ * Fix a compatibility issue whereby the Take All button would stop working if another mod added more buttons to the container panel -* Known issue: - - * The panel will not grow higher than 1 row when you set MaxColumns to 1. I'll address this in the next release. - -
-Click to view previous versions - * **v1.1.0** (2023-03-11) * Fix error when placing a new chest diff --git a/Docs/README.Thunderstore.md b/Docs/README.Thunderstore.md index 96da4f7..de62f39 100644 --- a/Docs/README.Thunderstore.md +++ b/Docs/README.Thunderstore.md @@ -51,6 +51,17 @@ I very strongly recommend using a mod manager such as [Vortex](https://www.nexus # Changelogs +* **v1.1.2** (2023-03-15) + + * Dependency updates: BepInEx 5.4.21, Jotunn 2.11.0 + + * Fix panel size calculation + + * Save panel positions as Vector2 instead of Vector3 + +
+Click to view previous versions + * **v1.1.1** (2023-03-13) * Fix mod breaking after logging out and then starting/joining another game @@ -71,13 +82,6 @@ I very strongly recommend using a mod manager such as [Vortex](https://www.nexus * Fix a compatibility issue whereby the Take All button would stop working if another mod added more buttons to the container panel -* Known issue: - - * The panel will not grow higher than 1 row when you set MaxColumns to 1. I'll address this in the next release. - -
-Click to view previous versions - * **v1.1.0** (2023-03-11) * Fix error when placing a new chest diff --git a/Docs/manifest.json b/Docs/manifest.json index 47aa1e4..55271c5 100644 --- a/Docs/manifest.json +++ b/Docs/manifest.json @@ -1,7 +1,7 @@ { "name": "XStorage", "description": "Open multiple chests at once, rename them, and move items/stacks to the most suitable chest.", - "version_number": "1.1.1", + "version_number": "1.1.2", "website_url": "https://github.com/SpikeHimself/XStorage", "dependencies": [ "denikson-BepInExPack_Valheim-5.4.2100", diff --git a/XStorage/ModInfo.cs b/XStorage/ModInfo.cs index 300dd9c..ef268e5 100644 --- a/XStorage/ModInfo.cs +++ b/XStorage/ModInfo.cs @@ -8,7 +8,7 @@ public static class Info public const string Author = "SpikeHimself"; public const string Name = "XStorage"; public const string GitHubRepo = "SpikeHimself/XStorage"; - public const string Version = "1.1.1"; + public const string Version = "1.1.2"; public const string Description = "Open multiple chests at once, rename them, and move items/stacks to the most suitable chest."; public const string WebsiteUrl = "https://github.com/" + GitHubRepo; public const int NexusId = 2290;