CMakeLists.txt | 4 ++-- NEWS | 30 ++++++++++++++++++++++++++++++ configure.ac | 2 +- cpp/Doxyfile | 2 +- goo/JpegWriter.cc | 2 +- goo/JpegWriter.h | 2 +- goo/gfile.cc | 1 + goo/gfile.h | 1 + poppler/CairoOutputDev.cc | 2 +- poppler/Gfx.cc | 2 +- poppler/GlobalParams.cc | 1 + poppler/GlobalParamsWin.cc | 2 ++ poppler/Makefile.am | 2 +- poppler/Outline.cc | 1 + poppler/Stream.cc | 2 +- poppler/Stream.h | 2 +- qt4/src/Doxyfile | 2 +- qt5/src/Doxyfile | 2 +- splash/SplashBitmap.cc | 2 +- splash/SplashBitmap.h | 2 +- utils/pdftocairo.cc | 2 +- 21 files changed, 52 insertions(+), 16 deletions(-)
New commits: commit 73e12716f3e4643c2ea13421902b8220596454d7 Author: Albert Astals Cid <[email protected]> Date: Fri Sep 1 20:11:27 2017 +0200 Poppler 0.58 diff --git a/CMakeLists.txt b/CMakeLists.txt index 3208f532..4025a800 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -22,7 +22,7 @@ if (ECM_FOUND) endif() set(POPPLER_MAJOR_VERSION "0") -set(POPPLER_MINOR_VERSION "57") +set(POPPLER_MINOR_VERSION "58") set(POPPLER_MICRO_VERSION "0") set(POPPLER_VERSION "${POPPLER_MAJOR_VERSION}.${POPPLER_MINOR_VERSION}.${POPPLER_MICRO_VERSION}") @@ -542,7 +542,7 @@ add_library(poppler STATIC ${poppler_SRCS}) else(MSVC) add_library(poppler SHARED ${poppler_SRCS}) endif(MSVC) -set_target_properties(poppler PROPERTIES VERSION 68.0.0 SOVERSION 68) +set_target_properties(poppler PROPERTIES VERSION 69.0.0 SOVERSION 69) 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 2a8c5374..68086a48 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,33 @@ +Release 0.58.0 + core: + * CairoOutputDev: cairo 1.14 now has high quality downscaling + * Signature related improvements. Bug #99271 + * Tweak which cmap we use. Bug #101855 + * Memory leak fixes + * Substantial rework of the internals + * win32: call ANSI functions directly. Bug #100312 + * Add some documentation + + qt5: + * Expose signature information. + * ArthurOutputDev: initialize the image with the paper color. Bug #102129 + * Fix copy'n'paste bugs: Qt4 -> Qt5 + * ArthurOutputDev: Properly set the QPainter transformation + * ArthurOutputDev: Use Qt::SvgMiterJoin instead of Qt::MiterJoin. Bug #102356 + + utils: + * pdfinfo: add -dests option to print named destinations. Bug #97262 + * pdftocairo: add -jpegopt for setting jpeg compression parameters. Bug #45727 + * pdftoppm: add -jpegopt for setting jpeg compression parameters. Bug #45727 + * pdfimages: support listing/extracting inline images. Bug #25625 + + build system: + * cmake: Various Windows fixes + * cmake: Use -std=c++11 instead of -std=gnu++11 + + cpp: + * Fix page.text() not taking page orientation into account. Bug #94517 + Release 0.57.0 core: * Fix parsing of Type 1 fonts with newlines in encoding sequences. Bug #101728 diff --git a/configure.ac b/configure.ac index 1cf8b296..e511e8ba 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ m4_define([poppler_version_major],[0]) -m4_define([poppler_version_minor],[57]) +m4_define([poppler_version_minor],[58]) 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 73224715..a2db5ee0 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.57.0 +PROJECT_NUMBER = 0.58.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 b2970cb7..db550fa1 100644 --- a/poppler/Makefile.am +++ b/poppler/Makefile.am @@ -327,7 +327,7 @@ libpoppler_la_LIBADD = \ $(win32_libs) libpoppler_la_LDFLAGS = \ - -version-info 68:0:0 \ + -version-info 69:0:0 \ @create_shared_lib@ \ @auto_import_flags@ diff --git a/qt4/src/Doxyfile b/qt4/src/Doxyfile index 1e1503b8..9b2fa472 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.57.0 +PROJECT_NUMBER = 0.58.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 8d121200..278a6803 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.57.0 +PROJECT_NUMBER = 0.58.0 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. commit 8a5c7be5b5772672b34638532793cf62be78e9b8 Author: Albert Astals Cid <[email protected]> Date: Fri Sep 1 20:02:17 2017 +0200 Add missing includes diff --git a/goo/JpegWriter.cc b/goo/JpegWriter.cc index a9959f09..a5a4d5a6 100644 --- a/goo/JpegWriter.cc +++ b/goo/JpegWriter.cc @@ -5,7 +5,7 @@ // This file is licensed under the GPLv2 or later // // Copyright (C) 2009 Stefan Thomas <[email protected]> -// Copyright (C) 2010, 2012 Adrian Johnson <[email protected]> +// Copyright (C) 2010, 2012, 2017 Adrian Johnson <[email protected]> // Copyright (C) 2010 Harry Roberts <[email protected]> // Copyright (C) 2011 Thomas Freitag <[email protected]> // Copyright (C) 2013 Peter Breitenlohner <[email protected]> diff --git a/goo/JpegWriter.h b/goo/JpegWriter.h index aa3fb622..9a68bcc9 100644 --- a/goo/JpegWriter.h +++ b/goo/JpegWriter.h @@ -5,7 +5,7 @@ // This file is licensed under the GPLv2 or later // // Copyright (C) 2009 Stefan Thomas <[email protected]> -// Copyright (C) 2010, 2012 Adrian Johnson <[email protected]> +// Copyright (C) 2010, 2012, 2017 Adrian Johnson <[email protected]> // Copyright (C) 2010 Jürg Billeter <[email protected]> // Copyright (C) 2010 Harry Roberts <[email protected]> // Copyright (C) 2010 Brian Cameron <[email protected]> diff --git a/goo/gfile.cc b/goo/gfile.cc index bc914785..6b98ec21 100644 --- a/goo/gfile.cc +++ b/goo/gfile.cc @@ -25,6 +25,7 @@ // Copyright (C) 2013 Adrian Johnson <[email protected]> // Copyright (C) 2013 Peter Breitenlohner <[email protected]> // Copyright (C) 2013 Thomas Freitag <[email protected]> +// Copyright (C) 2017 Christoph Cullmann <[email protected]> // // 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/goo/gfile.h b/goo/gfile.h index a8122917..be539940 100644 --- a/goo/gfile.h +++ b/goo/gfile.h @@ -22,6 +22,7 @@ // Copyright (C) 2013 Adrian Johnson <[email protected]> // Copyright (C) 2014 Bogdan Cristea <[email protected]> // Copyright (C) 2014 Peter Breitenlohner <[email protected]> +// Copyright (C) 2017 Christoph Cullmann <[email protected]> // // 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/CairoOutputDev.cc b/poppler/CairoOutputDev.cc index c4557e44..24b9e65e 100644 --- a/poppler/CairoOutputDev.cc +++ b/poppler/CairoOutputDev.cc @@ -20,7 +20,7 @@ // Copyright (C) 2005 Nickolay V. Shmyrev <[email protected]> // Copyright (C) 2006-2011, 2013, 2014 Carlos Garcia Campos <[email protected]> // Copyright (C) 2008 Carl Worth <[email protected]> -// Copyright (C) 2008-2016 Adrian Johnson <[email protected]> +// Copyright (C) 2008-2017 Adrian Johnson <[email protected]> // Copyright (C) 2008 Michael Vrable <[email protected]> // Copyright (C) 2008, 2009 Chris Wilson <[email protected]> // Copyright (C) 2008, 2012 Hib Eris <[email protected]> diff --git a/poppler/Gfx.cc b/poppler/Gfx.cc index 2bfc1ecd..6ffb7bcf 100644 --- a/poppler/Gfx.cc +++ b/poppler/Gfx.cc @@ -20,7 +20,7 @@ // Copyright (C) 2006-2011 Carlos Garcia Campos <[email protected]> // Copyright (C) 2006, 2007 Jeff Muizelaar <[email protected]> // Copyright (C) 2007, 2008 Brad Hards <[email protected]> -// Copyright (C) 2007, 2011 Adrian Johnson <[email protected]> +// Copyright (C) 2007, 2011, 2017 Adrian Johnson <[email protected]> // Copyright (C) 2007, 2008 Iñigo MartÃnez <[email protected]> // Copyright (C) 2007 Koji Otani <[email protected]> // Copyright (C) 2007 Krzysztof Kowalczyk <[email protected]> diff --git a/poppler/GlobalParams.cc b/poppler/GlobalParams.cc index 1e0cac5c..10830944 100644 --- a/poppler/GlobalParams.cc +++ b/poppler/GlobalParams.cc @@ -35,6 +35,7 @@ // Copyright (C) 2012 Thomas Freitag <[email protected]> // Copyright (C) 2012 Peter Breitenlohner <[email protected]> // Copyright (C) 2013, 2014 Jason Crain <[email protected]> +// Copyright (C) 2017 Christoph Cullmann <[email protected]> // // 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/GlobalParamsWin.cc b/poppler/GlobalParamsWin.cc index 9dca266a..1dc3d4ab 100644 --- a/poppler/GlobalParamsWin.cc +++ b/poppler/GlobalParamsWin.cc @@ -8,6 +8,8 @@ // Copyright (C) 2012 Mark Brand <[email protected]> // Copyright (C) 2013 Adam Reichold <[email protected]> // Copyright (C) 2013 Dmytro Morgun <[email protected]> + // Copyright (C) 2017 Christoph Cullmann <[email protected]> + // Copyright (C) 2017 Albert Astals Cid <[email protected]> TODO: instead of a fixed mapping defined in displayFontTab, it could scan the whole fonts directory, parse TTF files and build font diff --git a/poppler/Outline.cc b/poppler/Outline.cc index 925fc0c4..82f28663 100644 --- a/poppler/Outline.cc +++ b/poppler/Outline.cc @@ -17,6 +17,7 @@ // Copyright (C) 2008, 2016, 2017 Albert Astals Cid <[email protected]> // Copyright (C) 2009 Nick Jones <[email protected]> // Copyright (C) 2016 Jason Crain <[email protected]> +// Copyright (C) 2017 Adrian Johnson <[email protected]> // // 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 9cb48abc..f4eda85b 100644 --- a/poppler/Stream.cc +++ b/poppler/Stream.cc @@ -27,7 +27,7 @@ // Copyright (C) 2012 Oliver Sander <[email protected]> // Copyright (C) 2012 Fabio D'Urso <[email protected]> // Copyright (C) 2012 Even Rouault <[email protected]> -// Copyright (C) 2013 Adrian Johnson <[email protected]> +// Copyright (C) 2013, 2017 Adrian Johnson <[email protected]> // Copyright (C) 2013 Adam Reichold <[email protected]> // Copyright (C) 2013 Pino Toscano <[email protected]> // Copyright (C) 2015 Suzuki Toshiya <[email protected]> diff --git a/poppler/Stream.h b/poppler/Stream.h index 7e67697c..4f83275d 100644 --- a/poppler/Stream.h +++ b/poppler/Stream.h @@ -22,7 +22,7 @@ // Copyright (C) 2011, 2012, 2016 William Bader <[email protected]> // Copyright (C) 2012, 2013 Thomas Freitag <[email protected]> // Copyright (C) 2012, 2013 Fabio D'Urso <[email protected]> -// Copyright (C) 2013 Adrian Johnson <[email protected]> +// Copyright (C) 2013, 2017 Adrian Johnson <[email protected]> // Copyright (C) 2013 Peter Breitenlohner <[email protected]> // Copyright (C) 2013 Adam Reichold <[email protected]> // Copyright (C) 2013 Pino Toscano <[email protected]> diff --git a/splash/SplashBitmap.cc b/splash/SplashBitmap.cc index aae87025..060a858e 100644 --- a/splash/SplashBitmap.cc +++ b/splash/SplashBitmap.cc @@ -15,7 +15,7 @@ // Copyright (C) 2007 Ilmari Heikkinen <[email protected]> // Copyright (C) 2009 Shen Liang <[email protected]> // Copyright (C) 2009 Stefan Thomas <[email protected]> -// Copyright (C) 2010, 2012 Adrian Johnson <[email protected]> +// Copyright (C) 2010, 2012, 2017 Adrian Johnson <[email protected]> // Copyright (C) 2010 Harry Roberts <[email protected]> // Copyright (C) 2010 Christian Feuersänger <[email protected]> // Copyright (C) 2010, 2015 William Bader <[email protected]> diff --git a/splash/SplashBitmap.h b/splash/SplashBitmap.h index 9802bd30..deb65c12 100644 --- a/splash/SplashBitmap.h +++ b/splash/SplashBitmap.h @@ -15,7 +15,7 @@ // Copyright (C) 2009 Shen Liang <[email protected]> // Copyright (C) 2009, 2012 Albert Astals Cid <[email protected]> // Copyright (C) 2009 Stefan Thomas <[email protected]> -// Copyright (C) 2010 Adrian Johnson <[email protected]> +// Copyright (C) 2010, 2017 Adrian Johnson <[email protected]> // Copyright (C) 2010 Harry Roberts <[email protected]> // Copyright (C) 2010 Christian Feuersänger <[email protected]> // Copyright (C) 2010 William Bader <[email protected]> diff --git a/utils/pdftocairo.cc b/utils/pdftocairo.cc index 9aacfb8d..8858f6f3 100644 --- a/utils/pdftocairo.cc +++ b/utils/pdftocairo.cc @@ -19,7 +19,7 @@ // Copyright (C) 2009 Shen Liang <[email protected]> // Copyright (C) 2009 Stefan Thomas <[email protected]> // Copyright (C) 2009, 2010 Albert Astals Cid <[email protected]> -// Copyright (C) 2010, 2011-2016 Adrian Johnson <[email protected]> +// Copyright (C) 2010, 2011-2017 Adrian Johnson <[email protected]> // Copyright (C) 2010, 2014 Hib Eris <[email protected]> // Copyright (C) 2010 Jonathan Liu <[email protected]> // Copyright (C) 2010 William Bader <[email protected]>
_______________________________________________ poppler mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/poppler
