[poppler] 2 commits - CMakeLists.txt configure.ac msvc/config.h NEWS poppler/OptionalContent.cc qt4/src
Albert Astals Cid
aacid at kemper.freedesktop.org
Thu Oct 9 13:53:28 PDT 2008
CMakeLists.txt | 2 +-
NEWS | 16 ++++++++++++++++
configure.ac | 2 +-
msvc/config.h | 6 +++---
poppler/OptionalContent.cc | 2 +-
qt4/src/Doxyfile | 2 +-
6 files changed, 23 insertions(+), 7 deletions(-)
New commits:
commit d7442c90206d4b7a8ebc58f995647eb87ac35f42
Author: Albert Astals Cid <aacid at kde.org>
Date: Thu Oct 9 22:53:00 2008 +0200
If Name is a Ref we want to get the String it references, not the Ref
diff --git a/poppler/OptionalContent.cc b/poppler/OptionalContent.cc
index 0e2a65e..204872b 100644
--- a/poppler/OptionalContent.cc
+++ b/poppler/OptionalContent.cc
@@ -288,7 +288,7 @@ bool OCGs::anyOff( Array *ocgArray )
OptionalContentGroup::OptionalContentGroup(Dict *ocgDict, XRef *xrefA) : m_name(NULL)
{
Object ocgName;
- ocgDict->lookupNF("Name", &ocgName);
+ ocgDict->lookup("Name", &ocgName);
if (!ocgName.isString()) {
error(-1, "Expected the name of the OCG, but wasn't able to find it, or it isn't a String");
} else {
commit 93f8dd9e837557bbfc0f058a664c356e3d6e82c0
Author: Albert Astals Cid <aacid at kde.org>
Date: Thu Oct 9 21:28:27 2008 +0200
Poppler 0.10.0
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 3ae69d7..640492c 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -11,7 +11,7 @@ find_package(PkgConfig)
include(MacroEnsureVersion)
include(MacroBoolTo01)
-set(POPPLER_VERSION "0.9.3")
+set(POPPLER_VERSION "0.10.0")
# command line switches
option(ENABLE_XPDF_HEADERS "Install unsupported xpdf headers." OFF)
diff --git a/NEWS b/NEWS
index c7af7c0..4438b75 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,19 @@
+Release 0.10.0
+
+ core:
+ * Fix crashes on PDF using Stitching or Axial Shading painting
+ * Fix rendering of PDF with Type1 fonts that have more than
+ one encoding definition per line
+ * Do not try to save documents that have Encryption as we
+ do not support that and the user ended with a broken file
+ * Fix crash on files with OptionalContentGroup but no Name
+
+ Qt4:
+ * Fix the area of the links to be correctly reported on rotated documents
+
+ misc:
+ * Mingw+Msys should work
+
Release 0.9.3 (0.10 RC 2)
core:
diff --git a/configure.ac b/configure.ac
index d2bb822..7ecc037 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
AC_PREREQ(2.59)
-AC_INIT(poppler, 0.9.3)
+AC_INIT(poppler, 0.10.0)
AM_INIT_AUTOMAKE([foreign])
AM_CONFIG_HEADER(config.h)
AM_CONFIG_HEADER(poppler/poppler-config.h)
diff --git a/msvc/config.h b/msvc/config.h
index 1edaf84..f3d563d 100644
--- a/msvc/config.h
+++ b/msvc/config.h
@@ -32,13 +32,13 @@
#define PACKAGE_NAME "poppler"
/* Define to the full name and version of this package. */
-#define PACKAGE_STRING "poppler 0.9.3"
+#define PACKAGE_STRING "poppler 0.10.0"
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "poppler"
/* Define to the version of this package. */
-#define PACKAGE_VERSION "0.9.3"
+#define PACKAGE_VERSION "0.10.0"
/* Poppler data dir */
#define POPPLER_DATADIR "/usr/local/share/poppler"
@@ -53,7 +53,7 @@
/* #undef USE_EXCEPTIONS */
/* Version number of package */
-#define VERSION "0.9.3"
+#define VERSION "0.10.0"
#define snprintf _snprintf
#define unlink _unlink
diff --git a/qt4/src/Doxyfile b/qt4/src/Doxyfile
index c6c9326..cdf57e4 100644
--- a/qt4/src/Doxyfile
+++ b/qt4/src/Doxyfile
@@ -31,7 +31,7 @@ PROJECT_NAME = "Poppler Qt4 "
# This could be handy for archiving the generated documentation or
# if some version control system is used.
-PROJECT_NUMBER = 0.9.3
+PROJECT_NUMBER = 0.10.0
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.
More information about the poppler
mailing list