diff options
author | psychocrypt <psychocrypt@users.noreply.github.com> | 2017-11-13 21:37:28 +0100 |
---|---|---|
committer | psychocrypt <psychocrypt@users.noreply.github.com> | 2017-11-13 21:37:28 +0100 |
commit | 04e4d28c98a76e9b0982674fdeb9f27a82a6790e (patch) | |
tree | b68e31ff79fafe59ae1de693ba723a593acc3430 | |
parent | 48071db7386d50e6418ec8df9d005564c960906a (diff) | |
download | xmr-stak-04e4d28c98a76e9b0982674fdeb9f27a82a6790e.zip xmr-stak-04e4d28c98a76e9b0982674fdeb9f27a82a6790e.tar.gz |
update help and documentation
- update usage.md
- hpdate help output
-rw-r--r-- | doc/usage.md | 1 | ||||
-rw-r--r-- | xmrstak/cli/cli-miner.cpp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/doc/usage.md b/doc/usage.md index 552569f..30d80fa 100644 --- a/doc/usage.md +++ b/doc/usage.md @@ -33,6 +33,7 @@ Usage: xmr-stak [OPTION]... -h, --help show this help -v, --version show version number + -V, --version-long show long version number -c, --config FILE common miner configuration file --currency NAME currency to mine: monero or aeon --noCPU disable the CPU miner backend diff --git a/xmrstak/cli/cli-miner.cpp b/xmrstak/cli/cli-miner.cpp index da0db15..284cf4a 100644 --- a/xmrstak/cli/cli-miner.cpp +++ b/xmrstak/cli/cli-miner.cpp @@ -64,6 +64,7 @@ void help() cout<<" "<<endl; cout<<" -h, --help show this help"<<endl; cout<<" -v, --version show version number"<<endl; + cout<<" -V, --version-long show long version number"<<endl; cout<<" -c, --config FILE common miner configuration file"<<endl; #if (!defined(CONF_NO_AEON)) && (!defined(CONF_NO_MONERO)) cout<<" --currency NAME currency to mine: monero or aeon"<<endl; |