summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlbert Astals Cid <aacid@kde.org>2019-08-22 23:27:22 +0200
committerAlbert Astals Cid <aacid@kde.org>2019-08-22 23:27:22 +0200
commitd2a37632661d1c8c29fa28a6e1a5d812508f4ea3 (patch)
tree203114063bbb2909c50b56fd5519d45e213e65d1
parente47daf60cfbbbf1b1501b32a80e5625e51be8eae (diff)
-rw-r--r--CMakeLists.txt4
-rw-r--r--NEWS27
-rw-r--r--cpp/Doxyfile2
-rw-r--r--glib/CMakeLists.txt2
-rw-r--r--qt5/src/CMakeLists.txt2
-rw-r--r--qt5/src/Doxyfile2
6 files changed, 33 insertions, 6 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 06e8e709..4ec53d92 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -36,7 +36,7 @@ if (ECM_FOUND)
endif()
set(POPPLER_MAJOR_VERSION "0")
-set(POPPLER_MINOR_VERSION "79")
+set(POPPLER_MINOR_VERSION "80")
set(POPPLER_MICRO_VERSION "0")
set(POPPLER_VERSION "${POPPLER_MAJOR_VERSION}.${POPPLER_MINOR_VERSION}.${POPPLER_MICRO_VERSION}")
@@ -498,7 +498,7 @@ add_library(poppler STATIC ${poppler_SRCS})
else()
add_library(poppler ${poppler_SRCS})
endif()
-set_target_properties(poppler PROPERTIES VERSION 89.0.0 SOVERSION 89)
+set_target_properties(poppler PROPERTIES VERSION 90.0.0 SOVERSION 90)
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 4661b154..50d636e4 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,30 @@
+Release 0.80.0:
+ core:
+ * Annotations: Implement support for setting a different text in the appearance stream than the real text
+ * Splash: Optionally use small_vector from boost
+ * Fix memory leaks on broken files
+ * Fix abort on broken files
+ * Small code simplifications
+ * Remove USE_FIXEDPOINT support. Issue #821
+
+ qt5:
+ * Fix MSVC build
+ * Add subsitute-font information
+ * Fix since marker of some functions
+ * Fix leak when aborting text extraction
+ * Small code simplifications
+
+ glib:
+ * Make print scaling getter visible
+ * Make Duplex/NumCopies/PrintPageRange preference available in API
+ * Implement Movie API
+
+ utils:
+ * pdftotext: Add -nodiag flag to remove diagonal text on output
+
+ build system:
+ * Mark external lib include dirs as SYSTEM
+
Release 0.79.0:
core:
* Fix regression on TextSelectionPainter
diff --git a/cpp/Doxyfile b/cpp/Doxyfile
index 11e271cc..085face9 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.79.0
+PROJECT_NUMBER = 0.80.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 97d5d5ac..cda837f5 100644
--- a/glib/CMakeLists.txt
+++ b/glib/CMakeLists.txt
@@ -86,7 +86,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.13.0 SOVERSION 8)
+set_target_properties(poppler-glib PROPERTIES VERSION 8.14.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 e3b60fcb..ca1f2478 100644
--- a/qt5/src/CMakeLists.txt
+++ b/qt5/src/CMakeLists.txt
@@ -39,7 +39,7 @@ set(poppler_qt5_SRCS
poppler-version.cpp
)
add_library(poppler-qt5 ${poppler_qt5_SRCS})
-set_target_properties(poppler-qt5 PROPERTIES VERSION 1.20.0 SOVERSION 1)
+set_target_properties(poppler-qt5 PROPERTIES VERSION 1.21.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 8f27ee21..b2fbb8eb 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.79.0
+PROJECT_NUMBER = 0.80.0
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.