Skip to content

Commit

Permalink
Version updates
Browse files Browse the repository at this point in the history
  • Loading branch information
danielgtaylor committed Jul 21, 2014
1 parent 0b974f5 commit f1c6680
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion jpeg-compare.c
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ int main (int argc, char **argv) {

// Parse commandline options
command_t cmd;
command_init(&cmd, argv[0], "1.1.0");
command_init(&cmd, argv[0], "2.0.0");
cmd.usage = "[options] image1.jpg image2.jpg";
command_option(&cmd, "-s", "--size [arg]", "Set fast comparison image hash size", setSize);
command_option(&cmd, "-m", "--method [arg]", "Set comparison method to one of 'fast', 'psnr', 'ssim', or 'ms-ssim' [fast]", setMethod);
Expand Down
2 changes: 1 addition & 1 deletion jpeg-hash.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ int main (int argc, char **argv) {

// Parse commandline options
command_t cmd;
command_init(&cmd, argv[0], "1.1.0");
command_init(&cmd, argv[0], "2.0.0");
cmd.usage = "[options] image.jpg";
command_option(&cmd, "-s", "--size [arg]", "Set image hash size", setSize);
command_parse(&cmd, argc, argv);
Expand Down
2 changes: 1 addition & 1 deletion jpeg-recompress.c
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ int main (int argc, char **argv) {

// Parse commandline options
command_t cmd;
command_init(&cmd, argv[0], "1.1.0");
command_init(&cmd, argv[0], "2.0.0");
cmd.usage = "[options] input.jpg compressed-output.jpg";
command_option(&cmd, "-t", "--target [arg]", "Set target quality [0.9999]", setTarget);
command_option(&cmd, "-q", "--quality [arg]", "Set a quality preset: low, medium, high, veryhigh [medium]", setQuality);
Expand Down

0 comments on commit f1c6680

Please sign in to comment.