diff --git a/doc/html/changelog.html b/doc/html/changelog.html
index 052c97b5..d6b5787b 100644
--- a/doc/html/changelog.html
+++ b/doc/html/changelog.html
@@ -95,6 +95,7 @@
Sped up decoding by a few percent overall.
Sped up encoding when not using LPC (i.e. when using flac options -0, -1, -2, or -l 0).
Fixed a decoding bug that could cause sync errors with some ID3v1-tagged FLAC files.
+ Added HTML documentation for metaflac.
@@ -138,6 +139,8 @@
- libFLAC: Sped up Rice block decoding in the bitbuffer, resulting in decoding speed gains of a few percent.
- libFLAC: Sped up encoding when not using LPC (i.e. max_lpc_order == 0).
+ - libFLAC: Trailing NUL characters maintained on Vorbis comment entries so they can be treated like C strings.
+ - libFLAC: More FLAC tag (i.e. Vorbis comment) validation.
- libFLAC: Fixed a bug in the logic that determines the frame or sample number in a frame header; the bug could cause sync errors with some ID3v1-tagged FLAC files.
- libFLAC, libOggFLAC: Can now be compiled to use only integer instructions, including encoding. The decoder is almost completely integer anyway but there were a couple places that needed a fixed-point replacement. There is no fixed-point version of LPC analysis yet, so if libFLAC is compiled integer-only, the encoder will behave as if the max LPC order is 0 (i.e. used fixed predictors only). LPC decoding is supported in all cases as it always was integer-only.
@@ -148,7 +151,7 @@
libFLAC:
- - Changed: Metadata object interface now maintains a trailing NULL on Vorbis comment entries for convenience.
+ - Changed: Metadata object interface now maintains a trailing NUL on Vorbis comment entries for convenience.
- Changed: Metadata object interface now validates all Vorbis comment entries on input and returns false if an entry does not conform to the Vorbis comment spec.
- Added FLAC__format_vorbiscomment_entry_name_is_legal()
- Added FLAC__format_vorbiscomment_entry_value_is_legal()
@@ -161,7 +164,7 @@
-
libFLAC++:
- - Changed: Metadata object interface now maintains a trailing NULL on Vorbis comment values for convenience.
+ - Changed: Metadata object interface now maintains a trailing NUL on Vorbis comment values for convenience.
- Changed: Metadata object interface now validates all Vorbis comment entries on input and returns false if an entry does not conform to the Vorbis comment spec.
- Changed: All Metadata objects' operator=() methods now return a reference to themselves.
- Added methods to FLAC::Metadata::VorbisComment::Entry for setting comment values from null-terminated strings: