summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlbert Astals Cid <aacid@kde.org>2020-04-27 23:26:55 +0200
committerAlbert Astals Cid <aacid@kde.org>2020-04-27 23:26:55 +0200
commit448f8e9830cb0420728e844723770a8cfb3327c0 (patch)
treec52771cdbf19d90372343d1956b325a8aeae839a
parentb7aed3eb2950c1389ab81a2261eee2e2221050f6 (diff)
Poppler 0.88.0poppler-0.88.0
-rw-r--r--CMakeLists.txt4
-rw-r--r--NEWS26
-rw-r--r--cpp/CMakeLists.txt2
-rw-r--r--cpp/Doxyfile2
-rw-r--r--glib/CMakeLists.txt2
-rw-r--r--qt5/src/CMakeLists.txt2
-rw-r--r--qt5/src/Doxyfile2
7 files changed, 33 insertions, 7 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index dbe6a089..45d89346 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -36,7 +36,7 @@ if (ECM_FOUND)
endif()
set(POPPLER_MAJOR_VERSION "0")
-set(POPPLER_MINOR_VERSION "87")
+set(POPPLER_MINOR_VERSION "88")
set(POPPLER_MICRO_VERSION "0")
set(POPPLER_VERSION "${POPPLER_MAJOR_VERSION}.${POPPLER_MINOR_VERSION}.${POPPLER_MICRO_VERSION}")
@@ -534,7 +534,7 @@ add_library(poppler STATIC ${poppler_SRCS})
else()
add_library(poppler ${poppler_SRCS})
endif()
-set_target_properties(poppler PROPERTIES VERSION 98.0.0 SOVERSION 98)
+set_target_properties(poppler PROPERTIES VERSION 99.0.0 SOVERSION 99)
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 ddca29f6..a2c4d102 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,29 @@
+Release 0.88.0:
+ core:
+ * Support Widget Annotation Buttons not linked to any Form
+ * SplashOuputDev: Use stroking opacity when clipping to a stroke path
+ * Handle 1 bit RGB images in ICC colorspace
+ * Internal code improvements
+
+ qt5:
+ * Add Document::signatures. Returns signatures not attached to any page
+ * ArthurOutputDev: Fix font hinting
+ * ArthurOutputDev: Set the opacity when filling with axial gradients
+ * ArthurOutputDev: Implement the clipToStrokePath method
+ * ArthurOutputDev: Use stroking opacity when clipping to a stroke path
+
+ glib:
+ * Add poppler_page_get_bounding_box
+ * Add poppler_form_field_get_alternate_ui_name
+ * Implement rotation for 'flagNoRotate' annots. Issue #767
+
+ cpp:
+ * Add non_raw_non_physical layout for page::text()
+
+ utils:
+ * pdftohtml: Fix noRoundedCoordinates->noroundcoord in man page
+ * pdfsig: Show also signatures that aren't attached to any page
+
Release 0.87.0:
core:
* Fix leak in broken files
diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt
index 4d8bc7bf..627920ff 100644
--- a/cpp/CMakeLists.txt
+++ b/cpp/CMakeLists.txt
@@ -25,7 +25,7 @@ set(poppler_cpp_SRCS
)
add_library(poppler-cpp ${poppler_cpp_SRCS})
-set_target_properties(poppler-cpp PROPERTIES VERSION 0.7.0 SOVERSION 0)
+set_target_properties(poppler-cpp PROPERTIES VERSION 0.8.0 SOVERSION 0)
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 32a687fe..b6076914 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 = 0.87.0
+PROJECT_NUMBER = 0.88.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/glib/CMakeLists.txt b/glib/CMakeLists.txt
index c5aaea6f..42e2151b 100644
--- a/glib/CMakeLists.txt
+++ b/glib/CMakeLists.txt
@@ -87,7 +87,7 @@ set(poppler_glib_generated_SRCS
${CMAKE_SOURCE_DIR}/poppler/CairoRescaleBox.cc
)
add_library(poppler-glib ${poppler_glib_SRCS} ${poppler_glib_generated_SRCS})
-set_target_properties(poppler-glib PROPERTIES VERSION 8.15.0 SOVERSION 8)
+set_target_properties(poppler-glib PROPERTIES VERSION 8.16.0 SOVERSION 8)
set_target_properties(poppler-glib PROPERTIES C_VISIBILITY_PRESET hidden)
set_target_properties(poppler-glib PROPERTIES CXX_VISIBILITY_PRESET hidden)
set_target_properties(poppler-glib PROPERTIES VISIBILITY_INLINES_HIDDEN 1)
diff --git a/qt5/src/CMakeLists.txt b/qt5/src/CMakeLists.txt
index 69715d53..e75b5730 100644
--- a/qt5/src/CMakeLists.txt
+++ b/qt5/src/CMakeLists.txt
@@ -40,7 +40,7 @@ set(poppler_qt5_SRCS
poppler-version.cpp
)
add_library(poppler-qt5 ${poppler_qt5_SRCS})
-set_target_properties(poppler-qt5 PROPERTIES VERSION 1.23.0 SOVERSION 1)
+set_target_properties(poppler-qt5 PROPERTIES VERSION 1.24.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 79edc371..b3c32667 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 = 0.87.0
+PROJECT_NUMBER = 0.88.0
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.