Popppler 22.02.0
diff --git a/CMakeLists.txt b/CMakeLists.txt index 645560d..9a0dcb1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt
@@ -46,7 +46,7 @@ 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 @@ 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 a065c5e..06b5903 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 1d814c5..46bc25b 100644 --- a/cpp/Doxyfile +++ b/cpp/Doxyfile
@@ -31,7 +31,7 @@ # 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 f5130e3..6e56cbc 100644 --- a/glib/CMakeLists.txt +++ b/glib/CMakeLists.txt
@@ -90,7 +90,7 @@ ) 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 625aa75..187c3b1 100644 --- a/qt5/src/CMakeLists.txt +++ b/qt5/src/CMakeLists.txt
@@ -38,7 +38,7 @@ ) 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 bd8963e..9f9e652 100644 --- a/qt5/src/Doxyfile +++ b/qt5/src/Doxyfile
@@ -31,7 +31,7 @@ # 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 1ebc790..7069b90 100644 --- a/qt6/src/CMakeLists.txt +++ b/qt6/src/CMakeLists.txt
@@ -38,7 +38,7 @@ ) 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 fb0ab85..5291154 100644 --- a/qt6/src/Doxyfile +++ b/qt6/src/Doxyfile
@@ -31,7 +31,7 @@ # 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.