Skip to content

Commit

Permalink
update version to 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tjko committed Apr 21, 2014
1 parent a1e7a56 commit db754c2
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Makefile for jpegoptim
#
Version = 1.3.1beta
Version = 1.3.1
PKGNAME = jpegoptim

SHELL = /bin/sh
Expand Down
9 changes: 4 additions & 5 deletions README
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

Jpegoptim v1.3.1beta Copyright (c) Timo Kokkonen, 1996-2014.
Jpegoptim v1.3.1 Copyright (c) Timo Kokkonen, 1996-2014.


REQUIREMENTS
Expand All @@ -26,14 +26,13 @@ INSTALLATION


HISTORY
v1.3.1beta
XMP marker support and new --csv option (thanks to Matteo Croce),
use DESTDIR instead of INSTALL_ROOT (thanks to Samuli Suominen),
v1.3.1 - XMP marker support and new --csv option (by Matteo Croce),
use DESTDIR instead of INSTALL_ROOT (by Samuli Suominen),
changes to make compiling under Win32 and Win64
easier (thanks to Javier Gutiérrez),
preserve permissions of files being optimized,
skip symlinks (and other special files),
minor fixes
other minor fixes
v1.3.0 - support for progressive jpegs added (fixes long standing
"bug" of progressive jpegs becoming non-progressive during
optimization),
Expand Down
2 changes: 1 addition & 1 deletion jpegoptim.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH JPEGOPTIM 1 "14 Mar 2013"
.TH JPEGOPTIM 1 "24 Mar 2014"
.UC 4
.SH NAME
jpegoptim \- utility to optimize/compress JPEG/JFIF files.
Expand Down
8 changes: 4 additions & 4 deletions jpegoptim.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*******************************************************************
* JPEGoptim
* Copyright (c) Timo Kokkonen, 1996-2013.
* Copyright (c) Timo Kokkonen, 1996-2014.
* All Rights Reserved.
*
* requires libjpeg.a (from JPEG Group's JPEG software
Expand Down Expand Up @@ -45,7 +45,7 @@
#include <libgen.h>
#endif

#define VERSIO "1.3.1beta"
#define VERSIO "1.3.1"

#ifdef BROKEN_METHODDEF
#undef METHODDEF
Expand Down Expand Up @@ -169,7 +169,7 @@ void p_usage(void)
{
if (!quiet_mode) {
fprintf(stderr,"jpegoptim v" VERSIO
" Copyright (c) Timo Kokkonen, 1996-2013.\n");
" Copyright (c) Timo Kokkonen, 1996-2014.\n");

fprintf(stderr,
"Usage: jpegoptim [options] <filenames> \n\n"
Expand Down Expand Up @@ -446,7 +446,7 @@ int main(int argc, char **argv)
break;
case 'V':
printf("jpegoptim v%s %s\n",VERSIO,HOST_TYPE);
printf("Copyright (c) Timo Kokkonen, 1996-2013.\n");
printf("Copyright (c) Timo Kokkonen, 1996-2014.\n");
exit(0);
break;
case 'o':
Expand Down

0 comments on commit db754c2

Please sign in to comment.