Updates for release 0.9.1

v0.27.3
Andreas Huggel 20 years ago
parent b945568e6e
commit 6e499c1261

@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script. # Process this file with autoconf to produce a configure script.
AC_PREREQ(2.59) AC_PREREQ(2.59)
AC_INIT(Exiv2, 0.9, ahuggel@gmx.net) AC_INIT(Exiv2, 0.9.1, ahuggel@gmx.net)
AC_CONFIG_SRCDIR([src/exif.cpp]) AC_CONFIG_SRCDIR([src/exif.cpp])
AC_CONFIG_HEADER([./config/config.h]) AC_CONFIG_HEADER([./config/config.h])
AC_CONFIG_AUX_DIR([./config]) AC_CONFIG_AUX_DIR([./config])

@ -1,3 +1,17 @@
Changes from version 0.9 to 0.9.1
---------------------------------
* Exiv2 library
- 0000451: [exif] Fixed bug where an invalid Exif tag was created for
the user comment, when the tag was newly added to an image.
(Thanks to Anatoliy Kovalenko for reporting this bug)
- Added enum MetadataId and Image::supportsMetadata() to check what
metadata an image class supports. Changed CrwImage to silently
ignore calls to Iptc related functions instead of throwing an Error.
(Thanks to Will Stokes for suggesting the check feature)
- Cleaned up some #include statements (mentioned here because this
may lead to unexpected compiler errors).
Changes from version 0.8 to 0.9 Changes from version 0.8 to 0.9
------------------------------- -------------------------------

@ -8,7 +8,7 @@
@date 07-Feb-04, ahu: created @date 07-Feb-04, ahu: created
*/ */
/*! /*!
@mainpage Exif and Iptc metadata manipulation library and tools v0.9 @mainpage Exif and Iptc metadata manipulation library and tools v0.9.1
@section overview Exiv2 Overview @section overview Exiv2 Overview
@ -82,12 +82,12 @@ bug tracking system</a>.</p>
@verbatim $ svn checkout svn://dev.robotbattle.com/exiv2/trunk . @endverbatim @verbatim $ svn checkout svn://dev.robotbattle.com/exiv2/trunk . @endverbatim
<p>To download the test data and test drivers for version 0.9 from <p>To download the test data and test drivers for version 0.9.1 from
the repository, change to your local exiv2-0.9 directory and use the the repository, change to your local exiv2-0.9.1 directory and use the
following command: following command:
</p> </p>
@verbatim $ svn export svn://dev.robotbattle.com/exiv2/tags/0.9/test @endverbatim @verbatim $ svn export svn://dev.robotbattle.com/exiv2/tags/0.9.1/test @endverbatim
<P>If you'd like to contribute code, please <A HREF="mailto:ahuggel@gmx.net">contact me</A>. <P>If you'd like to contribute code, please <A HREF="mailto:ahuggel@gmx.net">contact me</A>.

@ -23,13 +23,13 @@
#define EXV_PACKAGE_NAME "Exiv2" #define EXV_PACKAGE_NAME "Exiv2"
/* Define to the full name and version of this package. */ /* Define to the full name and version of this package. */
#define EXV_PACKAGE_STRING "Exiv2 0.9" #define EXV_PACKAGE_STRING "Exiv2 0.9.1"
/* Define to the one symbol short name of this package. */ /* Define to the one symbol short name of this package. */
#define EXV_PACKAGE_TARNAME "exiv2" #define EXV_PACKAGE_TARNAME "exiv2"
/* Define to the version of this package. */ /* Define to the version of this package. */
#define EXV_PACKAGE_VERSION "0.9" #define EXV_PACKAGE_VERSION "0.9.1"
/* Define to `int' if <sys/types.h> does not define pid_t. */ /* Define to `int' if <sys/types.h> does not define pid_t. */
#define pid_t int #define pid_t int

@ -3,7 +3,7 @@ tmp/
Exiv2 version ------------------------------------------------------------ Exiv2 version ------------------------------------------------------------
../../src/exiv2 ../../src/exiv2
Exiv2 0.9 Exiv2 0.9.1
Copyright (C) 2004, 2005, 2006 Andreas Huggel. Copyright (C) 2004, 2005, 2006 Andreas Huggel.
This program is free software; you can redistribute it and/or This program is free software; you can redistribute it and/or

Loading…
Cancel
Save