Skip to content
This repository has been archived by the owner on Feb 29, 2020. It is now read-only.

Commit

Permalink
fix config
Browse files Browse the repository at this point in the history
  • Loading branch information
brian91292 committed Apr 23, 2019
1 parent 4f198fb commit 9d74939
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Globals.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class Globals
/// <summary>
/// The StreamCore data path.
/// </summary>
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(" ", ""));

/// <summary>
/// This value will be true when the application is exiting.
Expand Down
2 changes: 1 addition & 1 deletion Plugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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; }

Expand Down
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]

0 comments on commit 9d74939

Please sign in to comment.