summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlbert Astals Cid <aacid@kde.org>2018-12-06 17:22:06 +0100
committerAlbert Astals Cid <aacid@kde.org>2018-12-06 17:22:06 +0100
commit9414cc632c17afb7b78c559447b2044268f06cfc (patch)
tree7036b99a2cd7cb682a23f744fed39c7ec99d8b3e
parent8db8b4ead169e9ac3ad3f274828f6ad25951a6fb (diff)
Poppler 0.72.0poppler-0.72.0
-rw-r--r--CMakeLists.txt4
-rw-r--r--NEWS27
-rw-r--r--cpp/Doxyfile2
-rw-r--r--glib/CMakeLists.txt2
4 files changed, 31 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 88a53c47..fa86ea22 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -36,7 +36,7 @@ if (ECM_FOUND)
endif()
set(POPPLER_MAJOR_VERSION "0")
-set(POPPLER_MINOR_VERSION "71")
+set(POPPLER_MINOR_VERSION "72")
set(POPPLER_MICRO_VERSION "0")
set(POPPLER_VERSION "${POPPLER_MAJOR_VERSION}.${POPPLER_MINOR_VERSION}.${POPPLER_MICRO_VERSION}")
@@ -484,7 +484,7 @@ add_library(poppler STATIC ${poppler_SRCS})
else()
add_library(poppler ${poppler_SRCS})
endif()
-set_target_properties(poppler PROPERTIES VERSION 82.0.0 SOVERSION 82)
+set_target_properties(poppler PROPERTIES VERSION 83.0.0 SOVERSION 83)
if(MINGW)
get_target_property(POPPLER_SOVERSION poppler SOVERSION)
set_target_properties(poppler PROPERTIES SUFFIX "-${POPPLER_SOVERSION}${CMAKE_SHARED_LIBRARY_SUFFIX}")
diff --git a/NEWS b/NEWS
index dac411a6..40299059 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,30 @@
+Release 0.72.0:
+ core:
+ * Fix checkbox lacking AP not bein able to change state. Issue #655
+ * Draw line annotation endings (arrow, circle, ...)
+ * cairo: Don't use UNIQUE_ID for PS output, to avoid using PS memory on cairo >= 1.5.10
+ * Be more stubborn looking for a nssdb. Issue #669
+ * GooString::fromInt: Repair the return value.
+ * Minor performance improvements
+ * Avoid cycles in PDF parsing
+ * Stream::makeFilter: Fix memory leak
+ * Fix various issues with malformed files
+ * Rename GooString::getCString to GooString::c_str
+ * Regenerate UnicodeDecompTables.h from python 3.7.1
+
+ utils:
+ * pdfdetach: Check for valid embedded file before trying to save it. Issue #661
+ * pdfdetach: Check for valid file name of embedded file before using it to determine save path. Issue #660
+ * Fix typos in utils.
+
+ glib:
+ * Fix missing PopplerAttachment destructor call
+ * Support getting form widget additional actions.
+ * docs: Small improvements
+
+ qt5:
+ * Internally compile with -DQT_NO_SIGNALS_SLOTS_KEYWORDS
+
Release 0.71.0:
core:
* Replace the implementation of GooString by std::string but keep the exact interface intact.
diff --git a/cpp/Doxyfile b/cpp/Doxyfile
index ac16cf3d..bdf8e16b 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.71.0
+PROJECT_NUMBER = 0.72.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 beae865a..ecdd38ca 100644
--- a/glib/CMakeLists.txt
+++ b/glib/CMakeLists.txt
@@ -86,7 +86,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.10.0 SOVERSION 8)
+set_target_properties(poppler-glib PROPERTIES VERSION 8.11.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)