[poppler] 2 commits - CMakeLists.txt configure.ac cpp/Doxyfile cpp/Makefile.am NEWS qt4/src

Albert Astals Cid aacid at kemper.freedesktop.org
Sun Feb 28 06:43:28 PST 2010


 CMakeLists.txt   |    2 +-
 NEWS             |   33 +++++++++++++++++++++++++++++++++
 configure.ac     |    2 +-
 cpp/Doxyfile     |    2 +-
 cpp/Makefile.am  |    5 +++++
 qt4/src/Doxyfile |    2 +-
 6 files changed, 42 insertions(+), 4 deletions(-)

New commits:
commit 6304b0d8959fccf96b030c757d78e845d04757e4
Author: Albert Astals Cid <aacid at kde.org>
Date:   Sun Feb 28 15:33:53 2010 +0100

    poppler 0.13.1

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 329a6de..b57c0a8 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -14,7 +14,7 @@ find_package(Threads)
 
 set(POPPLER_MAJOR_VERSION "0")
 set(POPPLER_MINOR_VERSION "13")
-set(POPPLER_MICRO_VERSION "0")
+set(POPPLER_MICRO_VERSION "1")
 set(POPPLER_VERSION "${POPPLER_MAJOR_VERSION}.${POPPLER_MINOR_VERSION}.${POPPLER_MICRO_VERSION}")
 
 # command line switches
diff --git a/NEWS b/NEWS
index 33e8f31..712074d 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,36 @@
+Release 0.13.1 (0.14 Alpha 2)
+
+	core:
+	 * New C++ frontend to interface with Poppler using only STL
+	 * Use the right matrix for the mask in drawMaskedImage in Cairo output device. Bug #16906
+	 * Fix downscaling images when document is rotated in Cairo output device. Bug #26264
+	 * GooVector rewrite, old version had "unknown" origins/license
+	 * Fix use after free in a error condition
+	 * Improve handling of broken commands. Bug #24575
+	 * Fix potential use after free in Cairo output device.
+	 * Fix regression in painting. Bug #26243
+	 * Improve handling of FontConfig. Bug #26544
+	 * Only assume the OC is not visible if it exists and is set to no. Bug #26532
+	 * Fix a potential crash in Splash font handling on out of memory conditions
+	 * Implement writeImgFile for splashModeXBGR8
+	 * Several speed increases (around 40% in some documents) in the Splash output device
+	 * Improve printing on the Cairo output device
+	 * Do not use '\' character in PostScript names
+	 * Omit writing of embedded fonts into temporary files in the Cairo output device. Bug #26694
+	 * Improve filtering of some images in the Cairo output device. Bugs #25268, #9860
+
+	utils:
+	 * pdftoppm: Only swap w with h if rotation is 90 or 270
+	
+	build system:
+	 * Add POPPLER_WITH_GDK in cmake build system. Bug #26247
+	 * Fix typo: "MULTITHREAD" -> "MULTITHREADED in cmake build system
+	 * Wrap #include <jpeglib.h> in extern "C" to fix build. Bug #26351
+	 * Add the Win32-specific ENABLE_RELOCATABLE option to cmake build system
+	 * Reflect that poppler-glib needs cairo now in cmake build system
+	 * Use pkgconfig to detect libpng on autotools build system
+	 * Detect the need for nanosleep in solaris in cmake build system. Bug #26650
+
 Release 0.13.0 (0.14 Alpha)
 
 	core:
diff --git a/configure.ac b/configure.ac
index 1f67c71..61f0655 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
 m4_define([poppler_version_major],[0])
 m4_define([poppler_version_minor],[13])
-m4_define([poppler_version_micro],[0])
+m4_define([poppler_version_micro],[1])
 m4_define([poppler_version],[poppler_version_major.poppler_version_minor.poppler_version_micro])
 
 AC_PREREQ(2.59)
diff --git a/cpp/Doxyfile b/cpp/Doxyfile
index b774e6b..2193872 100644
--- a/cpp/Doxyfile
+++ b/cpp/Doxyfile
@@ -31,7 +31,7 @@ PROJECT_NAME           = "Poppler CPP"
 # This could be handy for archiving the generated documentation or
 # if some version control system is used.
 
-PROJECT_NUMBER         = 0.13.0
+PROJECT_NUMBER         = 0.13.1
 
 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
 # base path where the generated documentation will be put.
diff --git a/qt4/src/Doxyfile b/qt4/src/Doxyfile
index d803e5e..444aa6c 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.13.0
+PROJECT_NUMBER         = 0.13.1
 
 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) 
 # base path where the generated documentation will be put. 
commit 9eac71862915c851c07075e3ca3af82eb9e4e775
Author: Albert Astals Cid <aacid at kde.org>
Date:   Sun Feb 28 15:33:19 2010 +0100

    Make sure the private headers end up in the tarball on make dist

diff --git a/cpp/Makefile.am b/cpp/Makefile.am
index 2e3f56d..f19428e 100644
--- a/cpp/Makefile.am
+++ b/cpp/Makefile.am
@@ -20,14 +20,19 @@ poppler_include_HEADERS =			\
 lib_LTLIBRARIES = libpoppler-cpp.la
 libpoppler_cpp_la_SOURCES =			\
 	poppler-document.cpp			\
+	poppler-document-private.h		\
 	poppler-embedded-file.cpp		\
+	poppler-embedded-file-private.h		\
 	poppler-font.cpp			\
 	poppler-global.cpp			\
 	poppler-page.cpp			\
+	poppler-page-private.h			\
 	poppler-page-transition.cpp		\
 	poppler-private.cpp			\
+	poppler-private.h			\
 	poppler-rectangle.cpp			\
 	poppler-toc.cpp				\
+	poppler-toc-private.h			\
 	poppler-version.cpp
 
 libpoppler_cpp_la_LIBADD = 			\


More information about the poppler mailing list