[poppler] 2 commits - CMakeLists.txt configure.ac cpp/Doxyfile glib/CMakeLists.txt glib/Makefile.am NEWS poppler/Annot.cc poppler/Annot.h poppler/CairoFontEngine.cc poppler/Makefile.am poppler/Page.cc qt4/src qt5/src

Albert Astals Cid aacid at kemper.freedesktop.org
Thu May 14 12:57:12 PDT 2015


 CMakeLists.txt             |    4 ++--
 NEWS                       |   25 +++++++++++++++++++++++++
 configure.ac               |    2 +-
 cpp/Doxyfile               |    2 +-
 glib/CMakeLists.txt        |    2 +-
 glib/Makefile.am           |    2 +-
 poppler/Annot.cc           |    1 +
 poppler/Annot.h            |    2 +-
 poppler/CairoFontEngine.cc |    1 +
 poppler/Makefile.am        |    2 +-
 poppler/Page.cc            |    3 ++-
 qt4/src/Doxyfile           |    2 +-
 qt5/src/Doxyfile           |    2 +-
 13 files changed, 39 insertions(+), 11 deletions(-)

New commits:
commit b271a19ec30b20bc11f2240ae6b96672e3cafafb
Author: Albert Astals Cid <aacid at kde.org>
Date:   Thu May 14 21:56:47 2015 +0200

    Poppler 0.33

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 301760c..f77e366 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -22,7 +22,7 @@ if (ECM_FOUND)
 endif()
 
 set(POPPLER_MAJOR_VERSION "0")
-set(POPPLER_MINOR_VERSION "32")
+set(POPPLER_MINOR_VERSION "33")
 set(POPPLER_MICRO_VERSION "0")
 set(POPPLER_VERSION "${POPPLER_MAJOR_VERSION}.${POPPLER_MINOR_VERSION}.${POPPLER_MICRO_VERSION}")
 
@@ -474,7 +474,7 @@ add_library(poppler STATIC ${poppler_SRCS})
 else(MSVC)
 add_library(poppler SHARED ${poppler_SRCS})
 endif(MSVC)
-set_target_properties(poppler PROPERTIES VERSION 51.0.0 SOVERSION 51)
+set_target_properties(poppler PROPERTIES VERSION 52.0.0 SOVERSION 52)
 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 e831124..48f97fd 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,28 @@
+Release 0.33.0
+        core:
+         * Fix regression in pdftops parameter passing. Bug #89827
+         * Combine base characters and diacritical marks. Bug #87215
+         * Use width from W array for WMode positioning. Bug #89621
+         * Fixed adding annotation of Subtype Popup to pdf page. Bug #89136
+         * CairoOutputDev: Fix memory leak in CairoFreeTypeFont::create
+         * SplashOutputDev: memset on error to have reproducible outputs
+
+        qt4:
+         * Fix PDF Text String -> QString conversion. KDE Bug #344849
+
+        qt5:
+         * Fix PDF Text String -> QString conversion. KDE Bug #344849
+
+        glib:
+         * Add poppler_annot_markup_set_popup_rectangle()
+         * Fix segfault when creating PopplerAction. Bug #90093
+
+        utils:
+         * pdftohtml: Set exit status adecuately. Bug #83609
+
+        build system:
+         * configure: Fix invalid shell comparaison in libtiff test
+
 Release 0.32.0
         core:
          * Annotations: Fix rendering of empty BG/BC arrays
diff --git a/configure.ac b/configure.ac
index d4ed287..67599c0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
 m4_define([poppler_version_major],[0])
-m4_define([poppler_version_minor],[32])
+m4_define([poppler_version_minor],[33])
 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 fc44cee..bbd12ba 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.32.0
+PROJECT_NUMBER         = 0.33.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/glib/CMakeLists.txt b/glib/CMakeLists.txt
index 35a6197..e522028 100644
--- a/glib/CMakeLists.txt
+++ b/glib/CMakeLists.txt
@@ -81,7 +81,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.6.0 SOVERSION 8)
+set_target_properties(poppler-glib PROPERTIES VERSION 8.7.0 SOVERSION 8)
 target_link_libraries(poppler-glib poppler ${GLIB2_LIBRARIES} ${CAIRO_LIBRARIES} ${FREETYPE_LIBRARIES})
 if(HAVE_PTHREAD)
    target_link_libraries(poppler-glib -lpthread)
diff --git a/glib/Makefile.am b/glib/Makefile.am
index 65e5236..eb00442 100644
--- a/glib/Makefile.am
+++ b/glib/Makefile.am
@@ -81,7 +81,7 @@ libpoppler_glib_la_LIBADD =				\
 	$(FREETYPE_LIBS)
 
 libpoppler_glib_la_LDFLAGS =			\
-	-version-info 14:0:6			\
+	-version-info 15:0:7			\
 	@create_shared_lib@			\
 	@auto_import_flags@
 
diff --git a/poppler/Makefile.am b/poppler/Makefile.am
index 43faa7e..fd75d1a 100644
--- a/poppler/Makefile.am
+++ b/poppler/Makefile.am
@@ -296,7 +296,7 @@ libpoppler_la_LIBADD =				\
 	$(win32_libs)
 
 libpoppler_la_LDFLAGS =				\
-	-version-info 51:0:0			\
+	-version-info 52:0:0			\
 	@create_shared_lib@			\
 	@auto_import_flags@
 
diff --git a/qt4/src/Doxyfile b/qt4/src/Doxyfile
index 25bdcab..d9fae9c 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.32.0
+PROJECT_NUMBER         = 0.33.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/Doxyfile b/qt5/src/Doxyfile
index 364d2f7..5438453 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.32.0
+PROJECT_NUMBER         = 0.33.0
 
 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
 # base path where the generated documentation will be put.
commit 2b2fb719aa5ffe32fbc3fb500444b1643b1c6099
Author: Albert Astals Cid <aacid at kde.org>
Date:   Thu May 14 20:17:12 2015 +0200

    Add missing (C)

diff --git a/poppler/Annot.cc b/poppler/Annot.cc
index 598d148..dd99eee 100644
--- a/poppler/Annot.cc
+++ b/poppler/Annot.cc
@@ -33,6 +33,7 @@
 // Copyright (C) 2014 Jiri Slaby <jirislaby at gmail.com>
 // Copyright (C) 2014 Anuj Khare <khareanuj18 at gmail.com>
 // Copyright (C) 2015 Petr Gajdos <pgajdos at suse.cz>
+// Copyright (C) 2015 Philipp Reinkemeier <philipp.reinkemeier at offis.de>
 //
 // To see a description of the changes please see the Changelog file that
 // came with your tarball or type make ChangeLog if you are building from git
diff --git a/poppler/Annot.h b/poppler/Annot.h
index 7afed5f..1e64f59 100644
--- a/poppler/Annot.h
+++ b/poppler/Annot.h
@@ -15,7 +15,7 @@
 //
 // Copyright (C) 2006 Scott Turner <scotty1024 at mac.com>
 // Copyright (C) 2007, 2008 Julien Rebetez <julienr at svn.gnome.org>
-// Copyright (C) 2007-2011, 2013 Carlos Garcia Campos <carlosgc at gnome.org>
+// Copyright (C) 2007-2011, 2013, 2015 Carlos Garcia Campos <carlosgc at gnome.org>
 // Copyright (C) 2007, 2008 Iñigo Martínez <inigomartinez at gmail.com>
 // Copyright (C) 2008 Michael Vrable <mvrable at cs.ucsd.edu>
 // Copyright (C) 2008 Hugo Mercier <hmercier31 at gmail.com>
diff --git a/poppler/CairoFontEngine.cc b/poppler/CairoFontEngine.cc
index 4ffbf2e..1d611b5 100644
--- a/poppler/CairoFontEngine.cc
+++ b/poppler/CairoFontEngine.cc
@@ -27,6 +27,7 @@
 // Copyright (C) 2010 Jan Kümmel <jan+freedesktop at snorc.org>
 // Copyright (C) 2012 Hib Eris <hib at hiberis.nl>
 // Copyright (C) 2013 Thomas Freitag <Thomas.Freitag at alfa.de>
+// Copyright (C) 2015 Jason Crain <jason at aquaticape.us>
 //
 // To see a description of the changes please see the Changelog file that
 // came with your tarball or type make ChangeLog if you are building from git
diff --git a/poppler/Page.cc b/poppler/Page.cc
index c56b41f..a4af340 100644
--- a/poppler/Page.cc
+++ b/poppler/Page.cc
@@ -19,7 +19,7 @@
 // Copyright (C) 2006-2008 Pino Toscano <pino at kde.org>
 // Copyright (C) 2006 Nickolay V. Shmyrev <nshmyrev at yandex.ru>
 // Copyright (C) 2006 Scott Turner <scotty1024 at mac.com>
-// Copyright (C) 2006-2011 Carlos Garcia Campos <carlosgc at gnome.org>
+// Copyright (C) 2006-2011, 2015 Carlos Garcia Campos <carlosgc at gnome.org>
 // Copyright (C) 2007 Julien Rebetez <julienr at svn.gnome.org>
 // Copyright (C) 2008 Iñigo Martínez <inigomartinez at gmail.com>
 // Copyright (C) 2008 Brad Hards <bradh at kde.org>
@@ -28,6 +28,7 @@
 // Copyright (C) 2013, 2014 Thomas Freitag <Thomas.Freitag at alfa.de>
 // Copyright (C) 2013 Jason Crain <jason at aquaticape.us>
 // Copyright (C) 2013 Adrian Johnson <ajohnson at redneon.com>
+// Copyright (C) 2015 Philipp Reinkemeier <philipp.reinkemeier at offis.de>
 //
 // To see a description of the changes please see the Changelog file that
 // came with your tarball or type make ChangeLog if you are building from git


More information about the poppler mailing list