mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-07 19:23:04 +02:00
Made help info more helpful.
This commit is contained in:
parent
8394bb57b2
commit
ce20730b94
1 changed files with 7 additions and 7 deletions
|
@ -72,7 +72,7 @@ int main(int argc, const char* argv[]) {
|
|||
QCommandLineOption urlOption(
|
||||
"url",
|
||||
"Start at specified URL location.",
|
||||
"value"
|
||||
"string"
|
||||
);
|
||||
QCommandLineOption protocolVersionOption(
|
||||
"protocolVersion",
|
||||
|
@ -85,11 +85,11 @@ int main(int argc, const char* argv[]) {
|
|||
);
|
||||
QCommandLineOption checkMinSpecOption(
|
||||
"checkMinSpec",
|
||||
"Check if machine meets minimum specifications."
|
||||
"Check if machine meets minimum specifications. The program will run if check passes."
|
||||
);
|
||||
QCommandLineOption runServerOption(
|
||||
"runServer",
|
||||
"Whether to run the server."
|
||||
"Run the server."
|
||||
);
|
||||
QCommandLineOption listenPortOption(
|
||||
"listenPort",
|
||||
|
@ -97,12 +97,12 @@ int main(int argc, const char* argv[]) {
|
|||
);
|
||||
QCommandLineOption serverContentPathOption(
|
||||
"serverContentPath",
|
||||
"Where to find server content <path>.",
|
||||
"Path to find server content.", // What content??
|
||||
"serverContentPath"
|
||||
); // This data type will not be familiar to users.
|
||||
QCommandLineOption overrideAppLocalDataPathOption(
|
||||
"cache",
|
||||
"set test cache <dir>.",
|
||||
"Set test cache.",
|
||||
"dir"
|
||||
);
|
||||
QCommandLineOption scriptsOption(
|
||||
|
@ -203,12 +203,12 @@ int main(int argc, const char* argv[]) {
|
|||
QCommandLineOption traceDurationOption(
|
||||
"traceDuration",
|
||||
"Probably a number of seconds? Only works if \"--traceFile\" is specified.",
|
||||
"value"
|
||||
"number"
|
||||
);
|
||||
QCommandLineOption clockSkewOption(
|
||||
"clockSkew",
|
||||
"Forces client instance's clock to skew for demonstration purposes.",
|
||||
"value"
|
||||
"integer"
|
||||
); // This should probably be removed.
|
||||
QCommandLineOption testScriptOption(
|
||||
"testScript",
|
||||
|
|
Loading…
Reference in a new issue