1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-23 21:50:44 -05:00

add default port and rcon password hint during setup

This commit is contained in:
RaidMax
2021-11-14 21:38:00 -06:00
parent 584f2667a0
commit 0a95e725f4
19 changed files with 232 additions and 47 deletions

View File

@ -23,7 +23,7 @@
"Name": "Console",
"Args": {
"outputTemplate": "[{Timestamp:yyyy-MM-dd HH:mm:ss.fff} {Server} {Level:u3}] {Message:lj}{NewLine}{Exception}",
"RestrictedToMinimumLevel": "Critical"
"RestrictedToMinimumLevel": "Fatal"
}
}
],

View File

@ -28,6 +28,8 @@ namespace IW4MAdmin.Application.RConParsers
public int NoticeMaximumLines { get; set; } = 8;
public int NoticeMaxCharactersPerLine { get; set; } = 50;
public string NoticeLineSeparator { get; set; } = Environment.NewLine;
public int? DefaultRConPort { get; set; }
public string DefaultInstallationDirectoryHint { get; set; }
public DynamicRConParserConfiguration(IParserRegexFactory parserRegexFactory)
{