diff options
author | Albert Astals Cid <aacid@kde.org> | 2010-06-08 20:43:11 +0100 |
---|---|---|
committer | Albert Astals Cid <aacid@kde.org> | 2010-06-08 20:43:11 +0100 |
commit | f9e6cb9647981f7afbb20261b3ccedaf003657d2 (patch) | |
tree | bffaa1eb9ab20f289970599f1be0bb6de2cdece0 | |
parent | 963afdc39153fee69ecb939c98deeef4f64638de (diff) |
0.14.0poppler-0.14.0
-rw-r--r-- | CMakeLists.txt | 4 | ||||
-rw-r--r-- | NEWS | 18 | ||||
-rw-r--r-- | configure.ac | 4 | ||||
-rw-r--r-- | cpp/Doxyfile | 2 | ||||
-rw-r--r-- | qt4/src/Doxyfile | 2 |
5 files changed, 24 insertions, 6 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 729532db..cf8a47ae 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -13,8 +13,8 @@ include(MacroBoolTo01) find_package(Threads) set(POPPLER_MAJOR_VERSION "0") -set(POPPLER_MINOR_VERSION "13") -set(POPPLER_MICRO_VERSION "4") +set(POPPLER_MINOR_VERSION "14") +set(POPPLER_MICRO_VERSION "0") set(POPPLER_VERSION "${POPPLER_MAJOR_VERSION}.${POPPLER_MINOR_VERSION}.${POPPLER_MICRO_VERSION}") # command line switches @@ -1,3 +1,21 @@ +Release 0.14.0 + + core: + * Fix crash when parsing pdf with broken JBIG2Stream (Bug #28170) + * Do not follow loops blindly when parsing XRef (Bug #28172) + * Allow quality & progressive mode to be utilised in JpegWriter + * Fix potential assert in Lexer code (KDE bug #240208) + * Fix opening of files whose /P is stored as unsigned integer + * Do not exit() when trying to allocate memory for the XRef fails + + cpp: + * Minor bugfixes + * Documentation improvements + + build system: + * Fix build in mingw32 when using autotools + * Preserve compiler flags when using cmake + Release 0.13.4 (0.14 RC 1) core: diff --git a/configure.ac b/configure.ac index 7979bca1..48a3f154 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],[4]) +m4_define([poppler_version_minor],[14]) +m4_define([poppler_version_micro],[0]) 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 e64c72e1..c06415a8 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.4 +PROJECT_NUMBER = 0.14.0 # 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 46427070..5e9991ab 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.4 +PROJECT_NUMBER = 0.14.0 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. |