CMakeLists.txt | 2 +- NEWS | 23 +++++++++++++++++++++++ configure.ac | 2 +- cpp/Doxyfile | 2 +- qt4/src/Doxyfile | 2 +- splash/Splash.cc | 2 +- 6 files changed, 28 insertions(+), 5 deletions(-)
New commits: commit 5f96b093e15cdca01cb2140140b594ef2d816285 Author: Albert Astals Cid <[email protected]> Date: Thu Jul 8 20:28:24 2010 +0100 0.14.1 diff --git a/CMakeLists.txt b/CMakeLists.txt index cf8a47a..0e24a73 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,7 +14,7 @@ find_package(Threads) set(POPPLER_MAJOR_VERSION "0") set(POPPLER_MINOR_VERSION "14") -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 f4d7ac6..9703483 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,26 @@ +Release 0.14.1 + + core: + * Add ObjectStream caching, makes opening some files ten times faster (Bug #26759) + * Fix crash when writing to negative coordinates (Bug #28480) + * Check objects are the type we want them to be when parsing GfxICCBasedColorSpace + * Optimize Splash::compositeBackground + * Optimize color space calculations by using sqrt instead of pow 0.5 + * Fix crash in JBIG2Stream with malformed documents + + build system: + * Make sure we ship two needed cmake files + * Do not distribute glib/poppler-features.h and poppler/poppler-config.h + * Improve compilation with Sun Studio + * Fix linking of the cpp frontend when using autotools + + glib: + * Fix links/annots area for some documents (Bug #28588) + * Fix poppler_page_find_tex() when called more than once (Bug #27927) + + utils: + * Add -cropbox to pdftoppm manual + Release 0.14.0 core: diff --git a/configure.ac b/configure.ac index 48a3f15..22767f1 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ m4_define([poppler_version_major],[0]) m4_define([poppler_version_minor],[14]) -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 c06415a..8d942d3 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.14.0 +PROJECT_NUMBER = 0.14.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 5e9991a..8fc8f07 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.14.0 +PROJECT_NUMBER = 0.14.1 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. commit 6274551cf1092d2e9f75505f9b4fd88139988964 Author: Albert Astals Cid <[email protected]> Date: Thu Jul 8 20:27:42 2010 +0100 compile++ diff --git a/splash/Splash.cc b/splash/Splash.cc index 8af2859..075971d 100644 --- a/splash/Splash.cc +++ b/splash/Splash.cc @@ -43,7 +43,7 @@ #include "Splash.h" // to get the unlikely definition -#include "Object.h" +#include "poppler/Object.h" //------------------------------------------------------------------------ _______________________________________________ poppler mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/poppler
