Made help info more helpful.

This commit is contained in:
Penguin-Guru 2021-10-26 17:55:14 -07:00
parent 8394bb57b2
commit ce20730b94

View file

@ -72,7 +72,7 @@ int main(int argc, const char* argv[]) {
QCommandLineOption urlOption( QCommandLineOption urlOption(
"url", "url",
"Start at specified URL location.", "Start at specified URL location.",
"value" "string"
); );
QCommandLineOption protocolVersionOption( QCommandLineOption protocolVersionOption(
"protocolVersion", "protocolVersion",
@ -85,11 +85,11 @@ int main(int argc, const char* argv[]) {
); );
QCommandLineOption checkMinSpecOption( QCommandLineOption checkMinSpecOption(
"checkMinSpec", "checkMinSpec",
"Check if machine meets minimum specifications." "Check if machine meets minimum specifications. The program will run if check passes."
); );
QCommandLineOption runServerOption( QCommandLineOption runServerOption(
"runServer", "runServer",
"Whether to run the server." "Run the server."
); );
QCommandLineOption listenPortOption( QCommandLineOption listenPortOption(
"listenPort", "listenPort",
@ -97,12 +97,12 @@ int main(int argc, const char* argv[]) {
); );
QCommandLineOption serverContentPathOption( QCommandLineOption serverContentPathOption(
"serverContentPath", "serverContentPath",
"Where to find server content <path>.", "Path to find server content.", // What content??
"serverContentPath" "serverContentPath"
); // This data type will not be familiar to users. ); // This data type will not be familiar to users.
QCommandLineOption overrideAppLocalDataPathOption( QCommandLineOption overrideAppLocalDataPathOption(
"cache", "cache",
"set test cache <dir>.", "Set test cache.",
"dir" "dir"
); );
QCommandLineOption scriptsOption( QCommandLineOption scriptsOption(
@ -203,12 +203,12 @@ int main(int argc, const char* argv[]) {
QCommandLineOption traceDurationOption( QCommandLineOption traceDurationOption(
"traceDuration", "traceDuration",
"Probably a number of seconds? Only works if \"--traceFile\" is specified.", "Probably a number of seconds? Only works if \"--traceFile\" is specified.",
"value" "number"
); );
QCommandLineOption clockSkewOption( QCommandLineOption clockSkewOption(
"clockSkew", "clockSkew",
"Forces client instance's clock to skew for demonstration purposes.", "Forces client instance's clock to skew for demonstration purposes.",
"value" "integer"
); // This should probably be removed. ); // This should probably be removed.
QCommandLineOption testScriptOption( QCommandLineOption testScriptOption(
"testScript", "testScript",