mirror of
https://github.com/tribufu/ServerManagers
synced 2026-05-18 09:35:48 +00:00
RCON Player List Fixes
- fixed player list for EPIC players.
This commit is contained in:
parent
b19626ecd4
commit
1a45d85ff6
8 changed files with 81 additions and 304 deletions
|
|
@ -332,21 +332,25 @@ namespace ServerManagerTool.Lib
|
||||||
// This is bound to the UI thread
|
// This is bound to the UI thread
|
||||||
private List<string> HandleListPlayersCommand(IEnumerable<string> commandLines)
|
private List<string> HandleListPlayersCommand(IEnumerable<string> commandLines)
|
||||||
{
|
{
|
||||||
|
/*
|
||||||
|
> listplayers
|
||||||
|
0. Bletch, 76561197991984752 <- steam
|
||||||
|
0. Bletch, 7171521174456260817 <- epic
|
||||||
|
*/
|
||||||
var output = new List<string>();
|
var output = new List<string>();
|
||||||
var onlinePlayers = new List<PlayerInfo>();
|
var onlinePlayers = new List<PlayerInfo>();
|
||||||
|
|
||||||
var playerLines = commandLines?.ToList() ?? new List<string>();
|
var playerLines = commandLines?.ToList() ?? new List<string>();
|
||||||
|
|
||||||
if (playerLines.Count > 0)
|
if (playerLines.Count > 0)
|
||||||
{
|
{
|
||||||
|
|
||||||
foreach (var line in playerLines)
|
foreach (var line in playerLines)
|
||||||
{
|
{
|
||||||
var elements = line.Split(',');
|
var elements = line.Split(',', '.');
|
||||||
if (elements.Length != 2)
|
if (elements.Length != 3)
|
||||||
// Invalid data. Ignore it.
|
// Invalid data. Ignore it.
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
var id = elements[1]?.Trim();
|
var id = elements[2].Trim();
|
||||||
|
|
||||||
if (onlinePlayers.FirstOrDefault(p => p.PlayerId.Equals(id, StringComparison.OrdinalIgnoreCase)) != null)
|
if (onlinePlayers.FirstOrDefault(p => p.PlayerId.Equals(id, StringComparison.OrdinalIgnoreCase)) != null)
|
||||||
// Duplicate data. Ignore it.
|
// Duplicate data. Ignore it.
|
||||||
|
|
@ -355,7 +359,7 @@ namespace ServerManagerTool.Lib
|
||||||
var newPlayer = new PlayerInfo()
|
var newPlayer = new PlayerInfo()
|
||||||
{
|
{
|
||||||
PlayerId = id,
|
PlayerId = id,
|
||||||
PlayerName = elements[0].Substring(elements[0].IndexOf('.') + 1).Trim(),
|
PlayerName = elements[1].Trim(),
|
||||||
IsOnline = true,
|
IsOnline = true,
|
||||||
};
|
};
|
||||||
onlinePlayers.Add(newPlayer);
|
onlinePlayers.Add(newPlayer);
|
||||||
|
|
|
||||||
|
|
@ -124,7 +124,8 @@ namespace ServerManagerTool.Lib.ViewModel.RCON
|
||||||
if (playerData == null)
|
if (playerData == null)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
playerData.PlayerName = PlayerData?.PlayerName;
|
if (PlayerData?.PlayerName != null)
|
||||||
|
playerData.PlayerName = PlayerData.PlayerName;
|
||||||
playerData.LastPlatformUpdateUtc = PlayerData?.LastPlatformUpdateUtc ?? DateTime.MinValue;
|
playerData.LastPlatformUpdateUtc = PlayerData?.LastPlatformUpdateUtc ?? DateTime.MinValue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,30 @@
|
||||||
<title>Ark Server Manager Version Feed</title>
|
<title>Ark Server Manager Version Feed</title>
|
||||||
<subtitle>This is the Ark Server Manager release version feed.</subtitle>
|
<subtitle>This is the Ark Server Manager release version feed.</subtitle>
|
||||||
<link href="http://arkservermanager.freeforums.net/" />
|
<link href="http://arkservermanager.freeforums.net/" />
|
||||||
<updated>2022-05-07T00:00:00Z</updated>
|
<updated>2022-05-09T00:00:00Z</updated>
|
||||||
|
|
||||||
|
<entry>
|
||||||
|
<id>urn:uuid:632DF17A-04C7-4A74-8C82-0106D0770393</id>
|
||||||
|
<title>1.1.426 (1.1.426.1)</title>
|
||||||
|
<summary>1.1.426.1</summary>
|
||||||
|
<link href="" />
|
||||||
|
<updated>2022-05-09T00:00:00Z</updated>
|
||||||
|
<content type="xhtml">
|
||||||
|
<div xmlns="http://www.w3.org/1999/xhtml" style="font-family: Arial, Verdana, Helvetica, Sans-Serif;font-size: .8em;">
|
||||||
|
<p>
|
||||||
|
<u style="font-size: .9em;">BUGFIX</u>
|
||||||
|
<br/>
|
||||||
|
<ul>
|
||||||
|
<li>Rcon Player List - fixed a bug when displaying the player details for Epic Players.</li>
|
||||||
|
</ul>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</content>
|
||||||
|
<author>
|
||||||
|
<name>bletch</name>
|
||||||
|
<email>bletch1971@hotmail.com</email>
|
||||||
|
</author>
|
||||||
|
</entry>
|
||||||
|
|
||||||
<entry>
|
<entry>
|
||||||
<id>urn:uuid:2C48A585-72D2-43FB-8987-6B5F0B3E460F</id>
|
<id>urn:uuid:2C48A585-72D2-43FB-8987-6B5F0B3E460F</id>
|
||||||
|
|
|
||||||
|
|
@ -5,161 +5,21 @@
|
||||||
<title>Ark Server Manager Version Feed</title>
|
<title>Ark Server Manager Version Feed</title>
|
||||||
<subtitle>This is the Ark Server Manager beta version feed.</subtitle>
|
<subtitle>This is the Ark Server Manager beta version feed.</subtitle>
|
||||||
<link href="http://arkservermanager.freeforums.net/" />
|
<link href="http://arkservermanager.freeforums.net/" />
|
||||||
<updated>2022-05-08T00:00:00Z</updated>
|
<updated>2022-05-09T00:00:00Z</updated>
|
||||||
|
|
||||||
<entry>
|
<entry>
|
||||||
<id>urn:uuid:6F7A6BDA-891F-4446-B889-3FC218D207D6</id>
|
<id>urn:uuid:632DF17A-04C7-4A74-8C82-0106D0770393</id>
|
||||||
<title>1.1.425 (1.1.425.7)</title>
|
<title>1.1.426 (1.1.426.1)</title>
|
||||||
<summary>1.1.425.7</summary>
|
<summary>1.1.426.1</summary>
|
||||||
<link href="" />
|
<link href="" />
|
||||||
<updated>2022-05-08T00:00:00Z</updated>
|
<updated>2022-05-09T00:00:00Z</updated>
|
||||||
<content type="xhtml">
|
<content type="xhtml">
|
||||||
<div xmlns="http://www.w3.org/1999/xhtml" style="font-family: Arial, Verdana, Helvetica, Sans-Serif;font-size: .8em;">
|
<div xmlns="http://www.w3.org/1999/xhtml" style="font-family: Arial, Verdana, Helvetica, Sans-Serif;font-size: .8em;">
|
||||||
<p>
|
<p>
|
||||||
<u style="font-size: .9em;">BUGFIX</u>
|
<u style="font-size: .9em;">BUGFIX</u>
|
||||||
<br/>
|
<br/>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Fixed an issue with the path normalization, where it would add extra '\' characters to the end of the path, when the path was a Unc path.</li>
|
<li>Rcon Player List - fixed a bug when displaying the player details for Epic Players.</li>
|
||||||
</ul>
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
</content>
|
|
||||||
<author>
|
|
||||||
<name>bletch</name>
|
|
||||||
<email>bletch1971@hotmail.com</email>
|
|
||||||
</author>
|
|
||||||
</entry>
|
|
||||||
|
|
||||||
<entry>
|
|
||||||
<id>urn:uuid:973E001F-223C-4B57-89F7-8B8040900A7C</id>
|
|
||||||
<title>1.1.425 (1.1.425.6)</title>
|
|
||||||
<summary>1.1.425.6</summary>
|
|
||||||
<link href="" />
|
|
||||||
<updated>2022-05-08T00:00:00Z</updated>
|
|
||||||
<content type="xhtml">
|
|
||||||
<div xmlns="http://www.w3.org/1999/xhtml" style="font-family: Arial, Verdana, Helvetica, Sans-Serif;font-size: .8em;">
|
|
||||||
<p>
|
|
||||||
<u style="font-size: .9em;">BUGFIX</u>
|
|
||||||
<br/>
|
|
||||||
<ul>
|
|
||||||
<li>World Save Backup - fixed the backup of the files.</li>
|
|
||||||
</ul>
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
</content>
|
|
||||||
<author>
|
|
||||||
<name>bletch</name>
|
|
||||||
<email>bletch1971@hotmail.com</email>
|
|
||||||
</author>
|
|
||||||
</entry>
|
|
||||||
|
|
||||||
<entry>
|
|
||||||
<id>urn:uuid:CEA21F86-5943-46F9-8807-604695E42A25</id>
|
|
||||||
<title>1.1.425 (1.1.425.5)</title>
|
|
||||||
<summary>1.1.425.5</summary>
|
|
||||||
<link href="" />
|
|
||||||
<updated>2022-05-08T00:00:00Z</updated>
|
|
||||||
<content type="xhtml">
|
|
||||||
<div xmlns="http://www.w3.org/1999/xhtml" style="font-family: Arial, Verdana, Helvetica, Sans-Serif;font-size: .8em;">
|
|
||||||
<p>
|
|
||||||
<u style="font-size: .9em;">CHANGE</u>
|
|
||||||
<br/>
|
|
||||||
<ul>
|
|
||||||
<li>Rcon Window - minor changes to the player list, online player count and server status.</li>
|
|
||||||
</ul>
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
</content>
|
|
||||||
<author>
|
|
||||||
<name>bletch</name>
|
|
||||||
<email>bletch1971@hotmail.com</email>
|
|
||||||
</author>
|
|
||||||
</entry>
|
|
||||||
|
|
||||||
<entry>
|
|
||||||
<id>urn:uuid:358E0063-27AE-4D5F-BDA5-BD9723EE353E</id>
|
|
||||||
<title>1.1.425 (1.1.425.4)</title>
|
|
||||||
<summary>1.1.425.4</summary>
|
|
||||||
<link href="" />
|
|
||||||
<updated>2022-05-07T00:00:00Z</updated>
|
|
||||||
<content type="xhtml">
|
|
||||||
<div xmlns="http://www.w3.org/1999/xhtml" style="font-family: Arial, Verdana, Helvetica, Sans-Serif;font-size: .8em;">
|
|
||||||
<p>
|
|
||||||
<u style="font-size: .9em;">CHANGE</u>
|
|
||||||
<br/>
|
|
||||||
<ul>
|
|
||||||
<li>Global Backup Settings - added option to include/exclude the SaveGames folder in the worldsave backup (default exclude).</li>
|
|
||||||
<li>Global Alert Settings - added new textbox allowing the formatting of the ipaddress and port in the server startup message (default {ipaddress}:{port}).</li>
|
|
||||||
</ul>
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
</content>
|
|
||||||
<author>
|
|
||||||
<name>bletch</name>
|
|
||||||
<email>bletch1971@hotmail.com</email>
|
|
||||||
</author>
|
|
||||||
</entry>
|
|
||||||
|
|
||||||
<entry>
|
|
||||||
<id>urn:uuid:606BA376-9AB5-46D9-8533-0BEBF841934E</id>
|
|
||||||
<title>1.1.425 (1.1.425.3)</title>
|
|
||||||
<summary>1.1.425.3</summary>
|
|
||||||
<link href="" />
|
|
||||||
<updated>2022-05-06T00:00:00Z</updated>
|
|
||||||
<content type="xhtml">
|
|
||||||
<div xmlns="http://www.w3.org/1999/xhtml" style="font-family: Arial, Verdana, Helvetica, Sans-Serif;font-size: .8em;">
|
|
||||||
<p>
|
|
||||||
<u style="font-size: .9em;">CHANGE</u>
|
|
||||||
<br/>
|
|
||||||
<ul>
|
|
||||||
<li>Security Protocol Changes - updated the security protocols to use TLS12 and TLS13.</li>
|
|
||||||
</ul>
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
</content>
|
|
||||||
<author>
|
|
||||||
<name>bletch</name>
|
|
||||||
<email>bletch1971@hotmail.com</email>
|
|
||||||
</author>
|
|
||||||
</entry>
|
|
||||||
|
|
||||||
<entry>
|
|
||||||
<id>urn:uuid:E6701920-FF1E-48B7-B70A-18B9BC3592F7</id>
|
|
||||||
<title>1.1.425 (1.1.425.2)</title>
|
|
||||||
<summary>1.1.425.2</summary>
|
|
||||||
<link href="" />
|
|
||||||
<updated>2022-05-06T00:00:00Z</updated>
|
|
||||||
<content type="xhtml">
|
|
||||||
<div xmlns="http://www.w3.org/1999/xhtml" style="font-family: Arial, Verdana, Helvetica, Sans-Serif;font-size: .8em;">
|
|
||||||
<p>
|
|
||||||
<u style="font-size: .9em;">CHANGE</u>
|
|
||||||
<br/>
|
|
||||||
<ul>
|
|
||||||
<li>Auto Backup Settings - added RCON broadcast mode droplist, so backup processes can send messages via RCON using this mode.</li>
|
|
||||||
</ul>
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
</content>
|
|
||||||
<author>
|
|
||||||
<name>bletch</name>
|
|
||||||
<email>bletch1971@hotmail.com</email>
|
|
||||||
</author>
|
|
||||||
</entry>
|
|
||||||
|
|
||||||
<entry>
|
|
||||||
<id>urn:uuid:2C48A585-72D2-43FB-8987-6B5F0B3E460F</id>
|
|
||||||
<title>1.1.425 (1.1.425.1)</title>
|
|
||||||
<summary>1.1.425.1</summary>
|
|
||||||
<link href="" />
|
|
||||||
<updated>2022-05-06T00:00:00Z</updated>
|
|
||||||
<content type="xhtml">
|
|
||||||
<div xmlns="http://www.w3.org/1999/xhtml" style="font-family: Arial, Verdana, Helvetica, Sans-Serif;font-size: .8em;">
|
|
||||||
<p>
|
|
||||||
<u style="font-size: .9em;">CHANGE</u>
|
|
||||||
<br/>
|
|
||||||
<ul>
|
|
||||||
<li>Global Settings - added RCON broadcast mode droplist, so auto processes can send messages via RCON using this mode.</li>
|
|
||||||
<li>Auto Processes - changed the message broadcast to use the new config setting, not a hardcoded value.</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -296,6 +296,11 @@ namespace ServerManagerTool.Lib
|
||||||
// This is bound to the UI thread
|
// This is bound to the UI thread
|
||||||
private List<string> HandleListPlayersCommand(IEnumerable<string> commandLines)
|
private List<string> HandleListPlayersCommand(IEnumerable<string> commandLines)
|
||||||
{
|
{
|
||||||
|
/*
|
||||||
|
> listplayers
|
||||||
|
Idx | Char name | Player name | User ID | Platform ID | Platform Name
|
||||||
|
0 | Alora Truthrider | Bletch#80041 | CE9DBB451DD05733 | 76561197991984752 | Steam
|
||||||
|
*/
|
||||||
var output = new List<string>();
|
var output = new List<string>();
|
||||||
var onlinePlayers = new List<PlayerInfo>();
|
var onlinePlayers = new List<PlayerInfo>();
|
||||||
|
|
||||||
|
|
@ -312,7 +317,7 @@ namespace ServerManagerTool.Lib
|
||||||
// Invalid data. Ignore it.
|
// Invalid data. Ignore it.
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
var id = elements[3]?.Trim();
|
var id = elements[3].Trim();
|
||||||
|
|
||||||
if (onlinePlayers.FirstOrDefault(p => p.PlayerId.Equals(id, StringComparison.OrdinalIgnoreCase)) != null)
|
if (onlinePlayers.FirstOrDefault(p => p.PlayerId.Equals(id, StringComparison.OrdinalIgnoreCase)) != null)
|
||||||
// Duplicate data. Ignore it.
|
// Duplicate data. Ignore it.
|
||||||
|
|
@ -321,7 +326,7 @@ namespace ServerManagerTool.Lib
|
||||||
var newPlayer = new PlayerInfo()
|
var newPlayer = new PlayerInfo()
|
||||||
{
|
{
|
||||||
PlayerId = id,
|
PlayerId = id,
|
||||||
PlayerName = elements[2].Substring(0, elements[2].IndexOf('#')).Trim(),
|
PlayerName = elements[2].Trim(),
|
||||||
CharacterName = elements[1].Trim(),
|
CharacterName = elements[1].Trim(),
|
||||||
IsOnline = true,
|
IsOnline = true,
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -124,7 +124,8 @@ namespace ServerManagerTool.Lib.ViewModel
|
||||||
if (playerData == null)
|
if (playerData == null)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
playerData.PlayerName = PlayerData?.PlayerName;
|
if (PlayerData?.PlayerName != null)
|
||||||
|
playerData.PlayerName = PlayerData.PlayerName;
|
||||||
playerData.LastPlatformUpdateUtc = PlayerData?.LastPlatformUpdateUtc ?? DateTime.MinValue;
|
playerData.LastPlatformUpdateUtc = PlayerData?.LastPlatformUpdateUtc ?? DateTime.MinValue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,30 @@
|
||||||
<title>Conan Server Manager Version Feed</title>
|
<title>Conan Server Manager Version Feed</title>
|
||||||
<subtitle>This is the Conan Server Manager release version feed.</subtitle>
|
<subtitle>This is the Conan Server Manager release version feed.</subtitle>
|
||||||
<link href="http://servermanagers.freeforums.net/" />
|
<link href="http://servermanagers.freeforums.net/" />
|
||||||
<updated>2022-05-08T00:00:00Z</updated>
|
<updated>2022-05-09T00:00:00Z</updated>
|
||||||
|
|
||||||
|
<entry>
|
||||||
|
<id>urn:uuid:86CF3CE5-C935-4C04-8D31-224B2E1DD203</id>
|
||||||
|
<title>1.1.70 (1.1.70.1)</title>
|
||||||
|
<summary>1.1.70.1</summary>
|
||||||
|
<link href="" />
|
||||||
|
<updated>2022-05-09T00:00:00Z</updated>
|
||||||
|
<content type="xhtml">
|
||||||
|
<div xmlns="http://www.w3.org/1999/xhtml" style="font-family: Arial, Verdana, Helvetica, Sans-Serif;font-size: .8em;">
|
||||||
|
<p>
|
||||||
|
<u style="font-size: .9em;">BUGFIX</u>
|
||||||
|
<br/>
|
||||||
|
<ul>
|
||||||
|
<li>Rcon Player List - fixed a bug when displaying the player details for Epic Players.</li>
|
||||||
|
</ul>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</content>
|
||||||
|
<author>
|
||||||
|
<name>bletch</name>
|
||||||
|
<email>bletch1971@hotmail.com</email>
|
||||||
|
</author>
|
||||||
|
</entry>
|
||||||
|
|
||||||
<entry>
|
<entry>
|
||||||
<id>urn:uuid:AD8ABBB5-093A-4FDB-B473-FCED2DB46781</id>
|
<id>urn:uuid:AD8ABBB5-093A-4FDB-B473-FCED2DB46781</id>
|
||||||
|
|
|
||||||
|
|
@ -5,161 +5,21 @@
|
||||||
<title>Conan Server Manager Version Feed</title>
|
<title>Conan Server Manager Version Feed</title>
|
||||||
<subtitle>This is the Conan Server Manager beta version feed.</subtitle>
|
<subtitle>This is the Conan Server Manager beta version feed.</subtitle>
|
||||||
<link href="http://servermanagers.freeforums.net/" />
|
<link href="http://servermanagers.freeforums.net/" />
|
||||||
<updated>2022-05-08T00:00:00Z</updated>
|
<updated>2022-05-09T00:00:00Z</updated>
|
||||||
|
|
||||||
<entry>
|
<entry>
|
||||||
<id>urn:uuid:3DDB3838-5020-4CA3-A054-423479FFB667</id>
|
<id>urn:uuid:86CF3CE5-C935-4C04-8D31-224B2E1DD203</id>
|
||||||
<title>1.1.69 (1.1.69.7)</title>
|
<title>1.1.70 (1.1.70.1)</title>
|
||||||
<summary>1.1.69.7</summary>
|
<summary>1.1.70.1</summary>
|
||||||
<link href="" />
|
<link href="" />
|
||||||
<updated>2022-05-08T00:00:00Z</updated>
|
<updated>2022-05-09T00:00:00Z</updated>
|
||||||
<content type="xhtml">
|
<content type="xhtml">
|
||||||
<div xmlns="http://www.w3.org/1999/xhtml" style="font-family: Arial, Verdana, Helvetica, Sans-Serif;font-size: .8em;">
|
<div xmlns="http://www.w3.org/1999/xhtml" style="font-family: Arial, Verdana, Helvetica, Sans-Serif;font-size: .8em;">
|
||||||
<p>
|
<p>
|
||||||
<u style="font-size: .9em;">BUGFIX</u>
|
<u style="font-size: .9em;">BUGFIX</u>
|
||||||
<br/>
|
<br/>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Fixed an issue with the path normalization, where it would add extra '\' characters to the end of the path, when the path was a Unc path.</li>
|
<li>Rcon Player List - fixed a bug when displaying the player details for Epic Players.</li>
|
||||||
</ul>
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
</content>
|
|
||||||
<author>
|
|
||||||
<name>bletch</name>
|
|
||||||
<email>bletch1971@hotmail.com</email>
|
|
||||||
</author>
|
|
||||||
</entry>
|
|
||||||
|
|
||||||
<entry>
|
|
||||||
<id>urn:uuid:72CA1005-0061-41A3-9883-F826B8F9F27F</id>
|
|
||||||
<title>1.1.69 (1.1.69.6)</title>
|
|
||||||
<summary>1.1.69.6</summary>
|
|
||||||
<link href="" />
|
|
||||||
<updated>2022-05-08T00:00:00Z</updated>
|
|
||||||
<content type="xhtml">
|
|
||||||
<div xmlns="http://www.w3.org/1999/xhtml" style="font-family: Arial, Verdana, Helvetica, Sans-Serif;font-size: .8em;">
|
|
||||||
<p>
|
|
||||||
<u style="font-size: .9em;">BUGFIX</u>
|
|
||||||
<br/>
|
|
||||||
<ul>
|
|
||||||
<li>World Save Backup - fixed the backup of the files.</li>
|
|
||||||
</ul>
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
</content>
|
|
||||||
<author>
|
|
||||||
<name>bletch</name>
|
|
||||||
<email>bletch1971@hotmail.com</email>
|
|
||||||
</author>
|
|
||||||
</entry>
|
|
||||||
|
|
||||||
<entry>
|
|
||||||
<id>urn:uuid:68ECEA73-1C9C-4DCB-807B-0D812E986993</id>
|
|
||||||
<title>1.1.69 (1.1.69.5)</title>
|
|
||||||
<summary>1.1.69.5</summary>
|
|
||||||
<link href="" />
|
|
||||||
<updated>2022-05-08T00:00:00Z</updated>
|
|
||||||
<content type="xhtml">
|
|
||||||
<div xmlns="http://www.w3.org/1999/xhtml" style="font-family: Arial, Verdana, Helvetica, Sans-Serif;font-size: .8em;">
|
|
||||||
<p>
|
|
||||||
<u style="font-size: .9em;">CHANGE</u>
|
|
||||||
<br/>
|
|
||||||
<ul>
|
|
||||||
<li>Rcon Window - minor changes to the player list, online player count and server status.</li>
|
|
||||||
<li>Online Player Count - fixed the online player count to display the correct value.</li>
|
|
||||||
</ul>
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
</content>
|
|
||||||
<author>
|
|
||||||
<name>bletch</name>
|
|
||||||
<email>bletch1971@hotmail.com</email>
|
|
||||||
</author>
|
|
||||||
</entry>
|
|
||||||
|
|
||||||
<entry>
|
|
||||||
<id>urn:uuid:D886601C-8260-4E06-8B2A-D8F77F1F1B58</id>
|
|
||||||
<title>1.1.69 (1.1.69.4)</title>
|
|
||||||
<summary>1.1.69.4</summary>
|
|
||||||
<link href="" />
|
|
||||||
<updated>2022-05-07T00:00:00Z</updated>
|
|
||||||
<content type="xhtml">
|
|
||||||
<div xmlns="http://www.w3.org/1999/xhtml" style="font-family: Arial, Verdana, Helvetica, Sans-Serif;font-size: .8em;">
|
|
||||||
<p>
|
|
||||||
<u style="font-size: .9em;">CHANGE</u>
|
|
||||||
<br/>
|
|
||||||
<ul>
|
|
||||||
<li>Global Backup Settings - added option to include/exclude the SaveGames folder in the worldsave backup (default exclude).</li>
|
|
||||||
<li>Global Alert Settings - added new textbox allowing the formatting of the ipaddress and port in the server startup message (default {ipaddress}:{port}).</li>
|
|
||||||
</ul>
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
</content>
|
|
||||||
<author>
|
|
||||||
<name>bletch</name>
|
|
||||||
<email>bletch1971@hotmail.com</email>
|
|
||||||
</author>
|
|
||||||
</entry>
|
|
||||||
|
|
||||||
<entry>
|
|
||||||
<id>urn:uuid:92A777C4-75B2-468F-BC46-F42327A4D2D1</id>
|
|
||||||
<title>1.1.69 (1.1.69.3)</title>
|
|
||||||
<summary>1.1.69.3</summary>
|
|
||||||
<link href="" />
|
|
||||||
<updated>2022-05-06T00:00:00Z</updated>
|
|
||||||
<content type="xhtml">
|
|
||||||
<div xmlns="http://www.w3.org/1999/xhtml" style="font-family: Arial, Verdana, Helvetica, Sans-Serif;font-size: .8em;">
|
|
||||||
<p>
|
|
||||||
<u style="font-size: .9em;">CHANGE</u>
|
|
||||||
<br/>
|
|
||||||
<ul>
|
|
||||||
<li>Security Protocol Changes - updated the security protocols to use TLS12 and TLS13.</li>
|
|
||||||
</ul>
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
</content>
|
|
||||||
<author>
|
|
||||||
<name>bletch</name>
|
|
||||||
<email>bletch1971@hotmail.com</email>
|
|
||||||
</author>
|
|
||||||
</entry>
|
|
||||||
|
|
||||||
<entry>
|
|
||||||
<id>urn:uuid:6AC9586B-1678-46B5-9FD7-86B20FB67293</id>
|
|
||||||
<title>1.1.69 (1.1.69.2)</title>
|
|
||||||
<summary>1.1.69.2</summary>
|
|
||||||
<link href="" />
|
|
||||||
<updated>2022-05-06T00:00:00Z</updated>
|
|
||||||
<content type="xhtml">
|
|
||||||
<div xmlns="http://www.w3.org/1999/xhtml" style="font-family: Arial, Verdana, Helvetica, Sans-Serif;font-size: .8em;">
|
|
||||||
<p>
|
|
||||||
<u style="font-size: .9em;">CHANGE</u>
|
|
||||||
<br/>
|
|
||||||
<ul>
|
|
||||||
<li>Auto Backup Settings - added RCON broadcast mode droplist, so backup processes can send messages via RCON using this mode.</li>
|
|
||||||
</ul>
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
</content>
|
|
||||||
<author>
|
|
||||||
<name>bletch</name>
|
|
||||||
<email>bletch1971@hotmail.com</email>
|
|
||||||
</author>
|
|
||||||
</entry>
|
|
||||||
|
|
||||||
<entry>
|
|
||||||
<id>urn:uuid:AD8ABBB5-093A-4FDB-B473-FCED2DB46781</id>
|
|
||||||
<title>1.1.69 (1.1.69.1)</title>
|
|
||||||
<summary>1.1.69.1</summary>
|
|
||||||
<link href="" />
|
|
||||||
<updated>2022-05-06T00:00:00Z</updated>
|
|
||||||
<content type="xhtml">
|
|
||||||
<div xmlns="http://www.w3.org/1999/xhtml" style="font-family: Arial, Verdana, Helvetica, Sans-Serif;font-size: .8em;">
|
|
||||||
<p>
|
|
||||||
<u style="font-size: .9em;">BUGFIX</u>
|
|
||||||
<br/>
|
|
||||||
<ul>
|
|
||||||
<li>Fixed an issue that would not send through the auto process messages via RCON using the correct mode selected in the global settings.</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue