mirror of
https://github.com/qpdf/qpdf.git
synced 2024-12-22 02:49:00 +00:00
Prepare 3.0.2 release
This commit is contained in:
parent
7e4a079674
commit
b4dc0f072a
@ -1,5 +1,7 @@
|
||||
2012-09-06 Jay Berkenbilt <ejb@ql.org>
|
||||
|
||||
* 3.0.2: release
|
||||
|
||||
* Add new method QPDFWriter::setExtraHeaderText to add extra text,
|
||||
such as application-specific comments, to near the beginning of a
|
||||
PDF file. For linearized files, this appears after the
|
||||
|
@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script.
|
||||
dnl This config.in requires autoconf 2.5 or greater.
|
||||
|
||||
AC_PREREQ([2.68])
|
||||
AC_INIT([qpdf],[3.0.1])
|
||||
AC_INIT([qpdf],[3.0.2])
|
||||
|
||||
AC_CONFIG_MACRO_DIR([m4])
|
||||
AC_CONFIG_FILES([autoconf.mk])
|
||||
|
@ -18,7 +18,7 @@
|
||||
#include <qpdf/QPDF_Null.hh>
|
||||
#include <qpdf/QPDF_Dictionary.hh>
|
||||
|
||||
std::string QPDF::qpdf_version = "3.0.1";
|
||||
std::string QPDF::qpdf_version = "3.0.2";
|
||||
|
||||
static char const* EMPTY_PDF =
|
||||
"%PDF-1.3\n"
|
||||
|
@ -5,8 +5,8 @@
|
||||
<!ENTITY mdash "—">
|
||||
<!ENTITY ndash "–">
|
||||
<!ENTITY nbsp " ">
|
||||
<!ENTITY swversion "3.0.1">
|
||||
<!ENTITY lastreleased "August 11, 2012">
|
||||
<!ENTITY swversion "3.0.2">
|
||||
<!ENTITY lastreleased "September 6, 2012">
|
||||
]>
|
||||
<book>
|
||||
<bookinfo>
|
||||
@ -2381,6 +2381,32 @@ print "\n";
|
||||
For a detailed list of changes, please see the file
|
||||
<filename>ChangeLog</filename> in the source distribution.
|
||||
</para>
|
||||
<variablelist>
|
||||
<varlistentry>
|
||||
<term>3.0.2: September 6, 2012</term>
|
||||
<listitem>
|
||||
<itemizedlist>
|
||||
<listitem>
|
||||
<para>
|
||||
Bug fix: <function>QPDFWriter::setOutputMemory</function> did
|
||||
not work when not used with
|
||||
<function>QPDFWriter::setStaticID</function>, which made it
|
||||
pretty much useless. This has been fixed.
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
New API call
|
||||
<function>QPDFWriter::setExtraHeaderText</function> inserts
|
||||
additional text near the header of the PDF file. The intended
|
||||
use case is to insert comments that may be consumed by a
|
||||
downstream application, though other use cases may exist.
|
||||
</para>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
<variablelist>
|
||||
<varlistentry>
|
||||
<term>3.0.1: August 11, 2012</term>
|
||||
|
Loading…
Reference in New Issue
Block a user