summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlbert Astals Cid <aacid@kde.org>2020-09-01 22:53:33 +0200
committerAlbert Astals Cid <aacid@kde.org>2020-09-01 22:53:33 +0200
commit2dbd1e0ac8102ec12eb6026df6708ef7c38fc05d (patch)
tree15e86835f0aca15c732e9e9cbba433d608508820
parentb82d0e17fb8d26f87a51d79046364d141187bd61 (diff)
poppler 20.09.0poppler-20.09.0
-rw-r--r--CMakeLists.txt2
-rw-r--r--NEWS31
-rw-r--r--cpp/Doxyfile2
-rw-r--r--glib/CMakeLists.txt2
-rw-r--r--qt5/src/Doxyfile2
5 files changed, 35 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 89fa15f0..b5428237 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -36,7 +36,7 @@ if (ECM_FOUND)
endif()
set(POPPLER_MAJOR_VERSION "20")
-set(POPPLER_MINOR_VERSION_STRING "08")
+set(POPPLER_MINOR_VERSION_STRING "09")
# We want the string version to have 08 but the integer version can't have a leading 0 since otherwise it's considered octal
# So strip a leading 0 if found in POPPLER_MINOR_VERSION_STRING and store the result in POPPLER_MINOR_VERSION
string(REGEX REPLACE "^0?(.+)$" "\\1" POPPLER_MINOR_VERSION "${POPPLER_MINOR_VERSION_STRING}")
diff --git a/NEWS b/NEWS
index 2f97d35d..4b270914 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,34 @@
+Release 20.09.0:
+ core:
+ * Compability fix for Forms
+ * Fix fetching of Objects failing in some cases
+ * Fix clearing date in Annot setModified/setDate
+ * TextSelectionPainter: support glyphless fonts
+ * Splash: Don't try read past end of image
+ * avoid abort() on large memory allocation
+ * Fix memory leak on broken files
+ * Fix potential invalid memory read
+ * Small code improvements
+
+ qt5:
+ * Document TextAnnotation::inplaceAlign
+ * Make Annotation::setModification/CreationDate work on existing annots
+ * Be a bit more stubborn converting dates that come from xml
+ * Clean as many null characters from the end as possible when converting strings
+
+ glib:
+ * Add accessor functions for PopplerAttachment
+ * Deprecate PopplerAttachment GTime fields
+ * Deprecate PopplerDocument date properties
+
+ utils:
+ * pdftoppm: report error and exit if output file cannot be written
+ * Document that PDF-file can be '-' to read it from stdin
+
+ build system:
+ * cmake: Modern way to link against libpng, zlib and libtiff
+ * cmake: Remove stray support for lcms1 in pdftocairo
+
Release 20.08.0:
core:
* Sub-page objects: initialize clip max values considering the render resolution. Issue #937
diff --git a/cpp/Doxyfile b/cpp/Doxyfile
index d17f2456..563ce4a5 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 = 20.08.0
+PROJECT_NUMBER = 20.09.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/glib/CMakeLists.txt b/glib/CMakeLists.txt
index e92a9677..75402ccd 100644
--- a/glib/CMakeLists.txt
+++ b/glib/CMakeLists.txt
@@ -87,7 +87,7 @@ set(poppler_glib_generated_SRCS
${CMAKE_SOURCE_DIR}/poppler/CairoRescaleBox.cc
)
add_library(poppler-glib ${poppler_glib_SRCS} ${poppler_glib_generated_SRCS})
-set_target_properties(poppler-glib PROPERTIES VERSION 8.18.0 SOVERSION 8)
+set_target_properties(poppler-glib PROPERTIES VERSION 8.19.0 SOVERSION 8)
set_target_properties(poppler-glib PROPERTIES C_VISIBILITY_PRESET hidden)
set_target_properties(poppler-glib PROPERTIES CXX_VISIBILITY_PRESET hidden)
set_target_properties(poppler-glib PROPERTIES VISIBILITY_INLINES_HIDDEN 1)
diff --git a/qt5/src/Doxyfile b/qt5/src/Doxyfile
index 9d8afeb3..a07f6760 100644
--- a/qt5/src/Doxyfile
+++ b/qt5/src/Doxyfile
@@ -31,7 +31,7 @@ PROJECT_NAME = "Poppler Qt5"
# This could be handy for archiving the generated documentation or
# if some version control system is used.
-PROJECT_NUMBER = 20.08.0
+PROJECT_NUMBER = 20.09.0
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.