[poppler] CMakeLists.txt cpp/Doxyfile glib/CMakeLists.txt NEWS qt5/src qt6/src
GitLab Mirror
gitlab-mirror at kemper.freedesktop.org
Tue Feb 1 22:57:10 UTC 2022
CMakeLists.txt | 4 ++--
NEWS | 26 ++++++++++++++++++++++++++
cpp/Doxyfile | 2 +-
glib/CMakeLists.txt | 2 +-
qt5/src/CMakeLists.txt | 2 +-
qt5/src/Doxyfile | 2 +-
qt6/src/CMakeLists.txt | 2 +-
qt6/src/Doxyfile | 2 +-
8 files changed, 34 insertions(+), 8 deletions(-)
New commits:
commit 57c948fa0656ef3ec3cbf24581460da4a9441106
Author: Albert Astals Cid <aacid at kde.org>
Date: Tue Feb 1 23:30:47 2022 +0100
Popppler 22.02.0
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 645560d4..9a0dcb15 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -46,7 +46,7 @@ if (ECM_FOUND)
endif()
set(POPPLER_MAJOR_VERSION "22")
-set(POPPLER_MINOR_VERSION_STRING "01")
+set(POPPLER_MINOR_VERSION_STRING "02")
# 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}")
@@ -591,7 +591,7 @@ else()
add_library(poppler ${poppler_SRCS})
endif()
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 117.0.0 SOVERSION 117)
+set_target_properties(poppler PROPERTIES VERSION 118.0.0 SOVERSION 118)
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 a065c5e7..06b5903b 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,29 @@
+Release 22.02.0:
+ core:
+ * Signature: Add a way to detect unsigned FormFieldSignature
+ * Signature: Suport background image when using left and right text
+ * Signature: Fix path where to search for Firefox NSS in Windows
+ * Signature: Fix NSS code to work correctly in Windows/Android
+ * Count only signature fields in PDFDoc::getNumSignatureFields
+ * Minor code improvements
+
+ qt:
+ * Allow signing unsigned signature fields
+ * Allow passing a background image for the signature when signing
+ * Allow passing the document password when signing
+ * Fix leftFontSize being ignored when signing
+
+ glib:
+ * try with utf8 password if latin1 fails
+ * New method for getting all signature fields of a document
+ * Fix compile with MSVC
+
+ utils:
+ * pdfsig: Fix compile with MSVC
+
+ build system:
+ * Fix NSS cmake check for MSVC
+
Release 22.01.0:
core:
* Allow local (relative to dll) fonts dir on Windows
diff --git a/cpp/Doxyfile b/cpp/Doxyfile
index 1d814c5d..46bc25bc 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.01.0
+PROJECT_NUMBER = 22.02.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 f5130e3c..6e56cbc5 100644
--- a/glib/CMakeLists.txt
+++ b/glib/CMakeLists.txt
@@ -90,7 +90,7 @@ set(poppler_glib_generated_SRCS
)
add_library(poppler-glib ${poppler_glib_SRCS} ${poppler_glib_generated_SRCS})
generate_export_header(poppler-glib EXPORT_MACRO_NAME POPPLER_PUBLIC EXPORT_FILE_NAME "${CMAKE_CURRENT_BINARY_DIR}/poppler-macros.h")
-set_target_properties(poppler-glib PROPERTIES VERSION 8.22.0 SOVERSION 8)
+set_target_properties(poppler-glib PROPERTIES VERSION 8.23.0 SOVERSION 8)
if(MINGW AND BUILD_SHARED_LIBS)
get_target_property(POPPLER_GLIB_SOVERSION poppler-glib SOVERSION)
set_target_properties(poppler-glib PROPERTIES SUFFIX "-${POPPLER_GLIB_SOVERSION}${CMAKE_SHARED_LIBRARY_SUFFIX}")
diff --git a/qt5/src/CMakeLists.txt b/qt5/src/CMakeLists.txt
index 625aa759..187c3b1f 100644
--- a/qt5/src/CMakeLists.txt
+++ b/qt5/src/CMakeLists.txt
@@ -38,7 +38,7 @@ set(poppler_qt5_SRCS
)
add_library(poppler-qt5 ${poppler_qt5_SRCS})
generate_export_header(poppler-qt5 BASE_NAME poppler-qt5 EXPORT_FILE_NAME "${CMAKE_CURRENT_BINARY_DIR}/poppler-export.h")
-set_target_properties(poppler-qt5 PROPERTIES VERSION 1.30.0 SOVERSION 1)
+set_target_properties(poppler-qt5 PROPERTIES VERSION 1.31.0 SOVERSION 1)
if(MINGW AND BUILD_SHARED_LIBS)
get_target_property(POPPLER_QT5_SOVERSION poppler-qt5 SOVERSION)
set_target_properties(poppler-qt5 PROPERTIES SUFFIX "-${POPPLER_QT5_SOVERSION}${CMAKE_SHARED_LIBRARY_SUFFIX}")
diff --git a/qt5/src/Doxyfile b/qt5/src/Doxyfile
index bd8963e7..9f9e652d 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.01.0
+PROJECT_NUMBER = 22.02.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/CMakeLists.txt b/qt6/src/CMakeLists.txt
index 1ebc7904..7069b90f 100644
--- a/qt6/src/CMakeLists.txt
+++ b/qt6/src/CMakeLists.txt
@@ -38,7 +38,7 @@ set(poppler_qt6_SRCS
)
add_library(poppler-qt6 ${poppler_qt6_SRCS})
generate_export_header(poppler-qt6 BASE_NAME poppler-qt6 EXPORT_FILE_NAME "${CMAKE_CURRENT_BINARY_DIR}/poppler-export.h")
-set_target_properties(poppler-qt6 PROPERTIES VERSION 3.1.0 SOVERSION 3)
+set_target_properties(poppler-qt6 PROPERTIES VERSION 3.2.0 SOVERSION 3)
if(MINGW AND BUILD_SHARED_LIBS)
get_target_property(POPPLER_QT6_SOVERSION poppler-qt6 SOVERSION)
set_target_properties(poppler-qt6 PROPERTIES SUFFIX "-${POPPLER_QT6_SOVERSION}${CMAKE_SHARED_LIBRARY_SUFFIX}")
diff --git a/qt6/src/Doxyfile b/qt6/src/Doxyfile
index fb0ab853..52911544 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.01.0
+PROJECT_NUMBER = 22.02.0
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.
More information about the poppler
mailing list