From 9d749394d13f52823c112747bdbdcf84a4fee84f Mon Sep 17 00:00:00 2001 From: brian91292 <8050523+brian91292@users.noreply.github.com> Date: Mon, 22 Apr 2019 23:43:48 -0500 Subject: [PATCH] fix config --- Globals.cs | 2 +- Plugin.cs | 2 +- Properties/AssemblyInfo.cs | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Globals.cs b/Globals.cs index 9293266..8107b33 100644 --- a/Globals.cs +++ b/Globals.cs @@ -15,7 +15,7 @@ public class Globals /// /// The StreamCore data path. /// - public static readonly string DataPath = Path.Combine(Environment.CurrentDirectory, "UserData", Plugin.ModuleName); + public static readonly string DataPath = Path.Combine(Environment.CurrentDirectory, "UserData", Plugin.ModuleName.Replace(" ", "")); /// /// This value will be true when the application is exiting. diff --git a/Plugin.cs b/Plugin.cs index 0f849af..0d258ff 100644 --- a/Plugin.cs +++ b/Plugin.cs @@ -16,7 +16,7 @@ public class Plugin : IPlugin public static readonly string ModuleName = "Stream Core"; public string Name => ModuleName; - public string Version => "1.0.4"; + public string Version => "1.0.5"; public static Plugin Instance { get; private set; } diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs index c521398..ff78f55 100644 --- a/Properties/AssemblyInfo.cs +++ b/Properties/AssemblyInfo.cs @@ -32,5 +32,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("1.0.4.0")] -[assembly: AssemblyFileVersion("1.0.4.0")] +[assembly: AssemblyVersion("1.0.5.0")] +[assembly: AssemblyFileVersion("1.0.5.0")]