Fix usage alignment, update version to 1.3.0

This commit is contained in:
Michael Scire 2020-01-15 10:32:58 -08:00
parent 46cc41c840
commit 3ce301aac9
2 changed files with 5 additions and 5 deletions

8
main.c
View file

@ -26,10 +26,10 @@ static void usage(void) {
"\n"
"Usage: %s [options...] <file>\n"
"Options:\n"
"-i, --info Show file info.\n"
" This is the default action.\n"
"-x, --extract Extract data from file.\n"
" This is also the default action.\n"
" -i, --info Show file info.\n"
" This is the default action.\n"
" -x, --extract Extract data from file.\n"
" This is also the default action.\n"
" -r, --raw Keep raw data, don't unpack.\n"
" -y, --verify Verify hashes and signatures.\n"
" -d, --dev Decrypt with development keys instead of retail.\n"

View file

@ -1,6 +1,6 @@
#ifndef HACTOOL_VERSION_H
#define HACTOOL_VERSION_H
#define HACTOOL_VERSION "1.2.0"
#define HACTOOL_VERSION "1.3.0"
#endif