Adjust help screen.

This commit is contained in:
njohnson 2026-01-20 17:20:39 -05:00
parent 5cdd08e5d6
commit bfd5d68f5b

View File

@ -17,22 +17,22 @@ void printError(const QString& message)
void showUsage() void showUsage()
{ {
cout << QString("UDK Config Extractor %1\n").arg(QCoreApplication::applicationVersion()); cout << QString("UDK Config/Localization Manipulator %1\n").arg(QCoreApplication::applicationVersion());
cout << "Extract and pack UDK/UE3 coalesced INI/INT files\n\n"; cout << "Extract and pack UDK/UE3 coalesced Config/Localization files\n\n";
cout << "Usage:\n"; cout << "Usage:\n";
cout << QString(" %1 <command> [arguments]\n\n").arg(QCoreApplication::applicationName()); cout << QString(" %1 <command> [arguments]\n\n").arg(QCoreApplication::applicationName());
cout << "Commands:\n"; cout << "Commands:\n";
cout << " list <file> List files in archive\n"; cout << " list <file> List files in archive\n";
cout << " info <file> Show archive metadata\n"; cout << " info <file> Show archive metadata\n";
cout << " unpack <file> [output_dir] Extract all INI files\n"; cout << " unpack <file> [output_dir] Extract all INI files\n";
cout << " pack <input_dir> <output_file> Pack directory into coalesced file\n"; cout << " pack <input_dir> <output_file> Pack directory into coalesced file\n";
cout << " extract <file> <index|name> [output] Extract single file\n\n"; cout << " extract <file> <index|name> [output] Extract single file\n\n";
cout << "Options:\n"; cout << "Options:\n";
cout << " -h, --help Show this help message\n"; cout << " -h, --help Show this help message\n";
cout << " -v, --version Show version\n\n"; cout << " -v, --version Show version\n\n";
cout << "Drag & Drop:\n"; cout << "Drag & Drop:\n";
cout << " Drag a coalesced file onto exe Extracts to ./<name>_<ext>/\n"; cout << " Drag a coalesced file onto exe Extracts to ./<name>_<ext>/\n";
cout << " Drag a folder onto exe Packs to ./<name>.<ext>\n"; cout << " Drag a folder onto exe Packs to ./<name>.<ext>\n";
cout << " (folder coalesced_ini -> coalesced.ini)\n"; cout << " (folder coalesced_ini -> coalesced.ini)\n";
cout.flush(); cout.flush();
} }