diff options
author | Albert Astals Cid <aacid@kde.org> | 2024-04-01 09:49:15 +0200 |
---|---|---|
committer | Albert Astals Cid <aacid@kde.org> | 2024-04-01 09:49:15 +0200 |
commit | 0aa1fe5c30a6c467c91bad8d81bd6c2f57fcb726 (patch) | |
tree | 83ac6b2e9563184fbe4bca08cfff7c16d87cb167 | |
parent | 199ccde44be1879bf5caa8bcbc050c1ef0327849 (diff) |
poppler 24.04.0poppler-24.04.0
-rw-r--r-- | CMakeLists.txt | 4 | ||||
-rw-r--r-- | NEWS | 16 | ||||
-rw-r--r-- | cpp/Doxyfile | 2 | ||||
-rw-r--r-- | qt5/src/Doxyfile | 2 | ||||
-rw-r--r-- | qt6/src/Doxyfile | 2 |
5 files changed, 21 insertions, 5 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 95a105e1..3bd869a9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -40,7 +40,7 @@ if (ECM_FOUND) endif() set(POPPLER_MAJOR_VERSION "24") -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}") @@ -614,7 +614,7 @@ ADD_GPERF_FILE(TimesItalicWidths) ADD_GPERF_FILE(TimesRomanWidths) ADD_GPERF_FILE(ZapfDingbatsWidths) -set(POPPLER_SOVERSION_NUMBER "135") +set(POPPLER_SOVERSION_NUMBER "136") set(LINKER_SCRIPT "${CMAKE_BINARY_DIR}/libpoppler.map") configure_file( @@ -1,3 +1,19 @@ +Release 24.04.0: + core: + * Optimize page text extraction speed + * Fix clipping path handling in some files. Issue #739 + * Fix regression in text selection + * Fix text search across lines between paragraphs + + qt6: + * Fix crash in SoundObject::data + + utils: + * pdfsig: Add Catalan translation + + build system: + * Build code as C++20 + Release 24.03.0: core: * Fix opening some malformed files. Issue #1447 diff --git a/cpp/Doxyfile b/cpp/Doxyfile index d04ab98d..4da163eb 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 = 24.03.0 +PROJECT_NUMBER = 24.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 f8ae14f6..f0da9661 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 = 24.03.0 +PROJECT_NUMBER = 24.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 923e11bf..a2528432 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 = 24.03.0 +PROJECT_NUMBER = 24.04.0 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. |