[poppler] Branch 'poppler-0.8' - 3 commits - CMakeLists.txt configure.ac msvc/config.h NEWS poppler/Object.h qt4/src

Albert Astals Cid aacid at kemper.freedesktop.org
Tue Apr 29 14:47:07 PDT 2008


 CMakeLists.txt   |    2 +-
 NEWS             |   13 +++++++++++++
 configure.ac     |    2 +-
 msvc/config.h    |    6 +++---
 poppler/Object.h |    2 +-
 qt4/src/Doxyfile |    2 +-
 6 files changed, 20 insertions(+), 7 deletions(-)

New commits:
commit 1376e2d89e56b6b8173feeb1c69d848973f30ec1
Author: Albert Astals Cid <aacid at kde.org>
Date:   Tue Apr 29 23:44:51 2008 +0200

    add lost return when adding kees patch

diff --git a/poppler/Object.h b/poppler/Object.h
index 19cec9d..c73d010 100644
--- a/poppler/Object.h
+++ b/poppler/Object.h
@@ -295,7 +295,7 @@ inline Object *Object::dictGetValNF(int i, Object *obj)
 #include "Stream.h"
 
 inline GBool Object::streamIs(char *dictType)
-  { OBJECT_TYPE_CHECK(objStream); stream->getDict()->is(dictType); }
+  { OBJECT_TYPE_CHECK(objStream); return stream->getDict()->is(dictType); }
 
 inline GBool Object::isStream(char *dictType)
   { return type == objStream && streamIs(dictType); }
commit ff0824d2af1be2510596ae2cde2fe4b1a6bfd3ae
Author: Albert Astals Cid <aacid at kde.org>
Date:   Sat Apr 26 12:26:01 2008 +0200

    Update version to 0.8.1

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 01a25b7..d81f8cb 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -11,7 +11,7 @@ find_package(PkgConfig)
 include(MacroEnsureVersion)
 include(MacroBoolTo01)
 
-set(POPPLER_VERSION "0.8.0")
+set(POPPLER_VERSION "0.8.1")
 
 # command line switches
 option(ENABLE_XPDF_HEADERS "Install unsupported xpdf headers." OFF)
diff --git a/configure.ac b/configure.ac
index 73054a5..079f233 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
 AC_PREREQ(2.59)
-AC_INIT(poppler, 0.8.0)
+AC_INIT(poppler, 0.8.1)
 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 70fa951..db8f7c9 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.8.0"
+#define PACKAGE_STRING "poppler 0.8.1"
 
 /* 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.8.0"
+#define PACKAGE_VERSION "0.8.1"
 
 /* Poppler data dir */
 #define POPPLER_DATADIR "/usr/local/share/poppler"
@@ -53,7 +53,7 @@
 /* #undef USE_EXCEPTIONS */
 
 /* Version number of package */
-#define VERSION "0.8.0"
+#define VERSION "0.8.1"
 
 #define snprintf _snprintf
 #define unlink _unlink
diff --git a/qt4/src/Doxyfile b/qt4/src/Doxyfile
index 89ddef1..49c2f2b 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.8.0
+PROJECT_NUMBER         = 0.8.1
 
 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) 
 # base path where the generated documentation will be put. 
commit c4b09e5169dd6f4a36f152a8a840cab747ac7688
Author: Albert Astals Cid <aacid at kde.org>
Date:   Sat Apr 26 12:25:45 2008 +0200

    Fill in the news for 0.8.1

diff --git a/NEWS b/NEWS
index e4e2e0b..1e2c8b2 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,16 @@
+Release 0.8.1
+
+	core:
+	 * Do not call FT_Done_Face on a live cairo_font_face_t as it might cause crashes
+	 * Do not take into account Colorspace resource subdictionary for image XObjects
+	 * Downsample 16 bit per component images to 8 bit per component so they render
+	
+	build system:
+	 * Link to pthread when the system needs it
+
+	windows:
+	 * Fix comparing against NULL instead against INVALID_HANDLE_VALUE when calling FindFirstFile
+
 Release 0.8.0
 
 	* Fix caching of members in the glib frontend causing issues with rendering


More information about the poppler mailing list