mirror of
https://github.com/tribufu/ServerManagers
synced 2026-05-06 15:17:34 +00:00
Global Settings Changes
- fixed the bug that cleared the Backup Rcon message mode when changing languages. -language file updates
This commit is contained in:
parent
e7100e6323
commit
e2f92bf7a9
8 changed files with 224 additions and 68 deletions
|
|
@ -548,7 +548,8 @@ namespace ServerManagerTool
|
|||
|
||||
private void PopulateRconMessageModesComboBox()
|
||||
{
|
||||
var selectedValue = this.RconMessageModesComboBox?.SelectedValue ?? Config.RCON_MessageCommand;
|
||||
var selectedValueBackup = this.RconBackupMessageModesComboBox?.SelectedValue ?? Config.RCON_BackupMessageCommand;
|
||||
var selectedValueAll = this.RconMessageModesComboBox?.SelectedValue ?? Config.RCON_MessageCommand;
|
||||
var list = new ComboBoxItemList();
|
||||
|
||||
foreach (var item in GameData.GetMessageRconInputModes())
|
||||
|
|
@ -558,9 +559,13 @@ namespace ServerManagerTool
|
|||
}
|
||||
|
||||
this.RconMessageModes = list;
|
||||
if (this.RconBackupMessageModesComboBox != null)
|
||||
{
|
||||
this.RconBackupMessageModesComboBox.SelectedValue = selectedValueBackup;
|
||||
}
|
||||
if (this.RconMessageModesComboBox != null)
|
||||
{
|
||||
this.RconMessageModesComboBox.SelectedValue = selectedValue;
|
||||
this.RconMessageModesComboBox.SelectedValue = selectedValueAll;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,10 +9,10 @@
|
|||
|
||||
<entry>
|
||||
<id>urn:uuid:4E189446-9861-4B64-9B27-0E3E655CD1CA</id>
|
||||
<title>1.1.74 (1.1.74.1)</title>
|
||||
<summary>1.1.74.1</summary>
|
||||
<title>1.1.74 (1.1.74.3)</title>
|
||||
<summary>1.1.74.3</summary>
|
||||
<link href="" />
|
||||
<updated>2022-06-13T00:00:00Z</updated>
|
||||
<updated>2022-06-16T00: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>
|
||||
|
|
@ -20,6 +20,7 @@
|
|||
<br/>
|
||||
<ul>
|
||||
<li>Updated to query master timeouts from 10 seconds to 30 seconds.</li>
|
||||
<li>RCON Message Modes - now loads them from the gamedata file, so they can be extended without a code change.</li>
|
||||
</ul>
|
||||
</p>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -5,7 +5,53 @@
|
|||
<title>Conan Server Manager Version Feed</title>
|
||||
<subtitle>This is the Conan Server Manager beta version feed.</subtitle>
|
||||
<link href="http://servermanagers.freeforums.net/" />
|
||||
<updated>2022-06-13T00:00:00Z</updated>
|
||||
<updated>2022-06-16T00:00:00Z</updated>
|
||||
|
||||
<entry>
|
||||
<id>urn:uuid:C9BB0F58-3C98-4E69-A0D1-E962EB61072C</id>
|
||||
<title>1.1.74 (1.1.74.3)</title>
|
||||
<summary>1.1.74.3</summary>
|
||||
<link href="" />
|
||||
<updated>2022-06-16T00: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>Global Settings - fixed the bug that cleared the Backup Rcon message mode when changing languages.</li>
|
||||
</ul>
|
||||
</p>
|
||||
</div>
|
||||
</content>
|
||||
<author>
|
||||
<name>bletch</name>
|
||||
<email>bletch1971@hotmail.com</email>
|
||||
</author>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<id>urn:uuid:74CFB107-BB04-4A41-B41A-DD6AFB1E8D0F</id>
|
||||
<title>1.1.74 (1.1.74.2)</title>
|
||||
<summary>1.1.74.2</summary>
|
||||
<link href="" />
|
||||
<updated>2022-06-15T00: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 Message Modes - now loads them from the gamedata file, so they can be extended without a code change.</li>
|
||||
</ul>
|
||||
</p>
|
||||
</div>
|
||||
</content>
|
||||
<author>
|
||||
<name>bletch</name>
|
||||
<email>bletch1971@hotmail.com</email>
|
||||
</author>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<id>urn:uuid:4E189446-9861-4B64-9B27-0E3E655CD1CA</id>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue