summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlbert Astals Cid <aacid@kde.org>2022-05-03 22:18:46 +0200
committerAlbert Astals Cid <aacid@kde.org>2022-05-03 22:31:50 +0200
commitd2dd9c322542eb7ea9e3e0b8324b33b3af9d8b1e (patch)
tree98bc8590b9677a7dd5de65f7855bfdc00bbe03fa
parentac9b736c3f20704a41db9102589fa259abb26891 (diff)
poppler 22.05.0poppler-22.05.0
-rw-r--r--CMakeLists.txt4
-rw-r--r--NEWS20
-rw-r--r--cpp/CMakeLists.txt2
-rw-r--r--cpp/Doxyfile2
-rw-r--r--qt5/src/Doxyfile2
-rw-r--r--qt6/src/Doxyfile2
6 files changed, 26 insertions, 6 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 187a7d13..1cb16f75 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -39,7 +39,7 @@ if (ECM_FOUND)
endif()
set(POPPLER_MAJOR_VERSION "22")
-set(POPPLER_MINOR_VERSION_STRING "04")
+set(POPPLER_MINOR_VERSION_STRING "05")
# 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}")
@@ -576,7 +576,7 @@ add_definitions(-D_CRT_SECURE_NO_WARNINGS)
endif()
add_library(poppler ${poppler_SRCS})
generate_export_header(poppler BASE_NAME poppler-private EXPORT_FILE_NAME "${CMAKE_CURRENT_BINARY_DIR}/poppler_private_export.h")
-set_target_properties(poppler PROPERTIES VERSION 120.0.0 SOVERSION 120)
+set_target_properties(poppler PROPERTIES VERSION 121.0.0 SOVERSION 121)
if(MINGW AND BUILD_SHARED_LIBS)
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 f07a28ac..67e53622 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,23 @@
+Release 22.05.0:
+ core:
+ * Annotations: Make sure we embed fonts for the FreeText annots
+ * Forms: Make sure we embedd fonts as needed
+ * Signatures: Make sure we embed the needed fonts
+ * CairoOutputDev: color type 3 fonts
+ * fix two bugs in multiline find_text()
+ * code improvements
+
+ utils:
+ * pdftotext: added TSV mode
+ * HtmlOutputDev: don't use png.h
+
+ cpp:
+ * Use time_t for time
+ * Add page_transition::durationReal
+
+ qt:
+ * Pass leftFontSize down to `FormWidgetSignature::signDocumentWithAppearence`
+
Release 22.04.0:
core:
* Fix underline sometimes being drawn only partially
diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt
index c37936b6..daf7e5c8 100644
--- a/cpp/CMakeLists.txt
+++ b/cpp/CMakeLists.txt
@@ -26,7 +26,7 @@ set(poppler_cpp_SRCS
add_library(poppler-cpp ${poppler_cpp_SRCS})
generate_export_header(poppler-cpp BASE_NAME poppler-cpp EXPORT_FILE_NAME "${CMAKE_CURRENT_BINARY_DIR}/poppler_cpp_export.h")
-set_target_properties(poppler-cpp PROPERTIES VERSION 0.9.0 SOVERSION 0)
+set_target_properties(poppler-cpp PROPERTIES VERSION 0.10.0 SOVERSION 0)
if(MINGW AND BUILD_SHARED_LIBS)
get_target_property(POPPLER_CPP_SOVERSION poppler-cpp SOVERSION)
set_target_properties(poppler-cpp PROPERTIES SUFFIX "-${POPPLER_CPP_SOVERSION}${CMAKE_SHARED_LIBRARY_SUFFIX}")
diff --git a/cpp/Doxyfile b/cpp/Doxyfile
index 5151d87f..cf5f311b 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 = 22.04.0
+PROJECT_NUMBER = 22.05.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/qt5/src/Doxyfile b/qt5/src/Doxyfile
index 8c18bc16..b90d9f74 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 = 22.04.0
+PROJECT_NUMBER = 22.05.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/qt6/src/Doxyfile b/qt6/src/Doxyfile
index 2bab5d9f..f210371b 100644
--- a/qt6/src/Doxyfile
+++ b/qt6/src/Doxyfile
@@ -31,7 +31,7 @@ PROJECT_NAME = "Poppler Qt6"
# This could be handy for archiving the generated documentation or
# if some version control system is used.
-PROJECT_NUMBER = 22.04.0
+PROJECT_NUMBER = 22.05.0
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.