diff options
author | Albert Astals Cid <aacid@kde.org> | 2025-01-02 00:34:25 +0100 |
---|---|---|
committer | Albert Astals Cid <aacid@kde.org> | 2025-01-02 01:28:08 +0100 |
commit | 3ead1238555ce14dd0c619f1097d552307e6e40a (patch) | |
tree | 48a03bb814c0577c7dd7b925b0d3af4cc54447c1 | |
parent | 3a09377b42f69db66aa9233fb5f5584579508c8d (diff) |
poppler 25.01.0poppler-25.01.0
-rw-r--r-- | CMakeLists.txt | 6 | ||||
-rw-r--r-- | NEWS | 25 | ||||
-rw-r--r-- | cpp/CMakeLists.txt | 2 | ||||
-rw-r--r-- | cpp/Doxyfile | 2 | ||||
-rw-r--r-- | qt5/src/Doxyfile | 2 | ||||
-rw-r--r-- | qt6/src/Doxyfile | 2 |
6 files changed, 32 insertions, 7 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index a7ba5a81..c9910ec2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -39,8 +39,8 @@ if (ECM_FOUND) endif() endif() -set(POPPLER_MAJOR_VERSION "24") -set(POPPLER_MINOR_VERSION_STRING "12") +set(POPPLER_MAJOR_VERSION "25") +set(POPPLER_MINOR_VERSION_STRING "01") # 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}") @@ -608,7 +608,7 @@ ADD_GPERF_FILE(TimesItalicWidths) ADD_GPERF_FILE(TimesRomanWidths) ADD_GPERF_FILE(ZapfDingbatsWidths) -set(POPPLER_SOVERSION_NUMBER "144") +set(POPPLER_SOVERSION_NUMBER "145") set(LINKER_SCRIPT "${CMAKE_BINARY_DIR}/libpoppler.map") configure_file( @@ -1,3 +1,28 @@ +Release 25.01.0: + core: + * TextOutputDev: Better detect fakebold words + * TextOutputDev: Faster sorting algorithm + * Internal code improvements + * Fix crashes in malformed documents + + cpp: + * Remove rect parameter from image::copy, it was never implemented + + qt6: + * Fix crash in Submit Forms if document links to non existing field + + qt5: + * Fix crash in Submit Forms if document links to non existing field + + glib: + * mark transfer of poppler_page_get_selected_region + + utils: + * pdfdetach: Make -savefile work with Unicode strings. Issue #1540 + + build system: + * Don't update pdfsig.pot when POT-Creation-date is the only change + Release 24.12.0: core: * cairo: Fix rendering of JPX images with transparency diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt index 450846dc..f275b9c2 100644 --- a/cpp/CMakeLists.txt +++ b/cpp/CMakeLists.txt @@ -25,7 +25,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 1.0.0 SOVERSION 1) +set_target_properties(poppler-cpp PROPERTIES VERSION 2.0.0 SOVERSION 2) 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 172f86d5..17e8b77f 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.12.0 +PROJECT_NUMBER = 25.01.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 7a41a52b..d2986c7c 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.12.0 +PROJECT_NUMBER = 25.01.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 acf7a4a4..894b2ab1 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.12.0 +PROJECT_NUMBER = 25.01.0 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. |