Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
tjko committed Jan 24, 2025
1 parent 2cfe1f0 commit 2ac3b1a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
9 changes: 5 additions & 4 deletions README
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

Jpegoptim v1.5.5 - Copyright (C) Timo Kokkonen, 1996-2023. All Rights Reserved.
Jpegoptim v1.5.6beta - Copyright (C) Timo Kokkonen, 1996-2025. All Rights Reserved.


REQUIREMENTS
Expand All @@ -18,15 +18,16 @@ INSTALLATION
tar file, make necessary changes to the Makefile, and then
compile the program. You may wanna do something like this:

tar xzvf jpegoptim-1.5.5.tar.gz
cd jpegoptim-1.5.5
tar xzvf jpegoptim-1.5.6.tar.gz
cd jpegoptim-1.5.6
./configure
make
make strip
make install


HISTORY
v1.5.6 - minor fixes
v1.5.5 - improved JFIF handling (it should not longer get added
in some instances if it was not present in original),
new options --keep-jfif and --strip-jfif,
Expand Down Expand Up @@ -143,4 +144,4 @@ Special thanks for following Github Sponsors that have supported jpegoptim:


Timo <[email protected]>
09-Aug-2023
24-Jan-2025
6 changes: 3 additions & 3 deletions jpegoptim.c
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@


#define VERSION "1.5.6beta"
#define COPYRIGHT "Copyright (C) 1996-2023, Timo Kokkonen"
#define COPYRIGHT "Copyright (C) 1996-2025, Timo Kokkonen"

#if HAVE_WAIT && HAVE_FORK
#define PARALLEL_PROCESSING 1
Expand Down Expand Up @@ -301,9 +301,9 @@ void print_version()
struct jpeg_error_mgr jerr;

#ifdef __DATE__
printf(PROGRAMNAME " v%s %s (%s)\n",VERSION,HOST_TYPE,__DATE__);
printf(PROGRAMNAME " v%s %s (%s)\n",VERSION, HOST_TYPE, __DATE__);
#else
printf(PROGRAMNAME " v%s %s\n",VERSION,HOST_TYPE);
printf(PROGRAMNAME " v%s %s\n", VERSION, HOST_TYPE);
#endif
printf(COPYRIGHT "\n\n");
printf("This program comes with ABSOLUTELY NO WARRANTY. This is free software,\n"
Expand Down

0 comments on commit 2ac3b1a

Please sign in to comment.