[poppler] CMakeLists.txt configure.ac cpp/Doxyfile NEWS poppler/Makefile.am qt4/src qt5/src
Albert Astals Cid
aacid at kemper.freedesktop.org
Sun Aug 9 09:28:14 PDT 2015
CMakeLists.txt | 4 ++--
NEWS | 29 +++++++++++++++++++++++++++++
configure.ac | 2 +-
cpp/Doxyfile | 2 +-
poppler/Makefile.am | 2 +-
qt4/src/CMakeLists.txt | 2 +-
qt4/src/Doxyfile | 2 +-
qt4/src/Makefile.am | 2 +-
qt5/src/CMakeLists.txt | 2 +-
qt5/src/Doxyfile | 2 +-
qt5/src/Makefile.am | 2 +-
11 files changed, 40 insertions(+), 11 deletions(-)
New commits:
commit 1213501882cf2ec6e3dcb3c078391040c8cb0a57
Author: Albert Astals Cid <aacid at kde.org>
Date: Sun Aug 9 18:27:06 2015 +0200
0.35.0
diff --git a/CMakeLists.txt b/CMakeLists.txt
index bfd374c..c587ea6 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -22,7 +22,7 @@ if (ECM_FOUND)
endif()
set(POPPLER_MAJOR_VERSION "0")
-set(POPPLER_MINOR_VERSION "34")
+set(POPPLER_MINOR_VERSION "35")
set(POPPLER_MICRO_VERSION "0")
set(POPPLER_VERSION "${POPPLER_MAJOR_VERSION}.${POPPLER_MINOR_VERSION}.${POPPLER_MICRO_VERSION}")
@@ -477,7 +477,7 @@ add_library(poppler STATIC ${poppler_SRCS})
else(MSVC)
add_library(poppler SHARED ${poppler_SRCS})
endif(MSVC)
-set_target_properties(poppler PROPERTIES VERSION 53.0.0 SOVERSION 53)
+set_target_properties(poppler PROPERTIES VERSION 54.0.0 SOVERSION 54)
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 a0f979a..1354d3b 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,32 @@
+Release 0.35.0
+ core:
+ * Fix assert in broken file. Bug #91344
+ * Adjust memory layout computation of GooString
+ * Make SplashBitmap XBGR transfer alpha channel
+ * Splash: Fix wrong writes on non rgb outputs. Bug #90570
+ * Splash: remove ifndef in Windows code
+ * GlobalParamsWin bugfixes. Bug #91053
+
+ qt4:
+ * Switch default image format
+ * Add IgnorePaperColor render flag
+
+ qt5:
+ * Improve efficiency of Poppler::Page::renderToImage
+ * Switch default image format
+ * Add IgnorePaperColor render flag
+
+ build system:
+ * Allow configuring SPLASH_CMYK support
+ * Add configure --enable-build-type. Bug #90796
+
+ glib:
+ * Explicitly link against pthread
+ * Deprecation fixes
+
+ utils:
+ * pdftocairo: Fix cast to pointer from integer of different size on win64
+
Release 0.34.0
core:
* Splash: Fix crash in PDF with nested softmasks. Bug #91240
diff --git a/configure.ac b/configure.ac
index 79329ac..bd0fcc2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
m4_define([poppler_version_major],[0])
-m4_define([poppler_version_minor],[34])
+m4_define([poppler_version_minor],[35])
m4_define([poppler_version_micro],[0])
m4_define([poppler_version],[poppler_version_major.poppler_version_minor.poppler_version_micro])
diff --git a/cpp/Doxyfile b/cpp/Doxyfile
index bbd12ba..cc6a319 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.33.0
+PROJECT_NUMBER = 0.35.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 0442929..3c943ba 100644
--- a/poppler/Makefile.am
+++ b/poppler/Makefile.am
@@ -296,7 +296,7 @@ libpoppler_la_LIBADD = \
$(win32_libs)
libpoppler_la_LDFLAGS = \
- -version-info 53:0:0 \
+ -version-info 54:0:0 \
@create_shared_lib@ \
@auto_import_flags@
diff --git a/qt4/src/CMakeLists.txt b/qt4/src/CMakeLists.txt
index 4a2c69a..5f65b0a 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.6.0 SOVERSION 4)
+set_target_properties(poppler-qt4 PROPERTIES VERSION 4.7.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 23f1518..ecf71e1 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.34.0
+PROJECT_NUMBER = 0.35.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 f993aa8..5cf4d90 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 10:0:6 \
+ -version-info 11:0:7 \
@create_shared_lib@ \
@auto_import_flags@
diff --git a/qt5/src/CMakeLists.txt b/qt5/src/CMakeLists.txt
index da01f07..bd6b559 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.3.0 SOVERSION 1)
+set_target_properties(poppler-qt5 PROPERTIES VERSION 1.4.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 d1b0edb..65c30d4 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.34.0
+PROJECT_NUMBER = 0.35.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 03df30f..714a154 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 4:0:3 \
+ -version-info 5:0:4 \
@create_shared_lib@ \
@auto_import_flags@
More information about the poppler
mailing list