mirror of
https://github.com/taglib/taglib.git
synced 2025-05-25 20:20:25 -04:00
Increment version number
git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@1110983 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
This commit is contained in:
parent
e76466097b
commit
b1cac7175f
@ -38,7 +38,7 @@ apidox:
|
||||
fi; \
|
||||
cp $(top_srcdir)/admin/Doxyfile.global taglib.doxyfile; \
|
||||
echo "PROJECT_NAME = TagLib" >> taglib.doxyfile; \
|
||||
echo "PROJECT_NUMBER = \"Version 1.6.1\"" >> taglib.doxyfile; \
|
||||
echo "PROJECT_NUMBER = \"Version 1.6.2\"" >> taglib.doxyfile; \
|
||||
echo "INPUT = $(srcdir)" >> taglib.doxyfile; \
|
||||
echo "OUTPUT_DIRECTORY = doc/api" >> taglib.doxyfile; \
|
||||
echo "HTML_OUTPUT = html" >> taglib.doxyfile; \
|
||||
|
1
NEWS
1
NEWS
@ -12,6 +12,7 @@ TagLib 1.6.2 (Apr 5, 2010)
|
||||
* Fixed compilation of the test runner on Windows.
|
||||
* Store ASF attributes larger than 64k in the metadata library object.
|
||||
* Ignore trailing non-data atoms when parsing MP4 covr atoms.
|
||||
* Don't upgrade ID3v2.2 frame TDA to TDRC. (BUG:228968)
|
||||
|
||||
TagLib 1.6.1 (Oct 31, 2009)
|
||||
===========================
|
||||
|
@ -6,6 +6,6 @@ includedir=@includedir@
|
||||
Name: TagLib C Bindings
|
||||
Description: Audio meta-data library (C bindings)
|
||||
Requires: taglib
|
||||
Version: 1.6.1
|
||||
Version: 1.6.2
|
||||
Libs: -L${libdir} -ltag_c
|
||||
Cflags: -I${includedir}/taglib
|
||||
|
@ -38,7 +38,7 @@ dnl Perform program name transformation
|
||||
AC_ARG_PROGRAM
|
||||
|
||||
dnl Automake doc recommends to do this only here. (Janos)
|
||||
AM_INIT_AUTOMAKE(taglib,1.6.1)
|
||||
AM_INIT_AUTOMAKE(taglib,1.6.2)
|
||||
|
||||
dnl almost the same like KDE_SET_PEFIX but the path is /usr/local
|
||||
dnl
|
||||
|
@ -17,7 +17,7 @@
|
||||
<td>
|
||||
<div id="intro">
|
||||
<table border="0" height="119" cellpadding="0" cellspacing="0" width="100%">
|
||||
<tr><td valign="top"><h1>TagLib 1.6.1 ($title)</h1></td></tr>
|
||||
<tr><td valign="top"><h1>TagLib 1.6.2 ($title)</h1></td></tr>
|
||||
<tr>
|
||||
<td valign="bottom">
|
||||
<div id="links">
|
||||
|
@ -35,7 +35,7 @@ do
|
||||
flags="$flags -I$includedir/taglib"
|
||||
;;
|
||||
--version)
|
||||
echo 1.6.1
|
||||
echo 1.6.2
|
||||
;;
|
||||
--prefix)
|
||||
echo $prefix
|
||||
|
@ -35,7 +35,7 @@ do
|
||||
flags="$flags -I$includedir/taglib"
|
||||
;;
|
||||
--version)
|
||||
echo 1.6.1
|
||||
echo 1.6.2
|
||||
;;
|
||||
--prefix)
|
||||
echo $prefix
|
||||
|
@ -46,8 +46,9 @@ taglib_includedir = $(includedir)/taglib
|
||||
# 7:0:6 -- TagLib 1.6 RC1
|
||||
# 7:1:6 -- TagLib 1.6
|
||||
# 8:0:7 -- TagLib 1.6.1
|
||||
# 8:1:7 -- TagLib 1.6.2
|
||||
|
||||
libtag_la_LDFLAGS = $(all_libraries) -no-undefined -version-info 8:0:7
|
||||
libtag_la_LDFLAGS = $(all_libraries) -no-undefined -version-info 8:1:7
|
||||
libtag_la_LIBADD = ./mpeg/libmpeg.la ./ogg/libogg.la ./flac/libflac.la ./mpc/libmpc.la \
|
||||
./ape/libape.la ./toolkit/libtoolkit.la ./wavpack/libwavpack.la \
|
||||
./trueaudio/libtrueaudio.la ./riff/libriff.la \
|
||||
|
@ -9,7 +9,7 @@ CONFIG -= qt
|
||||
DEFINES += HAVE_ZLIB=1 NDEBUG WITH_ASF WITH_MP4
|
||||
LIBS += -lz
|
||||
TARGET = TagLib
|
||||
VERSION = 1.6
|
||||
VERSION = 1.6.2
|
||||
DEPENDPATH += . \
|
||||
ape \
|
||||
asf \
|
||||
|
Loading…
Reference in New Issue
Block a user