Skip to content

Commit

Permalink
added game version column for TOXIKK
Browse files Browse the repository at this point in the history
  • Loading branch information
PredatH0r committed Sep 10, 2016
1 parent 997561c commit 4c69942
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
3 changes: 2 additions & 1 deletion ServerBrowser/Games/Toxikk.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
using System.Threading;
using System.Windows.Forms;
using DevExpress.Data;
using DevExpress.XtraEditors;
using DevExpress.XtraGrid.Columns;
using DevExpress.XtraGrid.Views.Grid;
using QueryMaster;
Expand All @@ -26,6 +25,7 @@ public class Toxikk : GameExtension
private const string TimeLimit = "p268435705";
private const string Mutators = "p1073741828";
private const string IsOfficial = "s15";
private const string GameVersion = "p1073741839";

private const int SecondsToWaitForMainWindowAfterLaunch = 45;
private bool useKeystrokesToConnect;
Expand Down Expand Up @@ -104,6 +104,7 @@ public override void CustomizeServerGridColumns(GridView view)
AddColumn(view, ScoreLimit, "GS", "Goal Score", 30, ++idx, UnboundColumnType.Integer);
AddColumn(view, TimeLimit, "TL", "Time Limit", 30, ++idx, UnboundColumnType.Integer);
AddColumn(view, IsOfficial, "Ofcl", "Official Server managed by REAKKTOR", 35, ++idx, UnboundColumnType.Boolean);
AddColumn(view, GameVersion, "Ver", "Game Version", 40);
}
#endregion

Expand Down
2 changes: 1 addition & 1 deletion ServerBrowser/ServerBrowserForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ namespace ServerBrowser
{
public partial class ServerBrowserForm : XtraForm
{
private const string Version = "2.32";
private const string Version = "2.33";
private const string DevExpressVersion = "v15.2";
private const string CustomDetailColumnPrefix = "ServerInfo.";
private const string CustomRuleColumnPrefix = "custRule.";
Expand Down
9 changes: 9 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
2.33
---
- added "Ver" column for TOXIKK game version

2.32
---
- added option in TOXIKK game configuration to either connect using "open <ip:port>" or "open steam.<steamid>"
- data in server details grid can now be selected and copied

2.30
---
- TOXIKK now supports joining skill-restricted servers. Your skill class is validated by the server after you connect.
Expand Down

0 comments on commit 4c69942

Please sign in to comment.