X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcommon%2Fquassel.cpp;h=0c6b863036932d14e7eddadefdf674072309dd9b;hb=13425536062e5cf1b2d9f0ef258f3eb9dab1923c;hp=afd7a84105baf6b3caf8febc63d895d88e9c4b7b;hpb=009d63d796f46874bd7cdf4a27ba4b2828d89031;p=quassel.git diff --git a/src/common/quassel.cpp b/src/common/quassel.cpp index afd7a841..0c6b8630 100644 --- a/src/common/quassel.cpp +++ b/src/common/quassel.cpp @@ -336,6 +336,7 @@ void Quassel::setupCliParser() {"icontheme", tr("Override the system icon theme ('breeze' is recommended)."), tr("theme")}, {"qss", tr("Load a custom application stylesheet."), tr("file.qss")}, {"hidewindow", tr("Start the client minimized to the system tray.")}, + {"account", tr("Account id to connect to on startup."), tr("account"), "0"}, }; } @@ -358,7 +359,7 @@ void Quassel::setupCliParser() tr("The port quasselcore will listen at for ident requests. Only meaningful with --ident-daemon."), tr("port"), "10113"}, - {"ident-listen", tr("The address(es) quasselcore will listen on for ident requests."), tr("
[,
[,...]]"), "::1,127.0.0.1"}, + {"ident-listen", tr("The address(es) quasselcore will listen on for ident requests. Same format as --listen."), tr("
[,...]"), "::1,127.0.0.1"}, {"oidentd", tr("Enable oidentd integration. In most cases you should also enable --strict-ident.")}, {"oidentd-conffile", tr("Set path to oidentd configuration file."), tr("file")}, #ifdef HAVE_SSL @@ -390,6 +391,8 @@ void Quassel::setupCliParser() options += { {"debug-irc", tr("Enable logging of all raw IRC messages to debug log, including passwords! In most cases you should also set --loglevel Debug")}, {"debug-irc-id", tr("Limit raw IRC logging to this network ID. Implies --debug-irc"), tr("database network ID"), "-1"}, + {"debug-irc-parsed", tr("Enable logging of all parsed IRC messages to debug log, including passwords! In most cases you should also set --loglevel Debug")}, + {"debug-irc-parsed-id", tr("Limit parsed IRC logging to this network ID. Implies --debug-irc-parsed"), tr("database network ID"), "-1"}, }; }