CMakeLists.txt | 4 ++-- NEWS | 28 ++++++++++++++++++++++++++++ cpp/Doxyfile | 2 +- qt5/src/Doxyfile | 2 +- qt6/src/Doxyfile | 2 +- 5 files changed, 33 insertions(+), 5 deletions(-)
New commits: commit bd6f20a62131baafcae40cbdb8475116f666f84f Author: Albert Astals Cid <[email protected]> Date: Fri Apr 1 14:55:28 2022 +0200 Poppler 22.04.0 diff --git a/CMakeLists.txt b/CMakeLists.txt index 7e7ff604..187a7d13 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 "03") +set(POPPLER_MINOR_VERSION_STRING "04") # 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 119.0.0 SOVERSION 119) +set_target_properties(poppler PROPERTIES VERSION 120.0.0 SOVERSION 120) 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 fab8fb5d..f07a28ac 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,31 @@ +Release 22.04.0: + core: + * Fix underline sometimes being drawn only partially + * Fix Adobe Reader not reading some of the contents we write correctly + * Fix code that workarounds some broken-ish files + * FoFiTrueType: Parse CFF2 fonts too + * FoFiTrueType: Support cmap types 2 and 13 + * Fix a few small memory leaks + * code improvements + + qt: + * Handle SaveAs named action + * Annotations: don't change the text color when changing the font + + utils: + * pdftotext: print creation and modification date when using htmlmeta param + + glib: + * Fix returning internal data of temporary strings + + cpp: + * Fix code incompatibility with MSVC + + build system: + * poppler internal library is no longer forced to static on MSVC + * Error out if iconv is not available and the cpp frontend is enabled + * Require FreeType 2.8 + Release 22.03.0: core: * Signature: Fix finding Signatures that are in Pages not not in the global the Forms object diff --git a/cpp/Doxyfile b/cpp/Doxyfile index 0fb8b7ae..5151d87f 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.03.0 +PROJECT_NUMBER = 22.04.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 656e94b5..8c18bc16 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.03.0 +PROJECT_NUMBER = 22.04.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 0a478861..2bab5d9f 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.03.0 +PROJECT_NUMBER = 22.04.0 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put.
