diff --git a/CHANGELOG.md b/CHANGELOG.md index 34e894b..77c3354 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,8 @@ -# Version 0.14.9 +# Version 0.15.0 +* Compatible with Valheim v0.217.46 * Fixed re-scan of piece tables (thx searica) * Fixed Plan Shader -* Excluded thumbnails while getting the server BP list to preserve bandwidth +* Excluded thumbnails while moving blueprints to and from the server to preserve bandwidth # Version 0.14.8 * Public API to re-scan pieces and create/update plans of the pieces, called via PlanBuildPlugin.UpdatescanPieces() (thx searica) diff --git a/PlanBuild/PlanBuildPlugin.cs b/PlanBuild/PlanBuildPlugin.cs index a6d0bd6..3d796c7 100644 --- a/PlanBuild/PlanBuildPlugin.cs +++ b/PlanBuild/PlanBuildPlugin.cs @@ -27,7 +27,7 @@ internal class PlanBuildPlugin : BaseUnityPlugin { public const string PluginGUID = "marcopogo.PlanBuild"; public const string PluginName = "PlanBuild"; - public const string PluginVersion = "0.14.9"; + public const string PluginVersion = "0.15.0"; public static PlanBuildPlugin Instance; @@ -52,10 +52,7 @@ public void Awake() PlanHammerPrefab.Create(planbuildBundle); planbuildBundle.Unload(false); PlanManager.Init(); - - // Init Shader - //ShaderHelper.PlanShader = Shader.Find("Lux Lit Particles/ Bumped"); - + // Harmony patching Patches.Apply(); } diff --git a/PlanBuild/Properties/AssemblyInfo.cs b/PlanBuild/Properties/AssemblyInfo.cs index 7e441ee..f119ca3 100644 --- a/PlanBuild/Properties/AssemblyInfo.cs +++ b/PlanBuild/Properties/AssemblyInfo.cs @@ -9,7 +9,7 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("PlanBuild")] -[assembly: AssemblyCopyright("Copyright © 2023")] +[assembly: AssemblyCopyright("Copyright © 2024")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] @@ -28,5 +28,5 @@ // Build Number // Revision // -[assembly: AssemblyVersion("0.14.9.0")] -[assembly: AssemblyFileVersion("0.14.9.0")] \ No newline at end of file +[assembly: AssemblyVersion("0.15.0.0")] +[assembly: AssemblyFileVersion("0.15.0.0")] \ No newline at end of file diff --git a/manifest.json b/manifest.json index b69197d..7254b9a 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "name": "PlanBuild", "description": "PlanBuild enables you to plan, copy and share your building creations in Valheim with ease. Includes terrain tools and immersion items.", - "version_number": "0.14.9", + "version_number": "0.15.0", "dependencies": [ "denikson-BepInExPack_Valheim-5.4.2202", "ValheimModding-Jotunn-2.19.2",