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

Commit 16e4253

Browse files
committed
Build 5
1 parent 5fe7be8 commit 16e4253

19 files changed

+7
-7
lines changed
-512 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
-2 KB
Binary file not shown.
0 Bytes
Binary file not shown.
-92 KB
Binary file not shown.

Binaries/Plugins/TDSM.Core.dll

-1 KB
Binary file not shown.

Binaries/Plugins/TDSM.Core.pdb

-542 KB
Binary file not shown.

Binaries/TDSM.API.dll

-15.5 KB
Binary file not shown.

Binaries/TDSM.API.pdb

306 KB
Binary file not shown.

Binaries/server.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ web-server-provider=TDSM Rebind Server Host
190190
#================================================================
191191

192192
# Sets the database to be used.
193-
sqlite=Data Source=database.sqlite;Version=3;
193+
#sqlite=Data Source=database.sqlite;Version=3;
194194

195195
# Connection string for MySQL.
196196
#mysql=Server=127.0.0.1;Database=tdsm;Uid=root;Pwd=;

Binaries/tdsm-patcher.exe

-5 KB
Binary file not shown.

Binaries/tdsm-patcher.pdb

10 KB
Binary file not shown.

Binaries/tdsm.exe

5.5 KB
Binary file not shown.

tdsm-api/Globals.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public enum ReleasePhase : ushort
1414
}
1515
public static class Globals
1616
{
17-
public const Int32 Build = 4;
17+
public const Int32 Build = 5;
1818
public const ReleasePhase BuildPhase = ReleasePhase.LiveRelease;
1919

2020
public const Int32 TerrariaRelease = 146;

tdsm-core/Entry.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ namespace TDSM.Core
3131

3232
public partial class Entry : BasePlugin
3333
{
34-
public const Int32 CoreBuild = 4;
34+
public const Int32 CoreBuild = 5;
3535

3636
private bool _useTimeLock;
3737

tdsm-mysql-connector/SqlPermissions.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public class SqlPermissions : BasePlugin
1111

1212
public SqlPermissions()
1313
{
14-
this.TDSMBuild = 4;
14+
this.TDSMBuild = 5;
1515
this.Version = "1";
1616
this.Author = "TDSM";
1717
this.Name = "MySQL Connector";

tdsm-patcher/Program.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ namespace tdsm.patcher
1818
public class Program
1919
{
2020
public const String TDSMGuid = "9f7bca2e-4d2e-4244-aaae-fa56ca7797ec";
21-
public const Int32 Build = 4;
21+
public const Int32 Build = 5;
2222
// public static bool IsPatching { get; private set; }
2323

2424
// static Program()

tdsm-patcher/additional.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ web-server-provider=TDSM Rebind Server Host
118118
#================================================================
119119

120120
# Sets the database to be used.
121-
sqlite=Data Source=database.sqlite;Version=3;
121+
#sqlite=Data Source=database.sqlite;Version=3;
122122

123123
# Connection string for MySQL.
124124
#mysql=Server=127.0.0.1;Database=tdsm;Uid=root;Pwd=;

tdsm-sqlite-connector/Plugin.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public class Plugin : BasePlugin
1313

1414
public Plugin()
1515
{
16-
this.TDSMBuild = 4;
16+
this.TDSMBuild = 5;
1717
this.Version = "1";
1818
this.Author = "TDSM";
1919
this.Name = "SQLite Connector";

0 commit comments

Comments
 (0)