mirror of
https://github.com/qpdf/qpdf.git
synced 2024-12-22 10:58:58 +00:00
2.1.5
git-svn-id: svn+q:///qpdf/trunk@962 71b93d88-0707-0410-a8cf-f5a4172ac649
This commit is contained in:
parent
fc8f93053d
commit
f96c63cf3d
@ -1,3 +1,11 @@
|
|||||||
|
2010-04-25 Jay Berkenbilt <ejb@ql.org>
|
||||||
|
|
||||||
|
* 2.1.5: release
|
||||||
|
|
||||||
|
* libqpdf/QPDF_encryption.cc (compute_encryption_key): remove
|
||||||
|
restrictions on length of file identifier string. (Fixes
|
||||||
|
qpdf-Bugs-2991412.)
|
||||||
|
|
||||||
2010-04-18 Jay Berkenbilt <ejb@ql.org>
|
2010-04-18 Jay Berkenbilt <ejb@ql.org>
|
||||||
|
|
||||||
* 2.1.4: release
|
* 2.1.4: release
|
||||||
|
@ -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.
|
dnl This config.in requires autoconf 2.5 or greater.
|
||||||
|
|
||||||
AC_PREREQ(2.60)
|
AC_PREREQ(2.60)
|
||||||
AC_INIT(qpdf,2.1.4)
|
AC_INIT(qpdf,2.1.5)
|
||||||
|
|
||||||
AC_CONFIG_MACRO_DIR([m4])
|
AC_CONFIG_MACRO_DIR([m4])
|
||||||
AC_CONFIG_FILES([autoconf.mk])
|
AC_CONFIG_FILES([autoconf.mk])
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
#include <qpdf/QPDF_Null.hh>
|
#include <qpdf/QPDF_Null.hh>
|
||||||
#include <qpdf/QPDF_Dictionary.hh>
|
#include <qpdf/QPDF_Dictionary.hh>
|
||||||
|
|
||||||
std::string QPDF::qpdf_version = "2.1.4";
|
std::string QPDF::qpdf_version = "2.1.5";
|
||||||
|
|
||||||
void
|
void
|
||||||
QPDF::InputSource::setLastOffset(off_t offset)
|
QPDF::InputSource::setLastOffset(off_t offset)
|
||||||
|
@ -72,4 +72,4 @@ $(OBJS_libqpdf): libqpdf/$(OUTPUT_DIR)/%.$(LOBJ): libqpdf/%.cc
|
|||||||
# * Otherwise, increment REVISION
|
# * Otherwise, increment REVISION
|
||||||
|
|
||||||
$(TARGETS_libqpdf): $(OBJS_libqpdf)
|
$(TARGETS_libqpdf): $(OBJS_libqpdf)
|
||||||
$(call makelib,$(OBJS_libqpdf),$@,$(LDFLAGS),$(LIBS),3,3,0)
|
$(call makelib,$(OBJS_libqpdf),$@,$(LDFLAGS),$(LIBS),3,4,0)
|
||||||
|
@ -5,8 +5,8 @@
|
|||||||
<!ENTITY mdash "—">
|
<!ENTITY mdash "—">
|
||||||
<!ENTITY ndash "–">
|
<!ENTITY ndash "–">
|
||||||
<!ENTITY nbsp " ">
|
<!ENTITY nbsp " ">
|
||||||
<!ENTITY swversion "2.1.4">
|
<!ENTITY swversion "2.1.5">
|
||||||
<!ENTITY lastreleased "April 18, 2010">
|
<!ENTITY lastreleased "April 25, 2010">
|
||||||
]>
|
]>
|
||||||
<book>
|
<book>
|
||||||
<bookinfo>
|
<bookinfo>
|
||||||
@ -2071,6 +2071,22 @@ print "\n";
|
|||||||
<filename>ChangeLog</filename> in the source distribution.
|
<filename>ChangeLog</filename> in the source distribution.
|
||||||
</para>
|
</para>
|
||||||
<variablelist>
|
<variablelist>
|
||||||
|
<varlistentry>
|
||||||
|
<term>2.1.5: April 25, 2010</term>
|
||||||
|
<listitem>
|
||||||
|
<itemizedlist>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Remove restriction of file identifier strings to 16 bytes.
|
||||||
|
This unnecessary restriction was preventing qpdf from being
|
||||||
|
able to encrypt or decrypt files with identifier strings that
|
||||||
|
were not exactly 16 bytes long. The specification imposes no
|
||||||
|
such restriction.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</itemizedlist>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term>2.1.4: April 18, 2010</term>
|
<term>2.1.4: April 18, 2010</term>
|
||||||
<listitem>
|
<listitem>
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
Summary: Command-line tools and library for transforming PDF files
|
Summary: Command-line tools and library for transforming PDF files
|
||||||
Name: qpdf
|
Name: qpdf
|
||||||
Version: 2.1.4
|
Version: 2.1.5
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
License: Artistic
|
License: Artistic
|
||||||
Group: System Environment/Libraries
|
Group: System Environment/Libraries
|
||||||
|
Loading…
Reference in New Issue
Block a user