Skip to content
This repository has been archived by the owner on Apr 17, 2021. It is now read-only.

Commit

Permalink
Build 3
Browse files Browse the repository at this point in the history
  • Loading branch information
LukevanTricht committed Aug 1, 2015
1 parent e5c2372 commit b6d07a2
Show file tree
Hide file tree
Showing 17 changed files with 5 additions and 5 deletions.
Binary file modified Binaries/Connectors/tdsm-mysql-connector.dll
Binary file not shown.
Binary file added Binaries/Connectors/tdsm-mysql-connector.pdb
Binary file not shown.
Binary file modified Binaries/Connectors/tdsm-sqlite-connector.dll
Binary file not shown.
Binary file added Binaries/Connectors/tdsm-sqlite-connector.pdb
Binary file not shown.
Binary file modified Binaries/Libraries/Newtonsoft.Json.pdb
Binary file not shown.
Binary file modified Binaries/Plugins/tdsm.core.dll
Binary file not shown.
Binary file modified Binaries/Plugins/tdsm.core.pdb
Binary file not shown.
Binary file modified Binaries/tdsm-patcher.exe
Binary file not shown.
Binary file modified Binaries/tdsm-patcher.pdb
Binary file not shown.
Binary file modified Binaries/tdsm.api.dll
Binary file not shown.
Binary file modified Binaries/tdsm.api.pdb
Binary file not shown.
Binary file modified Binaries/tdsm.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion tdsm-api/Globals.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public enum ReleasePhase : ushort
}
public static class Globals
{
public const Int32 Build = 2;
public const Int32 Build = 3;
public const ReleasePhase BuildPhase = ReleasePhase.Beta;

public const Int32 TerrariaRelease = 146;
Expand Down
2 changes: 1 addition & 1 deletion tdsm-core/Entry.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace TDSM.Core
{
public partial class Entry : BasePlugin
{
public const Int32 CoreBuild = 2;
public const Int32 CoreBuild = 3;

private bool _useTimeLock;

Expand Down
2 changes: 1 addition & 1 deletion tdsm-mysql-connector/SqlPermissions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class SqlPermissions : BasePlugin

public SqlPermissions()
{
this.TDSMBuild = 2;
this.TDSMBuild = 3;
this.Version = "1";
this.Author = "TDSM";
this.Name = "MySQL Connector";
Expand Down
2 changes: 1 addition & 1 deletion tdsm-patcher/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ namespace tdsm.patcher
public class Program
{
public const String TDSMGuid = "9f7bca2e-4d2e-4244-aaae-fa56ca7797ec";
public const Int32 Build = 2;
public const Int32 Build = 3;
// public static bool IsPatching { get; private set; }

// static Program()
Expand Down
2 changes: 1 addition & 1 deletion tdsm-sqlite-connector/Plugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class Plugin : BasePlugin

public Plugin()
{
this.TDSMBuild = 2;
this.TDSMBuild = 3;
this.Version = "1";
this.Author = "TDSM";
this.Name = "SQLite Connector";
Expand Down

0 comments on commit b6d07a2

Please sign in to comment.