diff --git a/src/ARKServerManager/App.xaml.cs b/src/ARKServerManager/App.xaml.cs
index 3874fc44..b159a917 100644
--- a/src/ARKServerManager/App.xaml.cs
+++ b/src/ARKServerManager/App.xaml.cs
@@ -82,7 +82,7 @@ namespace ServerManagerTool
Title = string.Empty;
Version = AppUtils.GetDeployedVersion(Assembly.GetEntryAssembly());
- ServicePointManager.SecurityProtocol = SecurityUtils.GetSecurityProtocol(0xC00 + 0x3000); // TLS12, TLS13
+ ServicePointManager.SecurityProtocol = SecurityUtils.GetSecurityProtocol(0xC00); // TLS12
AppDomain.CurrentDomain.UnhandledException += ErrorHandling.CurrentDomain_UnhandledException;
MigrateSettings();
diff --git a/src/ARKServerManager/VersionFeed.xml b/src/ARKServerManager/VersionFeed.xml
index 0165e3ce..015f7414 100644
--- a/src/ARKServerManager/VersionFeed.xml
+++ b/src/ARKServerManager/VersionFeed.xml
@@ -9,8 +9,8 @@
urn:uuid:632DF17A-04C7-4A74-8C82-0106D0770393
- 1.1.426 (1.1.426.1)
- 1.1.426.1
+ 1.1.426 (1.1.426.2)
+ 1.1.426.2
2022-05-09T00:00:00Z
@@ -20,6 +20,7 @@
- Rcon Player List - fixed a bug when displaying the player details for Epic Players.
+ - Removed TLS13 from the list of accepted security protocols, as not all OS support TLS13.
diff --git a/src/ARKServerManager/VersionFeedBeta.xml b/src/ARKServerManager/VersionFeedBeta.xml
index c04772bb..59cec39a 100644
--- a/src/ARKServerManager/VersionFeedBeta.xml
+++ b/src/ARKServerManager/VersionFeedBeta.xml
@@ -7,6 +7,29 @@
2022-05-09T00:00:00Z
+
+ urn:uuid:0F1FA607-8CA0-4926-8783-0B3D14B9B672
+ 1.1.426 (1.1.426.2)
+ 1.1.426.2
+
+ 2022-05-09T00:00:00Z
+
+
+
+ BUGFIX
+
+
+ - Removed TLS13 from the list of accepted security protocols, as not all OS support TLS13.
+
+
+
+
+
+ bletch
+ bletch1971@hotmail.com
+
+
+
urn:uuid:632DF17A-04C7-4A74-8C82-0106D0770393
1.1.426 (1.1.426.1)
diff --git a/src/ConanServerManager/App.xaml.cs b/src/ConanServerManager/App.xaml.cs
index 34f614cb..899282eb 100644
--- a/src/ConanServerManager/App.xaml.cs
+++ b/src/ConanServerManager/App.xaml.cs
@@ -81,7 +81,7 @@ namespace ServerManagerTool
Title = string.Empty;
Version = AppUtils.GetDeployedVersion(Assembly.GetEntryAssembly());
- ServicePointManager.SecurityProtocol = SecurityUtils.GetSecurityProtocol(0xC00 + 0x3000); // TLS12, TLS13
+ ServicePointManager.SecurityProtocol = SecurityUtils.GetSecurityProtocol(0xC00); // TLS12
AppDomain.CurrentDomain.UnhandledException += ErrorHandling.CurrentDomain_UnhandledException;
MigrateSettings();
diff --git a/src/ConanServerManager/VersionFeed.xml b/src/ConanServerManager/VersionFeed.xml
index 87278833..49b6001d 100644
--- a/src/ConanServerManager/VersionFeed.xml
+++ b/src/ConanServerManager/VersionFeed.xml
@@ -9,8 +9,8 @@
urn:uuid:86CF3CE5-C935-4C04-8D31-224B2E1DD203
- 1.1.70 (1.1.70.1)
- 1.1.70.1
+ 1.1.70 (1.1.70.2)
+ 1.1.70.2
2022-05-09T00:00:00Z
@@ -20,6 +20,7 @@
- Rcon Player List - fixed a bug when displaying the player details for Epic Players.
+ - Removed TLS13 from the list of accepted security protocols, as not all OS support TLS13.
diff --git a/src/ConanServerManager/VersionFeedBeta.xml b/src/ConanServerManager/VersionFeedBeta.xml
index ed90be0e..d23fb91c 100644
--- a/src/ConanServerManager/VersionFeedBeta.xml
+++ b/src/ConanServerManager/VersionFeedBeta.xml
@@ -7,6 +7,29 @@
2022-05-09T00:00:00Z
+
+ urn:uuid:A9EE6916-474D-44AA-B6D5-F2EEFEB889C4
+ 1.1.70 (1.1.70.2)
+ 1.1.70.2
+
+ 2022-05-09T00:00:00Z
+
+
+
+ BUGFIX
+
+
+ - Removed TLS13 from the list of accepted security protocols, as not all OS support TLS13.
+
+
+
+
+
+ bletch
+ bletch1971@hotmail.com
+
+
+
urn:uuid:86CF3CE5-C935-4C04-8D31-224B2E1DD203
1.1.70 (1.1.70.1)
diff --git a/src/ServerManager.Updater/Program.cs b/src/ServerManager.Updater/Program.cs
index bef0c972..7d473a71 100644
--- a/src/ServerManager.Updater/Program.cs
+++ b/src/ServerManager.Updater/Program.cs
@@ -32,7 +32,7 @@ namespace ServerManagerTool.Updater
{
Console.Title = "Server Manager Updater";
- ServicePointManager.SecurityProtocol = SecurityUtils.GetSecurityProtocol(0xC00 + 0x3000); // TLS12, TLS13
+ ServicePointManager.SecurityProtocol = SecurityUtils.GetSecurityProtocol(0xC00); // TLS12
var updaterArgs = args;
ApplicationArgs = null;