[poppler] 2 commits - CMakeLists.txt configure.ac cpp/Doxyfile NEWS poppler/CairoOutputDev.cc poppler/Makefile.am qt4/src qt5/src

Albert Astals Cid aacid at kemper.freedesktop.org
Wed Sep 9 15:26:18 PDT 2015


 CMakeLists.txt            |    4 ++--
 NEWS                      |   36 ++++++++++++++++++++++++++++++++++++
 configure.ac              |    2 +-
 cpp/Doxyfile              |    2 +-
 poppler/CairoOutputDev.cc |    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 +-
 12 files changed, 48 insertions(+), 12 deletions(-)

New commits:
commit de1ece5c929c3f46c04be76b4b72f6371911fd1a
Author: Albert Astals Cid <aacid at kde.org>
Date:   Thu Sep 10 00:26:02 2015 +0200

    Poppler 0.36

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 98a4c2f..ac3d090 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -22,7 +22,7 @@ if (ECM_FOUND)
 endif()
 
 set(POPPLER_MAJOR_VERSION "0")
-set(POPPLER_MINOR_VERSION "35")
+set(POPPLER_MINOR_VERSION "36")
 set(POPPLER_MICRO_VERSION "0")
 set(POPPLER_VERSION "${POPPLER_MAJOR_VERSION}.${POPPLER_MINOR_VERSION}.${POPPLER_MICRO_VERSION}")
 
@@ -478,7 +478,7 @@ add_library(poppler STATIC ${poppler_SRCS})
 else(MSVC)
 add_library(poppler SHARED ${poppler_SRCS})
 endif(MSVC)
-set_target_properties(poppler PROPERTIES VERSION 54.0.0 SOVERSION 54)
+set_target_properties(poppler PROPERTIES VERSION 55.0.0 SOVERSION 55)
 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 d715732..5326eed 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,39 @@
+Release 0.36.0
+        core:
+         * Patch to support RichMedia annotations
+         * Splash: Fix wrong memory access. Bug #91686
+         * Cairo: fix size of transparency group surface. Bug #66229
+         * Fix bounds check in Linearization::getPageFirst. Bug #91200
+         * File Saving improvements
+         * Add premultiplied alpha channel to SplashBitmap
+         * Fix for xref table creation. Bug #90790
+         * Fix JBIG2Decode infinite loop and stack overflow. Bug #91186
+         * Minor optimization in text extraction
+
+        qt4:
+         * Basic support for RichMedia annotations
+         * Change default image format
+         * Minor optimizations
+
+        qt5:
+         * Basic support for RichMedia annotations
+         * Change default image format
+         * Minor optimizationsHEADmaster
+
+        cpp:
+         * Fix utf8/utf16 conversion. Bug #91644
+
+        build system:
+         * Do not hardcode -fPIC in Makefile.am
+         * cmake: Allow configuring SHARE_INSTALL_DIR. Bug #90293
+
+        glib:
+         *
+
+        utils:
+         * pdfunite: Insert embedded files in result pdf. Bug #90066
+         * pdftotext: Add -bbox-layout option. Bug #89941
+
 Release 0.35.0
         core:
          * Fix assert in broken file. Bug #91344
diff --git a/configure.ac b/configure.ac
index bd0fcc2..4bc1524 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
 m4_define([poppler_version_major],[0])
-m4_define([poppler_version_minor],[35])
+m4_define([poppler_version_minor],[36])
 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 cc6a319..87e6bc0 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.35.0
+PROJECT_NUMBER         = 0.36.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 3c943ba..9a5d026 100644
--- a/poppler/Makefile.am
+++ b/poppler/Makefile.am
@@ -296,7 +296,7 @@ libpoppler_la_LIBADD =				\
 	$(win32_libs)
 
 libpoppler_la_LDFLAGS =				\
-	-version-info 54:0:0			\
+	-version-info 55:0:0			\
 	@create_shared_lib@			\
 	@auto_import_flags@
 
diff --git a/qt4/src/CMakeLists.txt b/qt4/src/CMakeLists.txt
index 5f65b0a..5ec1b48 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.7.0 SOVERSION 4)
+set_target_properties(poppler-qt4 PROPERTIES VERSION 4.8.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 ecf71e1..044cf62 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.35.0
+PROJECT_NUMBER         = 0.36.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 5cf4d90..997e5bf 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 11:0:7			\
+	-version-info 12:0:8			\
 	@create_shared_lib@			\
 	@auto_import_flags@
 
diff --git a/qt5/src/CMakeLists.txt b/qt5/src/CMakeLists.txt
index bd6b559..cf4b97f 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.4.0 SOVERSION 1)
+set_target_properties(poppler-qt5 PROPERTIES VERSION 1.5.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 65c30d4..7fee355 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.35.0
+PROJECT_NUMBER         = 0.36.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 0b4fe43..ea13250 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 5:0:4			\
+	-version-info 6:0:5			\
 	@create_shared_lib@			\
 	@auto_import_flags@
 
commit d490c21fe4a60cff26f34c619d3078dcb575bf44
Author: Albert Astals Cid <aacid at kde.org>
Date:   Wed Sep 9 23:55:57 2015 +0200

    Update (C)

diff --git a/poppler/CairoOutputDev.cc b/poppler/CairoOutputDev.cc
index 20ae90d..1e201d3 100644
--- a/poppler/CairoOutputDev.cc
+++ b/poppler/CairoOutputDev.cc
@@ -27,7 +27,7 @@
 // Copyright (C) 2009, 2010 David Benjamin <davidben at mit.edu>
 // Copyright (C) 2011-2014 Thomas Freitag <Thomas.Freitag at alfa.de>
 // Copyright (C) 2012 Patrick Pfeifer <p2000 at mailinator.com>
-// Copyright (C) 2012 Jason Crain <jason at aquaticape.us>
+// Copyright (C) 2012, 2015 Jason Crain <jason at aquaticape.us>
 // Copyright (C) 2015 Suzuki Toshiya <mpsuzuki at hiroshima-u.ac.jp>
 //
 // To see a description of the changes please see the Changelog file that


More information about the poppler mailing list