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

Commit

Permalink
Build 5
Browse files Browse the repository at this point in the history
  • Loading branch information
SignatureBeef committed Aug 13, 2015
1 parent 5fe7be8 commit 16e4253
Show file tree
Hide file tree
Showing 19 changed files with 7 additions and 7 deletions.
Binary file modified Binaries/Connectors/tdsm-mysql-connector.dll
Binary file not shown.
Binary file modified 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 modified 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.API.dll
Binary file not shown.
Binary file modified Binaries/TDSM.API.pdb
Binary file not shown.
2 changes: 1 addition & 1 deletion Binaries/server.config
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ web-server-provider=TDSM Rebind Server Host
#================================================================

# Sets the database to be used.
sqlite=Data Source=database.sqlite;Version=3;
#sqlite=Data Source=database.sqlite;Version=3;

# Connection string for MySQL.
#mysql=Server=127.0.0.1;Database=tdsm;Uid=root;Pwd=;
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.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 = 4;
public const Int32 Build = 5;
public const ReleasePhase BuildPhase = ReleasePhase.LiveRelease;

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 @@ -31,7 +31,7 @@ namespace TDSM.Core

public partial class Entry : BasePlugin
{
public const Int32 CoreBuild = 4;
public const Int32 CoreBuild = 5;

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 = 4;
this.TDSMBuild = 5;
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 = 4;
public const Int32 Build = 5;
// public static bool IsPatching { get; private set; }

// static Program()
Expand Down
2 changes: 1 addition & 1 deletion tdsm-patcher/additional.config
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ web-server-provider=TDSM Rebind Server Host
#================================================================

# Sets the database to be used.
sqlite=Data Source=database.sqlite;Version=3;
#sqlite=Data Source=database.sqlite;Version=3;

# Connection string for MySQL.
#mysql=Server=127.0.0.1;Database=tdsm;Uid=root;Pwd=;
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 = 4;
this.TDSMBuild = 5;
this.Version = "1";
this.Author = "TDSM";
this.Name = "SQLite Connector";
Expand Down

0 comments on commit 16e4253

Please sign in to comment.