summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CMakeLists.txt4
-rw-r--r--NEWS46
-rw-r--r--configure.ac2
-rw-r--r--cpp/Doxyfile2
-rw-r--r--poppler/Makefile.am2
-rw-r--r--qt4/src/Doxyfile2
6 files changed, 52 insertions, 6 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index a05ae896..a60d3bbd 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -14,7 +14,7 @@ find_package(Threads)
set(POPPLER_MAJOR_VERSION "0")
set(POPPLER_MINOR_VERSION "15")
-set(POPPLER_MICRO_VERSION "0")
+set(POPPLER_MICRO_VERSION "1")
set(POPPLER_VERSION "${POPPLER_MAJOR_VERSION}.${POPPLER_MINOR_VERSION}.${POPPLER_MICRO_VERSION}")
# command line switches
@@ -363,7 +363,7 @@ add_library(poppler STATIC ${poppler_SRCS})
else(MSVC)
add_library(poppler SHARED ${poppler_SRCS})
endif(MSVC)
-set_target_properties(poppler PROPERTIES VERSION 8.0.0 SOVERSION 8)
+set_target_properties(poppler PROPERTIES VERSION 9.0.0 SOVERSION 9)
target_link_libraries(poppler ${poppler_LIBS})
target_link_libraries(poppler LINK_INTERFACE_LIBRARIES "")
install(TARGETS poppler RUNTIME DESTINATION bin LIBRARY DESTINATION lib${LIB_SUFFIX} ARCHIVE DESTINATION lib${LIB_SUFFIX})
diff --git a/NEWS b/NEWS
index 2dd78c07..960f4778 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,49 @@
+Release 0.15.1 (0.16 Beta 1)
+
+ core:
+ * Consider render value when colorizing text (Bug #2807)
+ * Improve rendering of Shading Type 6 and 7
+ * Improve dict lookup speed for big dicts
+ * Fix multiple crashes in malformed PDF files
+ * Fix memory leak in in malformed PDF files
+ * Fix memory leak in the Catalog names
+ * Fix uninitialized uses on DCTScanInfo
+ * Fix a crash when drawing square/circle annots without a border (Bug #30580)
+ * Only clip boxes to mediabox if we are at the page level (Bug #30784)
+ * Do not omit the notdef glyph in the Splash backend
+ * Fix a crash when redering documents with invalid type 3 fonts in the Cairo backend
+ * Form improvements
+ * Add a method to get the PDF file identifier
+
+ glib:
+ * Add more printing options to the API
+ * Add a method to get the PDF file identifier
+ * Add accessor for all PopplerDocument properties
+ * Form improvements
+ * Documentation improvements
+ * Improvements to the demo
+
+ qt4:
+ * Add a callback to know which page has been printed
+ * Add a method to get the PDF file identifier
+ * Optimize GooString to QString conversion
+ * Some more autotests
+ * Update Doxyfile (enables .qch file for assistant)
+
+ build system:
+ * Require Cairo 1.10
+
+ utils:
+ * pdftohtml: Add -s option to generate a single HTML page
+ * pdftotext: Add -bbox option
+
+ cpp:
+ * Add the possibility of loading a document from raw data
+ * Add a method to get the PDF file identifier
+ * Improve Unicode to ustring conversion
+ * Documentation improvements
+ * Update Doxyfile
+
Release 0.15.0 (0.16 Alpha)
core:
diff --git a/configure.ac b/configure.ac
index 29cca1b5..2e849565 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
m4_define([poppler_version_major],[0])
m4_define([poppler_version_minor],[15])
-m4_define([poppler_version_micro],[0])
+m4_define([poppler_version_micro],[1])
m4_define([poppler_version],[poppler_version_major.poppler_version_minor.poppler_version_micro])
AC_PREREQ(2.59)
diff --git a/cpp/Doxyfile b/cpp/Doxyfile
index ebdeb54c..6b370a28 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.15.0
+PROJECT_NUMBER = 0.15.1
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.
diff --git a/poppler/Makefile.am b/poppler/Makefile.am
index ccc388f5..8f7ec1b4 100644
--- a/poppler/Makefile.am
+++ b/poppler/Makefile.am
@@ -176,7 +176,7 @@ libpoppler_la_LIBADD = \
$(PTHREAD_LIBS) \
$(win32_libs)
-libpoppler_la_LDFLAGS = -version-info 8:0:0 @create_shared_lib@ @auto_import_flags@
+libpoppler_la_LDFLAGS = -version-info 9:0:0 @create_shared_lib@ @auto_import_flags@
if ENABLE_XPDF_HEADERS
diff --git a/qt4/src/Doxyfile b/qt4/src/Doxyfile
index a28524d0..d6be02d6 100644
--- a/qt4/src/Doxyfile
+++ b/qt4/src/Doxyfile
@@ -31,7 +31,7 @@ PROJECT_NAME = "Poppler Qt4 "
# This could be handy for archiving the generated documentation or
# if some version control system is used.
-PROJECT_NUMBER = 0.15.0
+PROJECT_NUMBER = 0.15.1
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.