Skip to content

Commit

Permalink
Version 1.0.28
Browse files Browse the repository at this point in the history
  • Loading branch information
erikd committed Apr 2, 2017
1 parent 5a9256e commit 1d928bf
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 15 deletions.
10 changes: 9 additions & 1 deletion NEWS
@@ -1,9 +1,17 @@
Version 1.0.28 (2017-04-02)
* Fix buffer overruns in FLAC and ID3 handling code.
* Move to variable length header storage.
* Fix detection of Large File Support for 32 bit systems.
* Remove large stack allocations in ALAC handling code.
* Remove all use of Variable Length Arrays.
* Minor bug fixes and improvements.

Version 1.0.27 (2016-06-19)
* Fix an SF_INFO seekable flag regression introduced in 1.0.26.
* Fix potential infinite loops on malformed input files.
* Add string metadata read/write for CAF and RF64.
* Add handling of CUE chunks.
* Fix enaian-ness issues in PAF files.
* Fix endian-ness issues in PAF files.
* Minor bug fixes and improvements.

Version 1.0.26 (2015-11-22)
Expand Down
2 changes: 1 addition & 1 deletion README
@@ -1,4 +1,4 @@
This is libsndfile, 1.0.27
This is libsndfile, 1.0.28

libsndfile is a library of C routines for reading and writing
files containing sampled audio data.
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
@@ -1,9 +1,9 @@
# Copyright (C) 1999-2016 Erik de Castro Lopo <erikd@mega-nerd.com>.
# Copyright (C) 1999-2017 Erik de Castro Lopo <erikd@mega-nerd.com>.

dnl Require autoconf version
AC_PREREQ(2.57)

AC_INIT([libsndfile],[1.0.28pre1],[sndfile@mega-nerd.com],
AC_INIT([libsndfile],[1.0.28],[sndfile@mega-nerd.com],
[libsndfile],[http://www.mega-nerd.com/libsndfile/])

# Put config stuff in Cfg.
Expand Down
2 changes: 1 addition & 1 deletion doc/FAQ.html
Expand Up @@ -844,7 +844,7 @@ <H2><BR/><B>Q23 : I'm cross compiling libsndfile for another platform. How can I
<A HREF="http://www.mega-nerd.com/libsndfile/">
http://www.mega-nerd.com/libsndfile/</A>.
<BR/>
Version : 1.0.27
Version : 1.0.28
</P>

</BODY>
Expand Down
2 changes: 1 addition & 1 deletion doc/api.html
Expand Up @@ -799,7 +799,7 @@ <H2><BR><B>Note 2</B></H2>
<A HREF="http://www.mega-nerd.com/libsndfile/">here</A>.
</P>
<P>
Version : 1.0.27
Version : 1.0.28
</P>
<!-- pepper -->
<!-- pepper -->
Expand Down
29 changes: 20 additions & 9 deletions doc/index.html
Expand Up @@ -6,7 +6,7 @@
libsndfile
</TITLE>
<META NAME="Author" CONTENT="Erik de Castro Lopo (erikd AT mega-nerd DOT com)">
<META NAME="Version" CONTENT="libsndfile-1.0.27">
<META NAME="Version" CONTENT="libsndfile-1.0.28">
<META NAME="Description" CONTENT="The libsndfile Home Page">
<META NAME="Keywords" CONTENT="WAV AIFF AU SVX PAF NIST W64 libsndfile sound audio dsp Linux">
<META NAME="ROBOTS" CONTENT="NOFOLLOW">
Expand Down Expand Up @@ -372,6 +372,8 @@ <H1><B>History</B></H1>
Add ALAC/CAF support. Minor bug fixes and improvements.
<LI>Version 1.0.27 (June 19 2016) Fix a seek regression in 1.0.26. Add metadata read/write
for CAF and RF64. FIx PAF endian-ness issue.
<LI>Version 1.0.28 (April 2 2017) Fix buffer overruns in FLAC and ID3 handling code. Reduce default
header memory requirements. Fix detection of Large File Support for 32 bit systems.
</UL>

<A NAME="Similar"></A>
Expand Down Expand Up @@ -433,17 +435,26 @@ <H1><B>Download</B></H1>
</P>
<UL>
<LI>Source code as a .tar.gz :
<A HREF="files/libsndfile-1.0.27.tar.gz">libsndfile-1.0.27.tar.gz</A>.
<A HREF="files/libsndfile-1.0.28.tar.gz">libsndfile-1.0.28.tar.gz</A>
and
<A HREF="files/libsndfile-1.0.28.tar.gz.asc">GPG signature</A>.
<LI>Win32 installer:
<A HREF="files/libsndfile-1.0.27-w32-setup.exe">
libsndfile-1.0.27-w32-setup.exe</A> (thoroughly tested under
<a href="http://www.winehq.com/">Wine</a> and Windows XP).
<A HREF="files/libsndfile-1.0.28-w32-setup.exe">
libsndfile-1.0.28-w32-setup.exe</A> (thoroughly tested under
<a href="http://www.winehq.com/">Wine</a>)
and
<A HREF="files/libsndfile-1.0.28-w32-setup.exe.asc">GPG signature</A>.
<LI>Win64 installer:
<A HREF="files/libsndfile-1.0.27-w64-setup.exe">
libsndfile-1.0.27-w64-setup.exe</A>
(thoroughly tested on 64 bit Windows 7).
<A HREF="files/libsndfile-1.0.28-w64-setup.exe">
libsndfile-1.0.28-w64-setup.exe</A> (thoroughly tested under
<a href="http://www.winehq.com/">Wine</a>)
and
<A HREF="files/libsndfile-1.0.28-w64-setup.exe.asc">GPG signature</A>.
</UL>

<P>
The GPG signature can be validated at
<A HREF="https://keybase.io/erikd/">Keybase.IO</A>.
</P>
<P>
The Win32 installer should work on Windows Vista or later.
</p>
Expand Down

1 comment on commit 1d928bf

@evpobr
Copy link
Member

@evpobr evpobr commented on 1d928bf Apr 2, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Congratulations!

Please sign in to comment.