summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlbert Astals Cid <aacid@kde.org>2014-11-04 01:27:05 +0100
committerAlbert Astals Cid <aacid@kde.org>2014-11-04 01:27:05 +0100
commitd5489ef37742227176e800390a990f2b882d9710 (patch)
tree577a68f7c2d24ea03accb8b7fa4f60746309635e
parentf87115a1129e4e03802769181a3392c8dce3192a (diff)
-rw-r--r--CMakeLists.txt6
-rw-r--r--NEWS43
-rw-r--r--configure.ac4
-rw-r--r--cpp/Doxyfile2
-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
-rw-r--r--qt5/src/CMakeLists.txt2
-rw-r--r--qt5/src/Doxyfile2
-rw-r--r--qt5/src/Makefile.am2
11 files changed, 56 insertions, 13 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 81d10f09..7178d25a 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -17,8 +17,8 @@ include(CheckFileOffsetBits)
CHECK_FILE_OFFSET_BITS()
set(POPPLER_MAJOR_VERSION "0")
-set(POPPLER_MINOR_VERSION "26")
-set(POPPLER_MICRO_VERSION "4")
+set(POPPLER_MINOR_VERSION "28")
+set(POPPLER_MICRO_VERSION "0")
set(POPPLER_VERSION "${POPPLER_MAJOR_VERSION}.${POPPLER_MINOR_VERSION}.${POPPLER_MICRO_VERSION}")
# command line switches
@@ -443,7 +443,7 @@ add_library(poppler STATIC ${poppler_SRCS})
else(MSVC)
add_library(poppler SHARED ${poppler_SRCS})
endif(MSVC)
-set_target_properties(poppler PROPERTIES VERSION 46.0.0 SOVERSION 46)
+set_target_properties(poppler PROPERTIES VERSION 47.0.0 SOVERSION 47)
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 3e0e4fd0..97b94c8a 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,46 @@
+Release 0.28.0
+ core:
+ * Fix rendering of file with a wrong embedded font. Bug #84270
+ * Use alt colorspace to get CMYK values for an ICC based CMYK colorspace. Bug #79019
+ * Map Standard/Expert encoding ligatures to AGLFN names. Bug #80093
+ * Make Attribute::getName() work when UTF-16BE is used. Bug #84722
+ * Fix memory leak in Dict::remove. Bug #84607
+ * Fix crashes in broken files
+ * SplashOutputDev: Improve Overprintmode and shadings. Bug #80998
+ * CairoOutputDev: fix crash when no group color space. Bug #85137
+ * CairoOutputDev: Don't render text when text matrix is not invertable. Bug #78042
+ * CairoOutputDev: Only embed mime data for gray/rgb/cmyk colorspaces. Bug #80719
+ * CairoOutputDev: Only embed mime data if image decode map is identity
+ * cairo: Use matrix to determine pattern size. Bug #33364
+ * Fix compile warnings
+ * regression test improvements
+
+ glib:
+ * Fix use of uninitialized members in PopplerInputStream. Bug #82630
+ * Documentation improvements
+ * Do not dist gir_DATA
+ * Remove use of GTK deprecated functions. Bug #82384. Bug #82385
+ * Build introspection linking to the uninstalled libraries. Big #84526
+
+ qt4:
+ * Add a new Page::annotations() that let's you specify subtypes
+
+ qt5:
+ * Add a new Page::annotations() that let's you specify subtypes
+
+ utils:
+ * pdfseparate: additonal handling for annotations. Bug #77549
+ * pdfdetach: fix crash when getPage() returns null. Bug #85145
+ * pdftocairo: Add support for printing to a Windows printer. Bug #79936
+
+ build system:
+ * Move automake version check from autogen.sh to configure.ac. Bug #79797
+ * Makefile.am cleanups. Bug #79411
+ * Use poppler-data pkg-config
+ * Make autogen.sh work with variables with spaces
+ * Don't use -fPIC on mingw
+ * Fix build with --disable-utils. Bug #84448
+
Release 0.26.4
core:
* CairoOutputDev: Make sure we always push a transparency group in setSoftMaskFromImageMask(). Bug #81624
diff --git a/configure.ac b/configure.ac
index 7a5d747a..df8b5d56 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
m4_define([poppler_version_major],[0])
-m4_define([poppler_version_minor],[26])
-m4_define([poppler_version_micro],[4])
+m4_define([poppler_version_minor],[28])
+m4_define([poppler_version_micro],[0])
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 b73d9531..f02cd0bb 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.26.4
+PROJECT_NUMBER = 0.28.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/poppler/Makefile.am b/poppler/Makefile.am
index 0bce3a10..54f2197d 100644
--- a/poppler/Makefile.am
+++ b/poppler/Makefile.am
@@ -296,7 +296,7 @@ libpoppler_la_LIBADD = \
$(win32_libs)
libpoppler_la_LDFLAGS = \
- -version-info 46:0:0 \
+ -version-info 47:0:0 \
@create_shared_lib@ \
@auto_import_flags@
diff --git a/qt4/src/CMakeLists.txt b/qt4/src/CMakeLists.txt
index a2e82234..fe7d620d 100644
--- a/qt4/src/CMakeLists.txt
+++ b/qt4/src/CMakeLists.txt
@@ -30,7 +30,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 4.4.0 SOVERSION 4)
+set_target_properties(poppler-qt4 PROPERTIES VERSION 4.5.0 SOVERSION 4)
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 4af55194..3dfa1aa7 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.26.4
+PROJECT_NUMBER = 0.28.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/qt4/src/Makefile.am b/qt4/src/Makefile.am
index 42859fdc..fc5412ed 100644
--- a/qt4/src/Makefile.am
+++ b/qt4/src/Makefile.am
@@ -60,7 +60,7 @@ libpoppler_qt4_la_LIBADD = \
$(POPPLER_QT4_LIBS)
libpoppler_qt4_la_LDFLAGS = \
- -version-info 8:0:4 \
+ -version-info 9:0:5 \
@create_shared_lib@ \
@auto_import_flags@
diff --git a/qt5/src/CMakeLists.txt b/qt5/src/CMakeLists.txt
index 439c1d4d..423c77e9 100644
--- a/qt5/src/CMakeLists.txt
+++ b/qt5/src/CMakeLists.txt
@@ -32,7 +32,7 @@ set(poppler_qt5_SRCS
ArthurOutputDev.cc
)
add_library(poppler-qt5 SHARED ${poppler_qt5_SRCS})
-set_target_properties(poppler-qt5 PROPERTIES VERSION 1.1.0 SOVERSION 1)
+set_target_properties(poppler-qt5 PROPERTIES VERSION 1.2.0 SOVERSION 1)
target_link_libraries(poppler-qt5 poppler ${Qt5Core_LIBRARIES} ${Qt5Gui_LIBRARIES} ${Qt5Xml_LIBRARIES})
if(MSVC)
target_link_libraries(poppler-qt5 poppler ${poppler_LIBS})
diff --git a/qt5/src/Doxyfile b/qt5/src/Doxyfile
index 677c9f61..ac3b4c45 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.26.4
+PROJECT_NUMBER = 0.28.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/Makefile.am b/qt5/src/Makefile.am
index 245a4786..73e62afa 100644
--- a/qt5/src/Makefile.am
+++ b/qt5/src/Makefile.am
@@ -60,7 +60,7 @@ libpoppler_qt5_la_LIBADD = \
$(POPPLER_QT5_LIBS)
libpoppler_qt5_la_LDFLAGS = \
- -version-info 2:0:1 \
+ -version-info 3:0:2 \
@create_shared_lib@ \
@auto_import_flags@