v3.5
-The app no longer works on multi-service arch and will instead operate under a single master service.
This commit is contained in:
parent
7046dd1162
commit
c2b6575800
|
@ -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.
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user