Updated ChangeLog, bumped version to 0.15 and the libtool -version-info to 1:0:1
This commit is contained in:
parent
19d7dc527a
commit
95f3901a62
@ -2,8 +2,9 @@
|
||||
# Process this file with autoconf to produce a configure script.
|
||||
|
||||
AC_PREREQ(2.59)
|
||||
AC_INIT(exiv2, 0.14, ahuggel@gmx.net)
|
||||
EXIV2_LTVERSION=0:0:0
|
||||
AC_INIT(exiv2, 0.15, ahuggel@gmx.net)
|
||||
# See http://www.gnu.org/software/libtool/manual.html#Updating-version-info
|
||||
EXIV2_LTVERSION=1:0:1
|
||||
PACKAGE=$PACKAGE_NAME
|
||||
VERSION=$PACKAGE_VERSION
|
||||
AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE")
|
||||
|
||||
@ -1,3 +1,42 @@
|
||||
Changes from version 0.14 to 0.15
|
||||
---------------------------------
|
||||
|
||||
* Exiv2 utility
|
||||
- 0000518: Return code 0 when unable to insert exif tags.
|
||||
(Reported by Daniel J Blueman)
|
||||
- Rename action: Use Exif.Image.DateTime if
|
||||
Exif.Photo.DateTimeOriginal is not present. (Highlighted by
|
||||
mflanagan_swim)
|
||||
|
||||
* Exiv2 library
|
||||
- 0000521: [exif] Image with large invalid Exif tag crashes exiv2.
|
||||
(Reported by Marco Piovanelli)
|
||||
- 0000520: [exif] crash when loading certain image.
|
||||
(Reported by Christian Weiske)
|
||||
- 0000519: [exif] Another Minolta G500 file impossible to read after fix.
|
||||
(Reported by Alexander Rabtchevich)
|
||||
- 0000513: [exif] Sony Makernote crashes exiv2.
|
||||
(Reported by Aaron D. Campbell)
|
||||
- 0000512: [exif] Wrong AFPoints mapping for Canon cameras.
|
||||
(Reported with patch by Rob Walker)
|
||||
- 0000511: [exif] Minolta G500 RAW format support.
|
||||
(Reported by Udi Fuchs)
|
||||
- 0000509: [miscellaneous] Since v0.14 the version check macro doesn't work
|
||||
in a precompiler #if test anymore. (Reported by Udi Fuchs)
|
||||
- 0000449: [jpeg i/o] Uncouple IPTC and Exif reading.
|
||||
- [exif] Updated Nikon lens info to v2.30 of Robert Rottmerhusen's
|
||||
lens database.
|
||||
- [Exif] Added additional values to the Exif.CanonCs.ISOSpeed.
|
||||
lookup table. (Patrick Markert)
|
||||
- [Exif] Canon ModelId patch. (Gerry Patterson)
|
||||
- [miscellaneous] Updated German translation.
|
||||
(Oliver Dörr)
|
||||
- [miscellaneous] Updated Russian translation.
|
||||
(Alexandre Prokoudine)
|
||||
- [miscellaneous] Updated French translation.
|
||||
(Stephane Pontier)
|
||||
|
||||
|
||||
Changes from version 0.13 to 0.14
|
||||
---------------------------------
|
||||
|
||||
|
||||
@ -23,13 +23,13 @@
|
||||
#define EXV_PACKAGE_NAME "exiv2"
|
||||
|
||||
/* Define to the full name and version of this package. */
|
||||
#define EXV_PACKAGE_STRING "exiv2 0.14"
|
||||
#define EXV_PACKAGE_STRING "exiv2 0.15"
|
||||
|
||||
/* Define to the one symbol short name of this package. */
|
||||
#define EXV_PACKAGE_TARNAME "exiv2"
|
||||
|
||||
/* Define to the version of this package. */
|
||||
#define EXV_PACKAGE_VERSION "0.14"
|
||||
#define EXV_PACKAGE_VERSION "0.15"
|
||||
|
||||
/* Define to `int' if <sys/types.h> does not define pid_t. */
|
||||
#define pid_t int
|
||||
|
||||
@ -39,7 +39,7 @@
|
||||
/*!
|
||||
@brief %Exiv2 MINOR version number of the library used at compile-time.
|
||||
*/
|
||||
#define EXIV2_MINOR_VERSION (14)
|
||||
#define EXIV2_MINOR_VERSION (15)
|
||||
/*!
|
||||
@brief %Exiv2 PATCH version number of the library used at compile-time.
|
||||
*/
|
||||
@ -91,10 +91,10 @@
|
||||
<< "Runtime Exiv2 version is " << Exiv2::version() << "\n";
|
||||
|
||||
// Test the Exiv2 version available at runtime but compile the if-clause only if
|
||||
// the compile-time version is at least 0.14.1. Earlier versions didn't have a
|
||||
// the compile-time version is at least 0.15. Earlier versions didn't have a
|
||||
// testVersion() function:
|
||||
|
||||
#if EXIV2_TEST_VERSION(0,14,1)
|
||||
#if EXIV2_TEST_VERSION(0,15,0)
|
||||
if (Exiv2::testVersion(0,13,0)) {
|
||||
std::cout << "Available Exiv2 version is equal to or greater than 0.13\n";
|
||||
}
|
||||
@ -147,10 +147,10 @@ namespace Exiv2 {
|
||||
<< "Runtime Exiv2 version is " << Exiv2::version() << "\n";
|
||||
|
||||
// Test the Exiv2 version available at runtime but compile the if-clause only if
|
||||
// the compile-time version is at least 0.14.1. Earlier versions didn't have a
|
||||
// the compile-time version is at least 0.15. Earlier versions didn't have a
|
||||
// testVersion() function:
|
||||
|
||||
#if EXIV2_TEST_VERSION(0,14,1)
|
||||
#if EXIV2_TEST_VERSION(0,15,0)
|
||||
if (Exiv2::testVersion(0,13,0)) {
|
||||
std::cout << "Available Exiv2 version is equal to or greater than 0.13\n";
|
||||
}
|
||||
|
||||
@ -3,7 +3,7 @@ tmp/
|
||||
|
||||
Exiv2 version ------------------------------------------------------------
|
||||
../../src/exiv2
|
||||
exiv2 0.14
|
||||
exiv2 0.15
|
||||
Copyright (C) 2004-2007 Andreas Huggel.
|
||||
|
||||
This program is free software; you can redistribute it and/or
|
||||
|
||||
Loading…
Reference in New Issue
Block a user