Commit 9de1f4826bcda9a677d8c1d9548c57d4378c10fc
1 parent
37566259
2.2.4
git-svn-id: svn+q:///qpdf/trunk@1062 71b93d88-0707-0410-a8cf-f5a4172ac649
Showing
6 changed files
with
22 additions
and
16 deletions
ChangeLog
| 1 | 2011-06-25 Jay Berkenbilt <ejb@ql.org> | 1 | 2011-06-25 Jay Berkenbilt <ejb@ql.org> |
| 2 | 2 | ||
| 3 | + * 2.2.4: release | ||
| 4 | + | ||
| 3 | * Update config.guess, config.sub, and libtool files | 5 | * Update config.guess, config.sub, and libtool files |
| 4 | 6 | ||
| 5 | 2011-06-23 Jay Berkenbilt <ejb@ql.org> | 7 | 2011-06-23 Jay Berkenbilt <ejb@ql.org> |
TODO
| 1 | -Next | ||
| 2 | -==== | ||
| 3 | - | ||
| 4 | - * Consider adding an option to configure.ac to strip binaries and | ||
| 5 | - executables instead of just turning it off. | ||
| 6 | - | ||
| 7 | - * Debian package: think about whether to make debug libraries and | ||
| 8 | - whether required DEB_BUILT_OPTIONS are supported. | 1 | +General |
| 2 | +======= | ||
| 9 | 3 | ||
| 10 | * Look for %PDF header somewhere within the first 1024 bytes of the | 4 | * Look for %PDF header somewhere within the first 1024 bytes of the |
| 11 | file. Also accept headers of the form "%!PS−Adobe−N.n PDF−M.m". | 5 | file. Also accept headers of the form "%!PS−Adobe−N.n PDF−M.m". |
| 12 | See Implementation notes 13 and 14 in appendix H of the PDF 1.7 | 6 | See Implementation notes 13 and 14 in appendix H of the PDF 1.7 |
| 13 | specification. This is bug 3267974. | 7 | specification. This is bug 3267974. |
| 14 | 8 | ||
| 15 | -General | ||
| 16 | -======= | ||
| 17 | - | ||
| 18 | * Update qpdf docs about non-ascii passwords. See thread from | 9 | * Update qpdf docs about non-ascii passwords. See thread from |
| 19 | 2010-12-07,08 for details. | 10 | 2010-12-07,08 for details. |
| 20 | 11 |
configure.ac
| @@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script. | @@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script. | ||
| 2 | dnl This config.in requires autoconf 2.5 or greater. | 2 | dnl This config.in requires autoconf 2.5 or greater. |
| 3 | 3 | ||
| 4 | AC_PREREQ(2.60) | 4 | AC_PREREQ(2.60) |
| 5 | -AC_INIT(qpdf,2.2.3) | 5 | +AC_INIT(qpdf,2.2.4) |
| 6 | 6 | ||
| 7 | AC_CONFIG_MACRO_DIR([m4]) | 7 | AC_CONFIG_MACRO_DIR([m4]) |
| 8 | AC_CONFIG_FILES([autoconf.mk]) | 8 | AC_CONFIG_FILES([autoconf.mk]) |
libqpdf/QPDF.cc
| @@ -15,7 +15,7 @@ | @@ -15,7 +15,7 @@ | ||
| 15 | #include <qpdf/QPDF_Null.hh> | 15 | #include <qpdf/QPDF_Null.hh> |
| 16 | #include <qpdf/QPDF_Dictionary.hh> | 16 | #include <qpdf/QPDF_Dictionary.hh> |
| 17 | 17 | ||
| 18 | -std::string QPDF::qpdf_version = "2.2.3"; | 18 | +std::string QPDF::qpdf_version = "2.2.4"; |
| 19 | 19 | ||
| 20 | void | 20 | void |
| 21 | QPDF::InputSource::setLastOffset(off_t offset) | 21 | QPDF::InputSource::setLastOffset(off_t offset) |
manual/qpdf-manual.xml
| @@ -5,8 +5,8 @@ | @@ -5,8 +5,8 @@ | ||
| 5 | <!ENTITY mdash "—"> | 5 | <!ENTITY mdash "—"> |
| 6 | <!ENTITY ndash "–"> | 6 | <!ENTITY ndash "–"> |
| 7 | <!ENTITY nbsp " "> | 7 | <!ENTITY nbsp " "> |
| 8 | -<!ENTITY swversion "2.2.3"> | ||
| 9 | -<!ENTITY lastreleased "April 30, 2011"> | 8 | +<!ENTITY swversion "2.2.4"> |
| 9 | +<!ENTITY lastreleased "June 25, 2011"> | ||
| 10 | ]> | 10 | ]> |
| 11 | <book> | 11 | <book> |
| 12 | <bookinfo> | 12 | <bookinfo> |
| @@ -2075,6 +2075,19 @@ print "\n"; | @@ -2075,6 +2075,19 @@ print "\n"; | ||
| 2075 | </para> | 2075 | </para> |
| 2076 | <variablelist> | 2076 | <variablelist> |
| 2077 | <varlistentry> | 2077 | <varlistentry> |
| 2078 | + <term>2.2.4: June 25, 2011</term> | ||
| 2079 | + <listitem> | ||
| 2080 | + <itemizedlist> | ||
| 2081 | + <listitem> | ||
| 2082 | + <para> | ||
| 2083 | + Fix installation and compilation issues; no functionality | ||
| 2084 | + changes. | ||
| 2085 | + </para> | ||
| 2086 | + </listitem> | ||
| 2087 | + </itemizedlist> | ||
| 2088 | + </listitem> | ||
| 2089 | + </varlistentry> | ||
| 2090 | + <varlistentry> | ||
| 2078 | <term>2.2.3: April 30, 2011</term> | 2091 | <term>2.2.3: April 30, 2011</term> |
| 2079 | <listitem> | 2092 | <listitem> |
| 2080 | <itemizedlist> | 2093 | <itemizedlist> |
qpdf.spec
| 1 | Summary: Command-line tools and library for transforming PDF files | 1 | Summary: Command-line tools and library for transforming PDF files |
| 2 | Name: qpdf | 2 | Name: qpdf |
| 3 | -Version: 2.2.3 | 3 | +Version: 2.2.4 |
| 4 | Release: 1%{?dist} | 4 | Release: 1%{?dist} |
| 5 | License: Artistic | 5 | License: Artistic |
| 6 | Group: System Environment/Libraries | 6 | Group: System Environment/Libraries |