[poppler] 3 commits - CMakeLists.txt configure.ac cpp/Doxyfile goo/Makefile.am NEWS poppler/DateInfo.cc poppler/DateInfo.h poppler/Form.cc poppler/Makefile.am qt4/src qt5/src utils/pdfinfo.cc

Albert Astals Cid aacid at kemper.freedesktop.org
Thu Jun 16 22:24:43 UTC 2016


 CMakeLists.txt      |    4 ++--
 NEWS                |   19 +++++++++++++++++++
 configure.ac        |    2 +-
 cpp/Doxyfile        |    2 +-
 goo/Makefile.am     |    2 ++
 poppler/DateInfo.cc |    1 +
 poppler/DateInfo.h  |    1 +
 poppler/Form.cc     |    2 +-
 poppler/Makefile.am |    2 +-
 qt4/src/Doxyfile    |    2 +-
 qt5/src/Doxyfile    |    2 +-
 utils/pdfinfo.cc    |    2 +-
 12 files changed, 32 insertions(+), 9 deletions(-)

New commits:
commit dfbb98327cbbc173a63f5db36b6606a93e5166aa
Author: Albert Astals Cid <aacid at kde.org>
Date:   Fri Jun 17 00:04:25 2016 +0200

    Poppler 0.45

diff --git a/CMakeLists.txt b/CMakeLists.txt
index a2986f7..34a5bdb 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -22,7 +22,7 @@ if (ECM_FOUND)
 endif()
 
 set(POPPLER_MAJOR_VERSION "0")
-set(POPPLER_MINOR_VERSION "44")
+set(POPPLER_MINOR_VERSION "45")
 set(POPPLER_MICRO_VERSION "0")
 set(POPPLER_VERSION "${POPPLER_MAJOR_VERSION}.${POPPLER_MINOR_VERSION}.${POPPLER_MICRO_VERSION}")
 
@@ -502,7 +502,7 @@ add_library(poppler STATIC ${poppler_SRCS})
 else(MSVC)
 add_library(poppler SHARED ${poppler_SRCS})
 endif(MSVC)
-set_target_properties(poppler PROPERTIES VERSION 61.0.0 SOVERSION 61)
+set_target_properties(poppler PROPERTIES VERSION 62.0.0 SOVERSION 62)
 target_link_libraries(poppler LINK_PRIVATE ${poppler_LIBS})
 install(TARGETS poppler RUNTIME DESTINATION bin LIBRARY DESTINATION lib${LIB_SUFFIX} ARCHIVE DESTINATION lib${LIB_SUFFIX})
 
diff --git a/NEWS b/NEWS
index 558efd8..d5762ab 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,22 @@
+Release 0.45.0
+        core:
+         * SplashOutputDev: Fix iccTransform + splashModeXBGR8
+         * Fix memory leaks
+         * Fix crash in broken files. Bug #95567. Bug #96027
+         * Emulate some non portable glibc functions when not available
+
+        utils:
+         * pdftohtml: Fix crash in broken files. Bug #95563
+         * pdfinfo: convert dates to local time zone
+         * pdfinfo: add -isodates for printing dates in ISO-8601 format
+         * pdfinfo: Fix memory leaks
+
+        glib:
+         * return date in UTC instead of local time. Bug #94173
+
+        cpp:
+         * switched from detail::convert_date() to core's dateStringToTime()
+
 Release 0.44.0
         core:
          * Fix Compile in 32bit linux. Bug #95492
diff --git a/configure.ac b/configure.ac
index e9b0687..7a1455d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
 m4_define([poppler_version_major],[0])
-m4_define([poppler_version_minor],[44])
+m4_define([poppler_version_minor],[45])
 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 8c65d6c..9a061d0 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.44.0
+PROJECT_NUMBER         = 0.45.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 3eef543..3d32e79 100644
--- a/poppler/Makefile.am
+++ b/poppler/Makefile.am
@@ -327,7 +327,7 @@ libpoppler_la_LIBADD =				\
 	$(win32_libs)
 
 libpoppler_la_LDFLAGS =				\
-	-version-info 61:0:0			\
+	-version-info 62:0:0			\
 	@create_shared_lib@			\
 	@auto_import_flags@
 
diff --git a/qt4/src/Doxyfile b/qt4/src/Doxyfile
index ffbaec3..f0aaee2 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.44.0
+PROJECT_NUMBER         = 0.45.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 82d412c..2c1aedd 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.44.0
+PROJECT_NUMBER         = 0.45.0
 
 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
 # base path where the generated documentation will be put.
commit 3829958339b332d7ddf005d5ab98dd0ad3c8b3c6
Author: Albert Astals Cid <aacid at kde.org>
Date:   Thu Jun 16 23:58:07 2016 +0200

    Add (C)

diff --git a/poppler/DateInfo.cc b/poppler/DateInfo.cc
index 791f19e..fef3f00 100644
--- a/poppler/DateInfo.cc
+++ b/poppler/DateInfo.cc
@@ -6,6 +6,7 @@
 // Copyright (C) 2009 Carlos Garcia Campos <carlosgc at gnome.org>
 // Copyright (C) 2015 André Guerreiro <aguerreiro1985 at gmail.com>
 // Copyright (C) 2015 André Esser <bepandre at hotmail.com>
+// Copyright (C) 2016 Adrian Johnson <ajohnson at redneon.com>
 //
 // 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/DateInfo.h b/poppler/DateInfo.h
index e411268..468dd93 100644
--- a/poppler/DateInfo.h
+++ b/poppler/DateInfo.h
@@ -6,6 +6,7 @@
 // Copyright (C) 2009 Carlos Garcia Campos <carlosgc at gnome.org>
 // Copyright (C) 2015 André Guerreiro <aguerreiro1985 at gmail.com>
 // Copyright (C) 2015 André Esser <bepandre at hotmail.com>
+// Copyright (C) 2016 Adrian Johnson <ajohnson at redneon.com>
 //
 // 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/Form.cc b/poppler/Form.cc
index b63ea36..d5f4dd1 100644
--- a/poppler/Form.cc
+++ b/poppler/Form.cc
@@ -7,7 +7,7 @@
 // Copyright 2006-2008 Julien Rebetez <julienr at svn.gnome.org>
 // Copyright 2007-2012, 2015, 2016 Albert Astals Cid <aacid at kde.org>
 // Copyright 2007-2008, 2011 Carlos Garcia Campos <carlosgc at gnome.org>
-// Copyright 2007, 2013 Adrian Johnson <ajohnson at redneon.com>
+// Copyright 2007, 2013, 2016 Adrian Johnson <ajohnson at redneon.com>
 // Copyright 2007 Iñigo Martínez <inigomartinez at gmail.com>
 // Copyright 2008, 2011 Pino Toscano <pino at kde.org>
 // Copyright 2008 Michael Vrable <mvrable at cs.ucsd.edu>
diff --git a/utils/pdfinfo.cc b/utils/pdfinfo.cc
index e469fb3..b3e6513 100644
--- a/utils/pdfinfo.cc
+++ b/utils/pdfinfo.cc
@@ -18,7 +18,7 @@
 // Copyright (C) 2007-2010, 2012 Albert Astals Cid <aacid at kde.org>
 // Copyright (C) 2010 Hib Eris <hib at hiberis.nl>
 // Copyright (C) 2011 Vittal Aithal <vittal.aithal at cognidox.com>
-// Copyright (C) 2012, 2013 Adrian Johnson <ajohnson at redneon.com>
+// Copyright (C) 2012, 2013, 2016 Adrian Johnson <ajohnson at redneon.com>
 // Copyright (C) 2012 Fabio D'Urso <fabiodurso at hotmail.it>
 // Copyright (C) 2013 Adrian Perez de Castro <aperez at igalia.com>
 // Copyright (C) 2013 Suzuki Toshiya <mpsuzuki at hiroshima-u.ac.jp>
commit 4c7e057b0315ed37bd47e304ca191191244b2963
Author: Albert Astals Cid <aacid at kde.org>
Date:   Fri Jun 17 00:11:50 2016 +0200

    dist glibc.h
    
    we don't install it, but we need it for building

diff --git a/goo/Makefile.am b/goo/Makefile.am
index 8b4595e..004775a 100644
--- a/goo/Makefile.am
+++ b/goo/Makefile.am
@@ -65,3 +65,5 @@ libgoo_la_CPPFLAGS =				\
 	$(libtiff_includes)                     \
 	$(libjpeg2000_includes)                 \
 	$(libpng_includes)
+
+EXTRA_DIST = glibc.h
\ No newline at end of file


More information about the poppler mailing list