[poppler] 2 commits - CMakeLists.txt configure.ac cpp/Doxyfile Makefile.am NEWS poppler/FlateStream.cc poppler/Gfx.cc poppler/Makefile.am poppler/PSOutputDev.cc poppler/SignatureHandler.cc poppler/SplashOutputDev.cc poppler/SplashOutputDev.h poppler/Stream.cc poppler/Stream.h poppler/TextOutputDev.cc poppler/TextOutputDev.h qt4/src qt5/src

Albert Astals Cid aacid at kemper.freedesktop.org
Wed Mar 16 22:41:44 UTC 2016


 CMakeLists.txt              |    4 ++--
 Makefile.am                 |    1 +
 NEWS                        |   28 ++++++++++++++++++++++++++++
 configure.ac                |    2 +-
 cpp/Doxyfile                |    2 +-
 poppler/FlateStream.cc      |    1 +
 poppler/Gfx.cc              |    2 +-
 poppler/Makefile.am         |    4 ++--
 poppler/PSOutputDev.cc      |    2 +-
 poppler/SignatureHandler.cc |    2 +-
 poppler/SplashOutputDev.cc  |    2 +-
 poppler/SplashOutputDev.h   |    2 +-
 poppler/Stream.cc           |    2 +-
 poppler/Stream.h            |    2 +-
 poppler/TextOutputDev.cc    |    2 +-
 poppler/TextOutputDev.h     |    2 +-
 qt4/src/Doxyfile            |    2 +-
 qt5/src/Doxyfile            |    2 +-
 18 files changed, 47 insertions(+), 17 deletions(-)

New commits:
commit f8ff943650e7e2a4cb836be43bf04907a5e156fc
Author: Albert Astals Cid <aacid at kde.org>
Date:   Wed Mar 16 23:40:00 2016 +0100

    0.42

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 07d9eb2..d385893 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -22,7 +22,7 @@ if (ECM_FOUND)
 endif()
 
 set(POPPLER_MAJOR_VERSION "0")
-set(POPPLER_MINOR_VERSION "41")
+set(POPPLER_MINOR_VERSION "42")
 set(POPPLER_MICRO_VERSION "0")
 set(POPPLER_VERSION "${POPPLER_MAJOR_VERSION}.${POPPLER_MINOR_VERSION}.${POPPLER_MICRO_VERSION}")
 
@@ -501,7 +501,7 @@ add_library(poppler STATIC ${poppler_SRCS})
 else(MSVC)
 add_library(poppler SHARED ${poppler_SRCS})
 endif(MSVC)
-set_target_properties(poppler PROPERTIES VERSION 58.0.0 SOVERSION 58)
+set_target_properties(poppler PROPERTIES VERSION 59.0.0 SOVERSION 59)
 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/Makefile.am b/Makefile.am
index 691512f..9540b6a 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -88,6 +88,7 @@ EXTRA_DIST +=							\
 	cmake/modules/FindIconv.cmake				\
 	cmake/modules/FindLCMS.cmake				\
 	cmake/modules/FindLCMS2.cmake				\
+        cmake/modules/FindNSS3.cmake				\
 	cmake/modules/FindQt4.cmake				\
 	cmake/modules/GObjectIntrospectionMacros.cmake		\
 	cmake/modules/MacroBoolTo01.cmake			\
diff --git a/NEWS b/NEWS
index 22f7e54..19812f9 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,33 @@
 Release 0.41.0
         core:
+         * Add the support for version 5 + revision 6 documents. Bug #85368
+         * Add initial support for Signature handling
+         * Initialize gamut mapping multipliers in ::copy() functions. Bug #90697
+         * Implement jpx streams support with depth < 8
+         * Handle SMaskInData = 0 for JPX encoded images. Bug #93468
+         * Fix rendering of some broken PDF files. Bug #92508
+         * PSOutputDev: Support for LZW encoding
+         * PSOutputDev: Add support for Flate compression in Level 3 output.
+         * SplashOuputDev: Implement function shading. Bug #94441
+         * SplashOuputDev: Improve rendering of some non embedded fonts. Bug #94054
+         * SplashOuputDev: Fall back to Gfx implementation of tiling pattern if repetition rate is small. Bug #90596
+         * SplashOuputDev: Implementation of Matte entries in softmasks of softmasked images. Bug #22473
+         * SplashOuputDev: assure line width > 0 in case of text stroke. Bug #94038
+         * TextOuputDev: Cache result of inner loop in visitDepthFirst. Bug #77087
+         * Avoid attempting a tiling pattern fill with a singular transform matrix
+
+        utils:
+         * pdfinfo: Add option to show document structure
+         * pdfsig: New command that gives information about signature
+
+        qt4:
+         * Fix bug in links to remote documents getting the page number wrong sometimes
+
+        qt5:
+         * Fix bug in links to remote documents getting the page number wrong sometimes
+
+Release 0.41.0
+        core:
          * CairoOutputDev: add missing font types (fontCIDType0COT and fontTrueTypeOT). Bug #93559
          * SplashOutputDev: Adjust limit check and check in addition bitmap pointer. Bug #94053
 
diff --git a/configure.ac b/configure.ac
index 8cc9044..57639ad 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
 m4_define([poppler_version_major],[0])
-m4_define([poppler_version_minor],[41])
+m4_define([poppler_version_minor],[42])
 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 beb3961..70cb343 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.41.0
+PROJECT_NUMBER         = 0.42.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 de6748b..df64dbf 100644
--- a/poppler/Makefile.am
+++ b/poppler/Makefile.am
@@ -89,7 +89,7 @@ nss_libs =                      \
 nss_includes =                  \
 	$(NSS3_CFLAGS)
 
-nss_headers =
+nss_headers =                   \
 	SignatureHandler.h
 
 endif	
@@ -327,7 +327,7 @@ libpoppler_la_LIBADD =				\
 	$(win32_libs)
 
 libpoppler_la_LDFLAGS =				\
-	-version-info 58:0:0			\
+	-version-info 59:0:0			\
 	@create_shared_lib@			\
 	@auto_import_flags@
 
diff --git a/qt4/src/Doxyfile b/qt4/src/Doxyfile
index a272f63..41bc8e4 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.41.0
+PROJECT_NUMBER         = 0.42.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 4236e3d..9e4df28 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.41.0
+PROJECT_NUMBER         = 0.42.0
 
 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
 # base path where the generated documentation will be put.
commit ef21f651a4af801502d6b4b4f7258d54f14e7aea
Author: Albert Astals Cid <aacid at kde.org>
Date:   Wed Mar 16 20:23:39 2016 +0100

    Some (C) updating

diff --git a/poppler/FlateStream.cc b/poppler/FlateStream.cc
index ca63837..acc716c 100644
--- a/poppler/FlateStream.cc
+++ b/poppler/FlateStream.cc
@@ -4,6 +4,7 @@
 //
 // Copyright (C) 2005, Jeff Muizelaar <jeff at infidigm.net>
 // Copyright (C) 2010, Albert Astals Cid <aacid at kde.org>
+// Copyright (C) 2016, William Bader <williambader at hotmail.com>
 //
 // This file is under the GPLv2 or later license
 //
diff --git a/poppler/Gfx.cc b/poppler/Gfx.cc
index 471bea6..cc6b66d 100644
--- a/poppler/Gfx.cc
+++ b/poppler/Gfx.cc
@@ -2,7 +2,7 @@
 //
 // Gfx.cc
 //
-// Copyright 1996-2003 Glyph & Cog, LLC
+// Copyright 1996-2013 Glyph & Cog, LLC
 //
 //========================================================================
 
diff --git a/poppler/PSOutputDev.cc b/poppler/PSOutputDev.cc
index 4dc3ddd..a260727 100644
--- a/poppler/PSOutputDev.cc
+++ b/poppler/PSOutputDev.cc
@@ -2,7 +2,7 @@
 //
 // PSOutputDev.cc
 //
-// Copyright 1996-2003 Glyph & Cog, LLC
+// Copyright 1996-2013 Glyph & Cog, LLC
 //
 //========================================================================
 
diff --git a/poppler/SignatureHandler.cc b/poppler/SignatureHandler.cc
index 21d9c4d..96de8f3 100644
--- a/poppler/SignatureHandler.cc
+++ b/poppler/SignatureHandler.cc
@@ -4,7 +4,7 @@
 //
 // This file is licensed under the GPLv2 or later
 //
-// Copyright 2015 André Guerreiro <aguerreiro1985 at gmail.com>
+// Copyright 2015, 2016 André Guerreiro <aguerreiro1985 at gmail.com>
 // Copyright 2015 André Esser <bepandre at hotmail.com>
 // Copyright 2015 Albert Astals Cid <aacid at kde.org>
 // Copyright 2015 Markus Kilås <digital at markuspage.com>
diff --git a/poppler/SplashOutputDev.cc b/poppler/SplashOutputDev.cc
index 7bccd38..13d090c 100644
--- a/poppler/SplashOutputDev.cc
+++ b/poppler/SplashOutputDev.cc
@@ -22,7 +22,7 @@
 // Copyright (C) 2009 Petr Gajdos <pgajdos at novell.com>
 // Copyright (C) 2009-2016 Thomas Freitag <Thomas.Freitag at alfa.de>
 // Copyright (C) 2009 Carlos Garcia Campos <carlosgc at gnome.org>
-// Copyright (C) 2009, 2014, 2015 William Bader <williambader at hotmail.com>
+// Copyright (C) 2009, 2014-2016 William Bader <williambader at hotmail.com>
 // Copyright (C) 2010 Patrick Spendrin <ps_ml at gmx.de>
 // Copyright (C) 2010 Brian Cameron <brian.cameron at oracle.com>
 // Copyright (C) 2010 Paweł Wiejacha <pawel.wiejacha at gmail.com>
diff --git a/poppler/SplashOutputDev.h b/poppler/SplashOutputDev.h
index ff72afe..e93a20f 100644
--- a/poppler/SplashOutputDev.h
+++ b/poppler/SplashOutputDev.h
@@ -21,7 +21,7 @@
 // Copyright (C) 2011 Andrea Canciani <ranma42 at gmail.com>
 // Copyright (C) 2011 Adrian Johnson <ajohnson at redneon.com>
 // Copyright (C) 2012, 2015 Albert Astals Cid <aacid at kde.org>
-// Copyright (C) 2015 William Bader <williambader at hotmail.com>
+// Copyright (C) 2015, 2016 William Bader <williambader at hotmail.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/Stream.cc b/poppler/Stream.cc
index bbea4fd..1e6318e 100644
--- a/poppler/Stream.cc
+++ b/poppler/Stream.cc
@@ -22,7 +22,7 @@
 // Copyright (C) 2009 Stefan Thomas <thomas at eload24.com>
 // Copyright (C) 2010 Hib Eris <hib at hiberis.nl>
 // Copyright (C) 2010 Tomas Hoger <thoger at redhat.com>
-// Copyright (C) 2011, 2012 William Bader <williambader at hotmail.com>
+// Copyright (C) 2011, 2012, 2016 William Bader <williambader at hotmail.com>
 // Copyright (C) 2012, 2013 Thomas Freitag <Thomas.Freitag at alfa.de>
 // Copyright (C) 2012 Oliver Sander <sander at mi.fu-berlin.de>
 // Copyright (C) 2012 Fabio D'Urso <fabiodurso at hotmail.it>
diff --git a/poppler/Stream.h b/poppler/Stream.h
index ed6f7dc..8304b6c 100644
--- a/poppler/Stream.h
+++ b/poppler/Stream.h
@@ -19,7 +19,7 @@
 // Copyright (C) 2009 Carlos Garcia Campos <carlosgc at gnome.org>
 // Copyright (C) 2009 Stefan Thomas <thomas at eload24.com>
 // Copyright (C) 2010 Hib Eris <hib at hiberis.nl>
-// Copyright (C) 2011, 2012 William Bader <williambader at hotmail.com>
+// Copyright (C) 2011, 2012, 2016 William Bader <williambader at hotmail.com>
 // Copyright (C) 2012, 2013 Thomas Freitag <Thomas.Freitag at alfa.de>
 // Copyright (C) 2012, 2013 Fabio D'Urso <fabiodurso at hotmail.it>
 // Copyright (C) 2013 Adrian Johnson <ajohnson at redneon.com>
diff --git a/poppler/TextOutputDev.cc b/poppler/TextOutputDev.cc
index 431a19d..afd8959 100644
--- a/poppler/TextOutputDev.cc
+++ b/poppler/TextOutputDev.cc
@@ -30,7 +30,7 @@
 // Copyright (C) 2010 Suzuki Toshiya <mpsuzuki at hiroshima-u.ac.jp>
 // Copyright (C) 2011 Sam Liao <phyomh at gmail.com>
 // Copyright (C) 2012 Horst Prote <prote at fmi.uni-stuttgart.de>
-// Copyright (C) 2012, 2013-2015 Jason Crain <jason at aquaticape.us>
+// Copyright (C) 2012, 2013-2016 Jason Crain <jason at aquaticape.us>
 // Copyright (C) 2012 Peter Breitenlohner <peb at mppmu.mpg.de>
 // Copyright (C) 2013 José Aliste <jaliste at src.gnome.org>
 // Copyright (C) 2013 Thomas Freitag <Thomas.Freitag at alfa.de>
diff --git a/poppler/TextOutputDev.h b/poppler/TextOutputDev.h
index 545f743..7da797c 100644
--- a/poppler/TextOutputDev.h
+++ b/poppler/TextOutputDev.h
@@ -19,7 +19,7 @@
 // Copyright (C) 2007 Adrian Johnson <ajohnson at redneon.com>
 // Copyright (C) 2008, 2010, 2015 Albert Astals Cid <aacid at kde.org>
 // Copyright (C) 2010 Brian Ewins <brian.ewins at gmail.com>
-// Copyright (C) 2012, 2013, 2015 Jason Crain <jason at aquaticape.us>
+// Copyright (C) 2012, 2013, 2015, 2016 Jason Crain <jason at aquaticape.us>
 // Copyright (C) 2013 Thomas Freitag <Thomas.Freitag at alfa.de>
 //
 // To see a description of the changes please see the Changelog file that


More information about the poppler mailing list