diff --git a/README.md b/README.md index d587aa9..89cae83 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ extremely lightweight with the fact it doesn't attempt to re-implement much of it's functions internally but will instead rely on external applications that already implement the functions very well. -No user interface is implemented instead exteral applications are more than +No user interface is implemented instead external applications are more than welcome to interface with the buffer/footage directories to implement a user interface of any flavor. diff --git a/src/common.h b/src/common.h index f13aba4..b10ad77 100644 --- a/src/common.h +++ b/src/common.h @@ -32,7 +32,7 @@ using namespace std; -#define APP_VERSION "3.5.t3" +#define APP_VERSION "3.5" #define APP_NAME "JustMotion" #define APP_TARGET "jmotion" #define DATETIME_FMT "yyyyMMddhhmmss" diff --git a/src/main.cpp b/src/main.cpp index 78b16fb..463baef 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -22,11 +22,12 @@ void showHelp(const QString etcDir) QTextStream(stdout) << "-d : all valid config files found in " << etcDir << " will be used to" << Qt::endl; QTextStream(stdout) << " create camera instances. (this is blocking, meant to run with systemd)" << Qt::endl; QTextStream(stdout) << "-v : display the current version." << Qt::endl; - QTextStream(stdout) << "-u : uninstall the entire app from your system, including the service." << Qt::endl; + QTextStream(stdout) << "-u : uninstall the entire app from your system, including the service. all" << Qt::endl; + QTextStream(stdout) << " recorded footage will remain." << Qt::endl; QTextStream(stdout) << "-f : force an action without pausing for user confirmation." << Qt::endl; QTextStream(stdout) << "-s : view the status of all camera instances." << Qt::endl; QTextStream(stdout) << "-q : kill all camera instances." << Qt::endl; - QTextStream(stdout) << "-r : same as -d except it is non-blocking by starting all camera instances" << Qt::endl; + QTextStream(stdout) << "-r : same as -d except it is non-blocking for starting all camera instances" << Qt::endl; QTextStream(stdout) << " via systemd. same as 'systemctl start " << APP_TARGET << "'" << Qt::endl; }