summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CMakeLists.txt4
-rw-r--r--NEWS32
-rw-r--r--configure.ac2
-rw-r--r--cpp/Doxyfile2
-rw-r--r--glib/CMakeLists.txt2
-rw-r--r--glib/Makefile.am2
-rw-r--r--poppler/Makefile.am2
-rw-r--r--qt4/src/CMakeLists.txt2
-rw-r--r--qt4/src/Doxyfile2
-rw-r--r--qt4/src/Makefile.am2
10 files changed, 42 insertions, 10 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 28333298..1db4be1f 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -16,7 +16,7 @@ test_big_endian(WORDS_BIGENDIAN)
set(POPPLER_MAJOR_VERSION "0")
set(POPPLER_MINOR_VERSION "17")
-set(POPPLER_MICRO_VERSION "2")
+set(POPPLER_MICRO_VERSION "3")
set(POPPLER_VERSION "${POPPLER_MAJOR_VERSION}.${POPPLER_MINOR_VERSION}.${POPPLER_MICRO_VERSION}")
# command line switches
@@ -351,7 +351,7 @@ add_library(poppler STATIC ${poppler_SRCS})
else(MSVC)
add_library(poppler SHARED ${poppler_SRCS})
endif(MSVC)
-set_target_properties(poppler PROPERTIES VERSION 16.0.0 SOVERSION 16)
+set_target_properties(poppler PROPERTIES VERSION 17.0.0 SOVERSION 17)
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 b7c32366..e8649807 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,35 @@
+Release 0.17.3 (0.18 Beta 3)
+ core:
+ * PSOutputDev: Use Patterns for tiling fill when PS level >= 2
+ * PSOutputDev: Avoid using /PatternType if only one instance of the pattern is used
+ * PSOutputDev: Add poppler version as comment in the file
+ * CairoOutputDev: Set mime data for soft masked images (Bug #40192)
+ * CairoOutputDev: Assume printer pixel size is 1/600" when stroking 0 width lines (Bug #39067)
+ * CairoOutputDev: Use cairo_show_text_glyphs() when printing
+ * CairoOutputDev: Fix stroke patterns (Bug #11719)
+ * CairoOutputDev: Fix unique id mime data
+ * CairoOutputDev: fix stroking of very thin lines
+ * CairoOutputDev: align strokes when Stroke Adjust is true and line width <= 1 (Bug #4536)
+ * TextOutputDev: Add TextFontInfo::matches()
+ * Improve PNGWriter
+ * Rework writing of PDF files
+
+ utils:
+ * Introduce pdftocairo - utility for creating png/jpeg/ps/eps/pdf/svg using CairoOutputDev
+ * Introduce pdfextract - utility to extract PDF pages
+ * Introduce pdfmerge - utility to merge PDF files
+ * Fix compilation warning
+ * pdftohtml: Support text rotation (Bug #38586)
+ * Update SEE ALSO section of man pages
+
+ glib:
+ * Add poppler_page_get_text_attributes()
+ * Add text attributes information to text demo
+
+ qt4:
+ * Add a way to get the fully qualified name of a FormField
+ * Minor documentation improvements
+
Release 0.17.2 (0.18 Beta 2)
core:
* EmbeddedFile improvements
diff --git a/configure.ac b/configure.ac
index c8b6bdd1..6d4332df 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
m4_define([poppler_version_major],[0])
m4_define([poppler_version_minor],[17])
-m4_define([poppler_version_micro],[2])
+m4_define([poppler_version_micro],[3])
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 1bf7f58b..3b4abd88 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.17.2
+PROJECT_NUMBER = 0.17.3
# 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 b036a5ca..73980eee 100644
--- a/glib/CMakeLists.txt
+++ b/glib/CMakeLists.txt
@@ -77,7 +77,7 @@ set(poppler_glib_generated_SRCS
${CMAKE_SOURCE_DIR}/poppler/CairoRescaleBox.cc
)
add_library(poppler-glib SHARED ${poppler_glib_SRCS} ${poppler_glib_generated_SRCS})
-set_target_properties(poppler-glib PROPERTIES VERSION 8.1.0 SOVERSION 8)
+set_target_properties(poppler-glib PROPERTIES VERSION 8.2.0 SOVERSION 8)
target_link_libraries(poppler-glib poppler ${GLIB2_LIBRARIES} ${CAIRO_LIBRARIES} ${FREETYPE_LIBRARIES})
install(TARGETS poppler-glib RUNTIME DESTINATION bin LIBRARY DESTINATION lib${LIB_SUFFIX} ARCHIVE DESTINATION lib${LIB_SUFFIX})
diff --git a/glib/Makefile.am b/glib/Makefile.am
index f93c332c..e362ff52 100644
--- a/glib/Makefile.am
+++ b/glib/Makefile.am
@@ -74,7 +74,7 @@ libpoppler_glib_la_LIBADD = \
$(FREETYPE_LIBS) \
$(FONTCONFIG_LIBS)
-libpoppler_glib_la_LDFLAGS = -version-info 9:0:1 @create_shared_lib@ @auto_import_flags@
+libpoppler_glib_la_LDFLAGS = -version-info 10:0:2 @create_shared_lib@ @auto_import_flags@
BUILT_SOURCES = \
poppler-enums.c \
diff --git a/poppler/Makefile.am b/poppler/Makefile.am
index 3df7ca45..1b4ee3b7 100644
--- a/poppler/Makefile.am
+++ b/poppler/Makefile.am
@@ -171,7 +171,7 @@ libpoppler_la_LIBADD = \
$(PTHREAD_LIBS) \
$(win32_libs)
-libpoppler_la_LDFLAGS = -version-info 16:0:0 @create_shared_lib@ @auto_import_flags@
+libpoppler_la_LDFLAGS = -version-info 17:0:0 @create_shared_lib@ @auto_import_flags@
if ENABLE_XPDF_HEADERS
diff --git a/qt4/src/CMakeLists.txt b/qt4/src/CMakeLists.txt
index 18a1b8a0..8ce8ff40 100644
--- a/qt4/src/CMakeLists.txt
+++ b/qt4/src/CMakeLists.txt
@@ -29,7 +29,7 @@ set(poppler_qt4_SRCS
)
qt4_automoc(${poppler_qt4_SRCS})
add_library(poppler-qt4 SHARED ${poppler_qt4_SRCS})
-set_target_properties(poppler-qt4 PROPERTIES VERSION 3.6.0 SOVERSION 3)
+set_target_properties(poppler-qt4 PROPERTIES VERSION 3.7.0 SOVERSION 3)
target_link_libraries(poppler-qt4 poppler ${QT4_QTCORE_LIBRARY} ${QT4_QTGUI_LIBRARY} ${QT4_QTXML_LIBRARY})
if(MSVC)
target_link_libraries(poppler-qt4 poppler ${poppler_LIBS})
diff --git a/qt4/src/Doxyfile b/qt4/src/Doxyfile
index aa3ef50d..f7475998 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.17.2
+PROJECT_NUMBER = 0.17.3
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.
diff --git a/qt4/src/Makefile.am b/qt4/src/Makefile.am
index a8b57fdc..5b2ff04b 100644
--- a/qt4/src/Makefile.am
+++ b/qt4/src/Makefile.am
@@ -61,7 +61,7 @@ libpoppler_qt4_la_LIBADD = \
$(FONTCONFIG_LIBS) \
$(POPPLER_QT4_LIBS)
-libpoppler_qt4_la_LDFLAGS = -version-info 9:0:6 @create_shared_lib@ @auto_import_flags@
+libpoppler_qt4_la_LDFLAGS = -version-info 10:0:7 @create_shared_lib@ @auto_import_flags@
# This rule lets GNU make create any *.moc from the equivalent *.h
.h.moc: