From 76bab70ccbb02950edd070d467c9099ebee435d5 Mon Sep 17 00:00:00 2001 From: Hombre Date: Sat, 13 May 2017 01:12:00 +0200 Subject: [PATCH] Bugfix of 'Usage' text and updated manpage --- doc/manpage/rawtherapee.1 | 5 ++++- rtgui/main-cli.cc | 8 ++++---- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/doc/manpage/rawtherapee.1 b/doc/manpage/rawtherapee.1 index 9b2469475..3eaa441d9 100644 --- a/doc/manpage/rawtherapee.1 +++ b/doc/manpage/rawtherapee.1 @@ -21,7 +21,7 @@ RawTherapee - An advanced, cross-platform program for developing raw photos. RawTherapee CLI rawtherapee-cli -c | Convert files in batch with default parameters. rawtherapee-cli -c | Convert files in batch with your own settings. - rawtherapee-cli [-o |-O ] [-s|-S] [-p [-p ...] ] [-d] [ -j[1-100] [-js<1-3>] | [-b<8|16>] [-t[z] | [-n]] ] [-Y] -c + rawtherapee-cli [-o |-O ] [-q] [-a] [-s|-S] [-p [-p ...] ] [-d] [ -j[1-100] [-js<1-3>] | [-b<8|16>] [-t[z] | [-n]] ] [-Y] -c .SH OPTIONS -c Specify one or more input files. -c must be the last option. @@ -29,6 +29,9 @@ RawTherapee - An advanced, cross-platform program for developing raw photos. Saves output file alongside input file if -o is not specified. -O | Set output file or folder and copy pp3 file into it. Saves output file alongside input file if -O is not specified. + -q Quick Start mode : do not load cached files to speedup start time. + -a Stands for 'all'. When specifying a directory, process all images specified in the + extension list from the options file, even those not actually selected. -s Use the existing sidecar file to build the processing parameters, e.g. for photo.raw there should be a photo.raw.pp3 file in the same folder. If the sidecar file does not exist, neutral values will be used. diff --git a/rtgui/main-cli.cc b/rtgui/main-cli.cc index 91dfc9204..7182af4c5 100644 --- a/rtgui/main-cli.cc +++ b/rtgui/main-cli.cc @@ -549,9 +549,8 @@ int processLineParams( int argc, char **argv ) std::cout << std::endl; #endif std::cout << "Options:" << std::endl; - std::cout << " " << Glib::path_get_basename(argv[0]) << " [-o |-O ] [-s|-S] [-p [-p ...] ] [-d] [ -j[1-100] [-js<1-3>] | [-b<8|16>] [-t[z] | [-n]] ] [-Y] [-f] -c " << std::endl; + std::cout << " " << Glib::path_get_basename(argv[0]) << "[-o |-O ] [-q] [-a] [-s|-S] [-p [-p ...] ] [-d] [ -j[1-100] [-js<1-3>] | [-b<8|16>] [-t[z] | [-n]] ] [-Y] [-f] -c " << std::endl; std::cout << std::endl; - std::cout << " -q Quick Start mode : do not load cached files to speedup start time." << std::endl; std::cout << " -c Specify one or more input files or directory." << std::endl; std::cout << " When specifying directories, Rawtherapee will look for images files that comply with the" << std::endl; std::cout << " selected extensions (see also '-a')." << std::endl; @@ -560,8 +559,9 @@ int processLineParams( int argc, char **argv ) std::cout << " Saves output file alongside input file if -o is not specified." << std::endl; std::cout << " -O | Set output file or folder and copy " << pparamsExt << " file into it." << std::endl; std::cout << " Saves output file alongside input file if -O is not specified." << std::endl; - std::cout << " -a stand for 'all'. When specifying a directory, process all images specified in the" << std::endl; - std::cout << " extension list from the options file, even those currently not seleted" << std::endl; + std::cout << " -q Quick Start mode : do not load cached files to speedup start time." << std::endl; + std::cout << " -a Stands for 'all'. When specifying a directory, process all images specified in the" << std::endl; + std::cout << " extension list from the options file, even those not actually selected" << std::endl; std::cout << " -s Use the existing sidecar file to build the processing parameters," << std::endl; std::cout << " e.g. for photo.raw there should be a photo.raw." << pparamsExt << " file in the same folder." << std::endl; std::cout << " If the sidecar file does not exist, neutral values will be used." << std::endl;