summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlbert Astals Cid <aacid@kde.org>2021-01-02 17:54:42 +0100
committerAlbert Astals Cid <aacid@kde.org>2021-01-02 17:54:42 +0100
commit3b82fb789116c805b0a69f6bf3a72466a1e87308 (patch)
tree3abd1cc333c1222899ee601ce53b57941da15fd6
parentda3ffc4ece56abfd4387ad30d0707d46a81396fb (diff)
poppler 21.01.0poppler-21.01.0
-rw-r--r--CMakeLists.txt8
-rw-r--r--NEWS26
-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
6 files changed, 34 insertions, 8 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 1573249a..cf88eef1 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -33,12 +33,12 @@ if (ECM_FOUND)
endif()
endif()
-set(POPPLER_MAJOR_VERSION "20")
-set(POPPLER_MINOR_VERSION_STRING "12")
+set(POPPLER_MAJOR_VERSION "21")
+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}")
-set(POPPLER_MICRO_VERSION "1")
+set(POPPLER_MICRO_VERSION "0")
set(POPPLER_VERSION "${POPPLER_MAJOR_VERSION}.${POPPLER_MINOR_VERSION_STRING}.${POPPLER_MICRO_VERSION}")
set(CMAKE_CXX_STANDARD 14)
@@ -570,7 +570,7 @@ add_library(poppler STATIC ${poppler_SRCS})
else()
add_library(poppler ${poppler_SRCS})
endif()
-set_target_properties(poppler PROPERTIES VERSION 105.0.0 SOVERSION 105)
+set_target_properties(poppler PROPERTIES VERSION 106.0.0 SOVERSION 106)
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 a2dfab69..39ee7265 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,29 @@
+Release 21.01.0:
+ core:
+ * Faster routines for jpeg decoding
+ * Fix reading signatures in encrypted files
+ * Add white point correction when lcms is used
+ * JBIG2Stream: Fix byte counting
+ * Fix potential data loss if we try to fetch a non existing Ref after modifying the document
+ * Specifically use DeviceGray instead of DefaultGray for softmasks
+ * Fix various issues handling broken files
+
+ utils:
+ * pdftocairo: Setmode binary for windows
+ * pdfsig: Add hability to digitally sign files
+ * pdftoppm: add options to set DeviceGray/DeviceRGB/DeviceCMYK
+ * pdftops: add options to set DeviceGray/DeviceRGB/DeviceCMYK
+ * pdfimages: Account for rotation in PPI calculation
+
+ qt5:
+ * Add hability to digitally sign files
+
+ qt6:
+ * Add hability to digitally sign files
+
+ build system:
+ * Enable clang-tidy bugprone-signed-char-misuse
+
Release 20.12.1:
core:
* PSOutputDev: fixing regression in the rasterization code. Issue #1002
diff --git a/cpp/Doxyfile b/cpp/Doxyfile
index e1770c63..498ff0b8 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 = 20.12.1
+PROJECT_NUMBER = 21.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/CMakeLists.txt b/qt5/src/CMakeLists.txt
index ae055a12..afacd2c3 100644
--- a/qt5/src/CMakeLists.txt
+++ b/qt5/src/CMakeLists.txt
@@ -37,7 +37,7 @@ set(poppler_qt5_SRCS
poppler-version.cpp
)
add_library(poppler-qt5 ${poppler_qt5_SRCS})
-set_target_properties(poppler-qt5 PROPERTIES VERSION 1.26.0 SOVERSION 1)
+set_target_properties(poppler-qt5 PROPERTIES VERSION 1.27.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 8677da3e..9f67beec 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 = 20.12.1
+PROJECT_NUMBER = 21.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/CMakeLists.txt b/qt6/src/CMakeLists.txt
index f5042c52..a4cf8323 100644
--- a/qt6/src/CMakeLists.txt
+++ b/qt6/src/CMakeLists.txt
@@ -37,7 +37,7 @@ set(poppler_qt6_SRCS
poppler-version.cpp
)
add_library(poppler-qt6 ${poppler_qt6_SRCS})
-set_target_properties(poppler-qt6 PROPERTIES VERSION 1.0.0 SOVERSION 1)
+set_target_properties(poppler-qt6 PROPERTIES VERSION 1.1.0 SOVERSION 1)
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}")