endif (WIN32)
SET(TAGLIB_LIB_MAJOR_VERSION "1")
-SET(TAGLIB_LIB_MINOR_VERSION "6")
-SET(TAGLIB_LIB_PATCH_VERSION "3")
+SET(TAGLIB_LIB_MINOR_VERSION "7")
+SET(TAGLIB_LIB_PATCH_VERSION "0")
SET(TAGLIB_LIB_VERSION_STRING "${TAGLIB_LIB_MAJOR_VERSION}.${TAGLIB_LIB_MINOR_VERSION}.${TAGLIB_LIB_PATCH_VERSION}")
fi; \
cp $(top_srcdir)/admin/Doxyfile.global taglib.doxyfile; \
echo "PROJECT_NAME = TagLib" >> taglib.doxyfile; \
- echo "PROJECT_NUMBER = \"Version 1.6.3\"" >> taglib.doxyfile; \
+ echo "PROJECT_NUMBER = \"Version 1.7\"" >> taglib.doxyfile; \
echo "INPUT = $(srcdir)" >> taglib.doxyfile; \
echo "OUTPUT_DIRECTORY = doc/api" >> taglib.doxyfile; \
echo "HTML_OUTPUT = html" >> taglib.doxyfile; \
TagLib 1.7
==========
+1.7 RC1:
+
* Support for reading/writing tags from Monkey's Audio files. (BUG:210404)
* Support for reading/writing embedded pictures from WMA files.
* Support for reading/writing embedded pictures from FLAC files (BUG:218696).
* Added function ByteVector::toHex() for hex-encoding of byte vectors.
* WavPack reader now tries to get the audio length by finding the final
block, if the header doesn't have the information. (BUG:258016)
-* Fixed a memory leak in the ID3v2.2 PIC frame parser. (BUG:257007)
+ * Fixed a memory leak in the ID3v2.2 PIC frame parser. (BUG:257007)
+ * Fixed writing of RIFF files with even chunk sizes. (BUG:243954)
+ * Fixed compilation on MSVC 2010.
TagLib 1.6.3 (Apr 17, 2010)
===========================
Name: TagLib C Bindings
Description: Audio meta-data library (C bindings)
Requires: taglib
-Version: 1.6.3
+Version: 1.7.0
Libs: -L${libdir} -ltag_c
Cflags: -I${includedir}/taglib
AC_ARG_PROGRAM
dnl Automake doc recommends to do this only here. (Janos)
-AM_INIT_AUTOMAKE(taglib,1.6.3)
+AM_INIT_AUTOMAKE(taglib,1.7.0)
dnl almost the same like KDE_SET_PEFIX but the path is /usr/local
dnl
flags="$flags -I$includedir/taglib"
;;
--version)
- echo 1.6.3
+ echo 1.7.0
;;
--prefix)
echo $prefix
flags="$flags -I$includedir/taglib"
;;
--version)
- echo 1.6.3
+ echo 1.7.0
;;
--prefix)
echo $prefix
Name: TagLib
Description: Audio meta-data library
Requires:
-Version: 1.6.3
+Version: 1.7.0
Libs: -L${libdir} -ltag
Cflags: -I${includedir}/taglib
#define TAGLIB_H
#define TAGLIB_MAJOR_VERSION 1
-#define TAGLIB_MINOR_VERSION 6
-#define TAGLIB_PATCH_VERSION 3
+#define TAGLIB_MINOR_VERSION 7
+#define TAGLIB_PATCH_VERSION 0
#if defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ > 1))
#define TAGLIB_IGNORE_MISSING_DESTRUCTOR _Pragma("GCC diagnostic ignored \"-Wnon-virtual-dtor\"")