summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlbert Astals Cid <aacid@kde.org>2023-09-05 23:15:14 +0200
committerAlbert Astals Cid <aacid@kde.org>2023-09-05 23:15:14 +0200
commit6e2c0fe0434cfadc3d161e7cd348212f644b725e (patch)
tree8bcb69117bb715f51282de2704ef68d2181fc684
parent73985c62006b7faa0fd46a1bc83e578809da7ae2 (diff)
poppler 23.09.0poppler-23.09.0
-rw-r--r--CMakeLists.txt4
-rw-r--r--NEWS20
-rw-r--r--cpp/Doxyfile2
-rw-r--r--qt5/src/CMakeLists.txt2
-rw-r--r--qt5/src/Doxyfile2
-rw-r--r--qt6/src/CMakeLists.txt2
-rw-r--r--qt6/src/Doxyfile2
7 files changed, 27 insertions, 7 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 423e9a85..4c57a783 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -40,7 +40,7 @@ if (ECM_FOUND)
endif()
set(POPPLER_MAJOR_VERSION "23")
-set(POPPLER_MINOR_VERSION_STRING "08")
+set(POPPLER_MINOR_VERSION_STRING "09")
# 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}")
@@ -624,7 +624,7 @@ ADD_GPERF_FILE(TimesItalicWidths)
ADD_GPERF_FILE(TimesRomanWidths)
ADD_GPERF_FILE(ZapfDingbatsWidths)
-set(POPPLER_SOVERSION_NUMBER "130")
+set(POPPLER_SOVERSION_NUMBER "131")
set(LINKER_SCRIPT "${CMAKE_BINARY_DIR}/libpoppler.map")
configure_file(
diff --git a/NEWS b/NEWS
index 07b775b1..7f3966b0 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,23 @@
+Release 23.09.0:
+ core:
+ * Add Android-specific font matching functionality
+ * Fix digital signatures for NeedAppearance=true
+ * Forms: Don't look up same glyph multiple times
+ * Provide the key location for certificates you can sign with
+ * Add ToUnicode support for similarequal
+ * Fix crash on malformed files
+
+ qt5:
+ * Provide the key location for certificates you can sign with
+ * Allow to force a rasterized overprint preview during PS conversion
+
+ qt6:
+ * Provide the key location for certificates you can sign with
+ * Allow to force a rasterized overprint preview during PS conversion
+
+ pdfsig:
+ * Provide the key location for certificates you can sign with
+
Release 23.08.0:
core:
* Fix GWG 19.2 - DeviceN Overprint (White)
diff --git a/cpp/Doxyfile b/cpp/Doxyfile
index 3e82d3e9..03a8c071 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 = 23.08.0
+PROJECT_NUMBER = 23.09.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/CMakeLists.txt b/qt5/src/CMakeLists.txt
index 53568ccb..e4762028 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.32.0 SOVERSION 1)
+set_target_properties(poppler-qt5 PROPERTIES VERSION 1.33.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 a4efffd5..815faf5d 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 = 23.08.0
+PROJECT_NUMBER = 23.09.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 f2fa00af..1bd83fb3 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.3.0 SOVERSION 3)
+set_target_properties(poppler-qt6 PROPERTIES VERSION 3.4.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 2db90da5..6eb99cdc 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 = 23.08.0
+PROJECT_NUMBER = 23.09.0
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.