CMakeLists.txt | 4 ++-- NEWS | 21 +++++++++++++++++++++ cpp/Doxyfile | 2 +- cpp/poppler-document.cpp | 1 + cpp/poppler-font.cpp | 1 + cpp/poppler-page.cpp | 2 +- glib/CMakeLists.txt | 2 +- goo/GooList.h | 1 + goo/grandom.cc | 1 + goo/grandom.h | 3 ++- poppler/Annot.cc | 2 +- poppler/Annot.h | 4 ++-- poppler/CMap.cc | 1 + poppler/CMap.h | 1 + poppler/CairoFontEngine.cc | 1 + poppler/CairoFontEngine.h | 1 + poppler/CairoOutputDev.cc | 1 + poppler/Decrypt.cc | 1 + poppler/FontInfo.cc | 1 + poppler/Gfx.h | 1 + poppler/GfxState.h | 1 + poppler/Link.cc | 1 + poppler/MarkedContentOutputDev.cc | 1 + poppler/Outline.cc | 1 + poppler/OutputDev.cc | 2 +- poppler/PDFDoc.h | 2 +- poppler/PDFDocFactory.cc | 1 + poppler/Page.cc | 1 + poppler/Page.h | 1 + poppler/PageLabelInfo_p.h | 1 + poppler/PopplerCache.h | 1 + poppler/PreScanOutputDev.cc | 2 +- poppler/PreScanOutputDev.h | 2 +- poppler/TextOutputDev.cc | 1 + poppler/UnicodeMap.cc | 2 +- poppler/XRef.cc | 2 ++ poppler/XRef.h | 1 + qt5/src/ArthurOutputDev.h | 2 +- qt5/src/CMakeLists.txt | 2 +- qt5/src/Doxyfile | 2 +- qt5/src/poppler-annotation-helper.h | 2 ++ qt5/src/poppler-annotation.cc | 1 + qt5/src/poppler-fontinfo.cc | 1 + qt5/src/poppler-page.cc | 1 + splash/Splash.cc | 1 + splash/SplashBitmap.cc | 2 +- splash/SplashFTFont.cc | 1 + splash/SplashFTFont.h | 1 + splash/SplashFTFontFile.cc | 2 +- splash/SplashFTFontFile.h | 2 +- splash/SplashFont.cc | 1 + splash/SplashFont.h | 1 + splash/SplashFontEngine.cc | 1 + splash/SplashFontEngine.h | 1 + splash/SplashXPathScanner.cc | 1 + splash/SplashXPathScanner.h | 1 + utils/HtmlFonts.cc | 1 + utils/HtmlFonts.h | 1 + utils/HtmlOutputDev.cc | 1 + utils/ImageOutputDev.h | 1 + utils/pdftocairo-win32.cc | 2 +- utils/printencodings.cc | 1 + 62 files changed, 87 insertions(+), 21 deletions(-)
New commits: commit 1a43637fc8278ba8ede00fa68a7565ad3626edba Author: Albert Astals Cid <[email protected]> Date: Sun Oct 21 18:47:56 2018 +0200 Poppler 0.70.0 diff --git a/CMakeLists.txt b/CMakeLists.txt index 72ee5483..96388a98 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -30,7 +30,7 @@ if (ECM_FOUND) endif() set(POPPLER_MAJOR_VERSION "0") -set(POPPLER_MINOR_VERSION "69") +set(POPPLER_MINOR_VERSION "70") set(POPPLER_MICRO_VERSION "0") set(POPPLER_VERSION "${POPPLER_MAJOR_VERSION}.${POPPLER_MINOR_VERSION}.${POPPLER_MICRO_VERSION}") @@ -480,7 +480,7 @@ add_library(poppler STATIC ${poppler_SRCS}) else() add_library(poppler ${poppler_SRCS}) endif() -set_target_properties(poppler PROPERTIES VERSION 80.0.0 SOVERSION 80) +set_target_properties(poppler PROPERTIES VERSION 81.0.0 SOVERSION 81) if(MINGW) get_target_property(POPPLER_SOVERSION poppler SOVERSION) set_target_properties(poppler PROPERTIES SUFFIX "-${POPPLER_SOVERSION}${CMAKE_SHARED_LIBRARY_SUFFIX}") diff --git a/NEWS b/NEWS index e38866e2..b60f74d9 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,24 @@ +Release 0.70.0 + core: + * FreeText annotations: default to font from default appearance string + * Splash: Speed improvements + * Fix security issues found by oss-fuzz + * Improve page lable parsing + * Use std some std classes instead of self grown ones + * Various internal improvements + + qt5: + * Add Page::index() method + * Improve method to get the page from a label string + + glib: + * Fix crash on missing embedded file + * Add support for PDF subtype property + * Only export symbols in the public API + + utils: + * pdftohtml: Improve font handling + Release 0.69.0 core: * Add annotation font color diff --git a/cpp/Doxyfile b/cpp/Doxyfile index 0e035427..137ac3f5 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.69.0 +PROJECT_NUMBER = 0.70.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 3fd2a751..97317f03 100644 --- a/glib/CMakeLists.txt +++ b/glib/CMakeLists.txt @@ -85,7 +85,7 @@ set(poppler_glib_generated_SRCS ${CMAKE_SOURCE_DIR}/poppler/CairoRescaleBox.cc ) add_library(poppler-glib ${poppler_glib_SRCS} ${poppler_glib_generated_SRCS}) -set_target_properties(poppler-glib PROPERTIES VERSION 8.9.0 SOVERSION 8) +set_target_properties(poppler-glib PROPERTIES VERSION 8.10.0 SOVERSION 8) set_target_properties(poppler-glib PROPERTIES C_VISIBILITY_PRESET hidden) set_target_properties(poppler-glib PROPERTIES CXX_VISIBILITY_PRESET hidden) set_target_properties(poppler-glib PROPERTIES VISIBILITY_INLINES_HIDDEN 1) diff --git a/qt5/src/CMakeLists.txt b/qt5/src/CMakeLists.txt index 20bb13aa..ffa16fa8 100644 --- a/qt5/src/CMakeLists.txt +++ b/qt5/src/CMakeLists.txt @@ -30,7 +30,7 @@ set(poppler_qt5_SRCS ArthurOutputDev.cc ) add_library(poppler-qt5 ${poppler_qt5_SRCS}) -set_target_properties(poppler-qt5 PROPERTIES VERSION 1.16.0 SOVERSION 1) +set_target_properties(poppler-qt5 PROPERTIES VERSION 1.17.0 SOVERSION 1) if(MINGW) get_target_property(POPPLER_QT5_SOVERSION poppler-qt5 SOVERSION) set_target_properties(poppler-qt5 PROPERTIES SUFFIX "-${POPPLER_QT5_SOVERSION}${CMAKE_SHARED_LIBRARY_SUFFIX}") diff --git a/qt5/src/Doxyfile b/qt5/src/Doxyfile index af1c7ebc..031796e8 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.69.0 +PROJECT_NUMBER = 0.70.0 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. commit 2639d577cfebac60c81788442359cfac975e222d Author: Albert Astals Cid <[email protected]> Date: Sun Oct 21 18:46:26 2018 +0200 Remove commented out code diff --git a/poppler/Annot.h b/poppler/Annot.h index 4de6d251..7f4d9796 100644 --- a/poppler/Annot.h +++ b/poppler/Annot.h @@ -1415,7 +1415,6 @@ private: // inherited from Annot // AnnotBorderBS border; // BS Dict *parent; // Parent -// GBool addDingbatsResource; Ref updatedAppearanceStream; // {-1,-1} if updateAppearanceStream has never been called }; commit af161a35025edfca7c96e66ad8642e85b5b504cb Author: Albert Astals Cid <[email protected]> Date: Sun Oct 21 18:43:56 2018 +0200 Update (C) diff --git a/cpp/poppler-document.cpp b/cpp/poppler-document.cpp index 477a7556..4b21d318 100644 --- a/cpp/poppler-document.cpp +++ b/cpp/poppler-document.cpp @@ -2,6 +2,7 @@ * Copyright (C) 2009-2011, Pino Toscano <[email protected]> * Copyright (C) 2016 Jakub Alba <[email protected]> * Copyright (C) 2017, Albert Astals Cid <[email protected]> + * Copyright (C) 2018, Adam Reichold <[email protected]> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/cpp/poppler-font.cpp b/cpp/poppler-font.cpp index 041a10ce..f338287e 100644 --- a/cpp/poppler-font.cpp +++ b/cpp/poppler-font.cpp @@ -1,6 +1,7 @@ /* * Copyright (C) 2009, Pino Toscano <[email protected]> * Copyright (C) 2015, Tamas Szekeres <[email protected]> + * Copyright (C) 2018, Adam Reichold <[email protected]> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/cpp/poppler-page.cpp b/cpp/poppler-page.cpp index 35182c86..ed9d2300 100644 --- a/cpp/poppler-page.cpp +++ b/cpp/poppler-page.cpp @@ -1,6 +1,6 @@ /* * Copyright (C) 2009-2010, Pino Toscano <[email protected]> - * Copyright (C) 2017, Albert Astals Cid <[email protected]> + * Copyright (C) 2017, 2018, Albert Astals Cid <[email protected]> * Copyright (C) 2017, Jason Alan Palmer <[email protected]> * Copyright (C) 2018, Suzuki Toshiya <[email protected]> * Copyright (C) 2018, Adam Reichold <[email protected]> diff --git a/goo/GooList.h b/goo/GooList.h index 7cd7fea1..3e052700 100644 --- a/goo/GooList.h +++ b/goo/GooList.h @@ -14,6 +14,7 @@ // under GPL version 2 or later // // Copyright (C) 2012, 2018 Albert Astals Cid <[email protected]> +// Copyright (C) 2018 Adam Reichold <[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/grandom.cc b/goo/grandom.cc index dfecbe7a..62d11c17 100644 --- a/goo/grandom.cc +++ b/goo/grandom.cc @@ -6,6 +6,7 @@ * Pseudo-random number generation * * Copyright (C) 2012 Fabio D'Urso <[email protected]> + * Copyright (C) 2018 Adam Reichold <[email protected]> */ #include "grandom.h" diff --git a/goo/grandom.h b/goo/grandom.h index b70dd7e2..63bca38f 100644 --- a/goo/grandom.h +++ b/goo/grandom.h @@ -6,7 +6,8 @@ * Pseudo-random number generation * * Copyright (C) 2012 Fabio D'Urso <[email protected]> - */ + * Copyright (C) 2018 Adam Reichold <[email protected]> + */ #ifndef GRANDOM_H #define GRANDOM_H diff --git a/poppler/Annot.cc b/poppler/Annot.cc index d4c20415..4f7a18c4 100644 --- a/poppler/Annot.cc +++ b/poppler/Annot.cc @@ -16,7 +16,7 @@ // Copyright (C) 2006 Scott Turner <[email protected]> // Copyright (C) 2007, 2008 Julien Rebetez <[email protected]> // Copyright (C) 2007-2013, 2015-2018 Albert Astals Cid <[email protected]> -// Copyright (C) 2007-2013 Carlos Garcia Campos <[email protected]> +// Copyright (C) 2007-2013, 2018 Carlos Garcia Campos <[email protected]> // Copyright (C) 2007, 2008 Iñigo Martínez <[email protected]> // Copyright (C) 2007 Jeff Muizelaar <[email protected]> // Copyright (C) 2008, 2011 Pino Toscano <[email protected]> diff --git a/poppler/Annot.h b/poppler/Annot.h index c9554bdc..4de6d251 100644 --- a/poppler/Annot.h +++ b/poppler/Annot.h @@ -15,7 +15,7 @@ // // Copyright (C) 2006 Scott Turner <[email protected]> // Copyright (C) 2007, 2008 Julien Rebetez <[email protected]> -// Copyright (C) 2007-2011, 2013, 2015 Carlos Garcia Campos <[email protected]> +// Copyright (C) 2007-2011, 2013, 2015, 2018 Carlos Garcia Campos <[email protected]> // Copyright (C) 2007, 2008 Iñigo Martínez <[email protected]> // Copyright (C) 2008 Michael Vrable <[email protected]> // Copyright (C) 2008 Hugo Mercier <[email protected]> @@ -30,6 +30,7 @@ // Copyright (C) 2018 Dileep Sankhla <[email protected]> // Copyright (C) 2018 Tobias Deiminger <[email protected]> // Copyright (C) 2018 Oliver Sander <[email protected]> +// Copyright (C) 2018 Adam Reichold <[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/CMap.cc b/poppler/CMap.cc index cc083638..a8fea41b 100644 --- a/poppler/CMap.cc +++ b/poppler/CMap.cc @@ -17,6 +17,7 @@ // Copyright (C) 2008, 2009, 2017, 2018 Albert Astals Cid <[email protected]> // Copyright (C) 2013 Fabio D'Urso <[email protected]> // Copyright (C) 2017 Adrian Johnson <[email protected]> +// Copyright (C) 2018 Adam Reichold <[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/CMap.h b/poppler/CMap.h index acf00a2b..17544d4c 100644 --- a/poppler/CMap.h +++ b/poppler/CMap.h @@ -16,6 +16,7 @@ // Copyright (C) 2008 Koji Otani <[email protected]> // Copyright (C) 2009, 2018 Albert Astals Cid <[email protected]> // Copyright (C) 2012, 2017 Adrian Johnson <[email protected]> +// Copyright (C) 2018 Adam Reichold <[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/CairoFontEngine.cc b/poppler/CairoFontEngine.cc index 4a8b4898..e9cc924e 100644 --- a/poppler/CairoFontEngine.cc +++ b/poppler/CairoFontEngine.cc @@ -28,6 +28,7 @@ // Copyright (C) 2012 Hib Eris <[email protected]> // Copyright (C) 2013 Thomas Freitag <[email protected]> // Copyright (C) 2015, 2016 Jason Crain <[email protected]> +// Copyright (C) 2018 Adam Reichold <[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/CairoFontEngine.h b/poppler/CairoFontEngine.h index 0a0219a5..75049804 100644 --- a/poppler/CairoFontEngine.h +++ b/poppler/CairoFontEngine.h @@ -20,6 +20,7 @@ // Copyright (C) 2006, 2010 Carlos Garcia Campos <[email protected]> // Copyright (C) 2008, 2017 Adrian Johnson <[email protected]> // Copyright (C) 2013 Thomas Freitag <[email protected]> +// Copyright (C) 2018 Adam Reichold <[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 35493ac7..a58dab1d 100644 --- a/poppler/CairoOutputDev.cc +++ b/poppler/CairoOutputDev.cc @@ -30,6 +30,7 @@ // Copyright (C) 2012, 2015, 2016 Jason Crain <[email protected]> // Copyright (C) 2015 Suzuki Toshiya <[email protected]> // Copyright (C) 2018 Klarälvdalens Datakonsult AB, a KDAB Group company, <[email protected]>. Work sponsored by the LiMux project of the city of Munich +// Copyright (C) 2018 Adam Reichold <[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/Decrypt.cc b/poppler/Decrypt.cc index 3cc6ada8..e679f299 100644 --- a/poppler/Decrypt.cc +++ b/poppler/Decrypt.cc @@ -21,6 +21,7 @@ // Copyright (C) 2013, 2017 Adrian Johnson <[email protected]> // Copyright (C) 2016 Alok Anand <[email protected]> // Copyright (C) 2016 Thomas Freitag <[email protected]> +// Copyright (C) 2018 Adam Reichold <[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/FontInfo.cc b/poppler/FontInfo.cc index c54d21b0..a3884b07 100644 --- a/poppler/FontInfo.cc +++ b/poppler/FontInfo.cc @@ -13,6 +13,7 @@ // Copyright (C) 2011 Carlos Garcia Campos <[email protected]> // Copyright (C) 2012 Fabio D'Urso <[email protected]> // Copyright (C) 2018 Klarälvdalens Datakonsult AB, a KDAB Group company, <[email protected]>. Work sponsored by the LiMux project of the city of Munich +// Copyright (C) 2018 Adam Reichold <[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/Gfx.h b/poppler/Gfx.h index 9abbbe3c..d25411e0 100644 --- a/poppler/Gfx.h +++ b/poppler/Gfx.h @@ -23,6 +23,7 @@ // Copyright (C) 2010 Christian Feuersänger <[email protected]> // Copyright (C) 2013 Fabio D'Urso <[email protected]> // Copyright (C) 2018 Klarälvdalens Datakonsult AB, a KDAB Group company, <[email protected]>. Work sponsored by the LiMux project of the city of Munich +// Copyright (C) 2018 Adam Reichold <[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/GfxState.h b/poppler/GfxState.h index 0af19040..cd8e3a12 100644 --- a/poppler/GfxState.h +++ b/poppler/GfxState.h @@ -24,6 +24,7 @@ // Copyright (C) 2013 Lu Wang <[email protected]> // Copyright (C) 2015, 2017 Adrian Johnson <[email protected]> // Copyright (C) 2017 Oliver Sander <[email protected]> +// Copyright (C) 2018 Adam Reichold <[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/Link.cc b/poppler/Link.cc index b29e9847..d262ea6a 100644 --- a/poppler/Link.cc +++ b/poppler/Link.cc @@ -22,6 +22,7 @@ // Copyright (C) 2012 Tobias Koening <[email protected]> // Copyright (C) 2018 Klarälvdalens Datakonsult AB, a KDAB Group company, <[email protected]>. Work sponsored by the LiMux project of the city of Munich // Copyright (C) 2018 Intevation GmbH <[email protected]> +// Copyright (C) 2018 Adam Reichold <[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/MarkedContentOutputDev.cc b/poppler/MarkedContentOutputDev.cc index a1f89c7a..cefc0787 100644 --- a/poppler/MarkedContentOutputDev.cc +++ b/poppler/MarkedContentOutputDev.cc @@ -5,6 +5,7 @@ // This file is licensed under the GPLv2 or later // // Copyright 2013 Igalia S.L. +// Copyright 2018 Albert Astals Cid <[email protected]> // //======================================================================== diff --git a/poppler/Outline.cc b/poppler/Outline.cc index cad67f3e..ec45edbf 100644 --- a/poppler/Outline.cc +++ b/poppler/Outline.cc @@ -19,6 +19,7 @@ // Copyright (C) 2016 Jason Crain <[email protected]> // Copyright (C) 2017 Adrian Johnson <[email protected]> // Copyright (C) 2018 Klarälvdalens Datakonsult AB, a KDAB Group company, <[email protected]>. Work sponsored by the LiMux project of the city of Munich +// Copyright (C) 2018 Adam Reichold <[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/OutputDev.cc b/poppler/OutputDev.cc index 1897eed1..b72f0a40 100644 --- a/poppler/OutputDev.cc +++ b/poppler/OutputDev.cc @@ -17,7 +17,7 @@ // Copyright (C) 2006 Thorkild Stray <[email protected]> // Copyright (C) 2007, 2017 Adrian Johnson <[email protected]> // Copyright (C) 2009 Carlos Garcia Campos <[email protected]> -// Copyright (C) 2009, 2012, 2013 Albert Astals Cid <[email protected]> +// Copyright (C) 2009, 2012, 2013, 2018 Albert Astals Cid <[email protected]> // Copyright (C) 2012 Thomas Freitag <[email protected]> // Copyright (C) 2018 Adam Reichold <[email protected]> // diff --git a/poppler/PDFDoc.h b/poppler/PDFDoc.h index a2807054..71315600 100644 --- a/poppler/PDFDoc.h +++ b/poppler/PDFDoc.h @@ -25,7 +25,7 @@ // Copyright (C) 2011, 2013, 2014, 2016 Thomas Freitag <[email protected]> // Copyright (C) 2012 Fabio D'Urso <[email protected]> // Copyright (C) 2013, 2017 Adrian Johnson <[email protected]> -// Copyright (C) 2013 Adam Reichold <[email protected]> +// Copyright (C) 2013, 2018 Adam Reichold <[email protected]> // Copyright (C) 2013 Adrian Perez de Castro <[email protected]> // Copyright (C) 2015 André Guerreiro <[email protected]> // Copyright (C) 2015 André Esser <[email protected]> diff --git a/poppler/PDFDocFactory.cc b/poppler/PDFDocFactory.cc index ff160366..874ae50e 100644 --- a/poppler/PDFDocFactory.cc +++ b/poppler/PDFDocFactory.cc @@ -7,6 +7,7 @@ // Copyright 2010 Hib Eris <[email protected]> // Copyright 2010 Albert Astals Cid <[email protected]> // Copyright 2017 Adrian Johnson <[email protected]> +// Copyright 2018 Adam Reichold <[email protected]> // //======================================================================== diff --git a/poppler/Page.cc b/poppler/Page.cc index acd3820d..7891d2d4 100644 --- a/poppler/Page.cc +++ b/poppler/Page.cc @@ -29,6 +29,7 @@ // Copyright (C) 2013 Jason Crain <[email protected]> // Copyright (C) 2013, 2017 Adrian Johnson <[email protected]> // Copyright (C) 2015 Philipp Reinkemeier <[email protected]> +// Copyright (C) 2018 Adam Reichold <[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/Page.h b/poppler/Page.h index 185fe949..7a8a531b 100644 --- a/poppler/Page.h +++ b/poppler/Page.h @@ -23,6 +23,7 @@ // Copyright (C) 2012, 2017, 2018 Albert Astals Cid <[email protected]> // Copyright (C) 2013 Thomas Freitag <[email protected]> // Copyright (C) 2013, 2017 Adrian Johnson <[email protected]> +// Copyright (C) 2018 Adam Reichold <[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/PageLabelInfo_p.h b/poppler/PageLabelInfo_p.h index 6553c325..52b25042 100644 --- a/poppler/PageLabelInfo_p.h +++ b/poppler/PageLabelInfo_p.h @@ -6,6 +6,7 @@ // Copyright (C) 2005, 2009, 2014 Albert Astals Cid <[email protected]> // Copyright (C) 2011 Simon Kellner <[email protected]> // Copyright (C) 2012 Fabio D'Urso <[email protected]> +// Copyright (C) 2018 Adam Reichold <[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/PopplerCache.h b/poppler/PopplerCache.h index 3587cb91..47a333cc 100644 --- a/poppler/PopplerCache.h +++ b/poppler/PopplerCache.h @@ -7,6 +7,7 @@ // Copyright (C) 2009 Koji Otani <[email protected]> // Copyright (C) 2009, 2010, 2017, 2018 Albert Astals Cid <[email protected]> // Copyright (C) 2010 Carlos Garcia Campos <[email protected]> +// Copyright (C) 2018 Adam Reichold <[email protected]> // //======================================================================== diff --git a/poppler/PreScanOutputDev.cc b/poppler/PreScanOutputDev.cc index 15965d36..bc85eced 100644 --- a/poppler/PreScanOutputDev.cc +++ b/poppler/PreScanOutputDev.cc @@ -14,7 +14,7 @@ // under GPL version 2 or later // // Copyright (C) 2009 Carlos Garcia Campos <[email protected]> -// Copyright (C) 2010, 2011 Albert Astals Cid <[email protected]> +// Copyright (C) 2010, 2011, 2018 Albert Astals Cid <[email protected]> // Copyright (C) 2011, 2014 William Bader <[email protected]> // Copyright (C) 2011, 2013 Thomas Freitag <[email protected]> // Copyright (C) 2011 Adrian Johnson <[email protected]> diff --git a/poppler/PreScanOutputDev.h b/poppler/PreScanOutputDev.h index c312f281..8393fc88 100644 --- a/poppler/PreScanOutputDev.h +++ b/poppler/PreScanOutputDev.h @@ -14,7 +14,7 @@ // under GPL version 2 or later // // Copyright (C) 2009 Carlos Garcia Campos <[email protected]> -// Copyright (C) 2010 Albert Astals Cid <[email protected]> +// Copyright (C) 2010, 2018 Albert Astals Cid <[email protected]> // Copyright (C) 2011, 2014 William Bader <[email protected]> // Copyright (C) 2011, 2013 Thomas Freitag <[email protected]> // Copyright (C) 2011 Adrian Johnson <[email protected]> diff --git a/poppler/TextOutputDev.cc b/poppler/TextOutputDev.cc index a3b49d1c..4355169b 100644 --- a/poppler/TextOutputDev.cc +++ b/poppler/TextOutputDev.cc @@ -38,6 +38,7 @@ // Copyright (C) 2016 Khaled Hosny <[email protected]> // Copyright (C) 2018 Klarälvdalens Datakonsult AB, a KDAB Group company, <[email protected]>. Work sponsored by the LiMux project of the city of Munich // Copyright (C) 2018 Sanchit Anand <[email protected]> +// Copyright (C) 2018 Adam Reichold <[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/UnicodeMap.cc b/poppler/UnicodeMap.cc index 38ca9f67..b66f36f5 100644 --- a/poppler/UnicodeMap.cc +++ b/poppler/UnicodeMap.cc @@ -14,7 +14,7 @@ // under GPL version 2 or later // // Copyright (C) 2010 Jakub Wilk <[email protected]> -// Copyright (C) 2017 Albert Astals Cid <[email protected]> +// Copyright (C) 2017, 2018 Albert Astals Cid <[email protected]> // Copyright (C) 2017 Adrian Johnson <[email protected]> // Copyright (C) 2017 Jean Ghali <[email protected]> // Copyright (C) 2018 Adam Reichold <[email protected]> diff --git a/poppler/XRef.cc b/poppler/XRef.cc index 70fc2a22..e9734b2f 100644 --- a/poppler/XRef.cc +++ b/poppler/XRef.cc @@ -25,6 +25,8 @@ // Copyright (C) 2013, 2014, 2017 Adrian Johnson <[email protected]> // Copyright (C) 2013 Pino Toscano <[email protected]> // Copyright (C) 2016 Jakub Alba <[email protected]> +// Copyright (C) 2018 Adam Reichold <[email protected]> +// Copyright (C) 2018 Tobias Deiminger <[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/XRef.h b/poppler/XRef.h index 2f74a2e8..191fe80f 100644 --- a/poppler/XRef.h +++ b/poppler/XRef.h @@ -23,6 +23,7 @@ // Copyright (C) 2012, 2013 Fabio D'Urso <[email protected]> // Copyright (C) 2013, 2017 Adrian Johnson <[email protected]> // Copyright (C) 2016 Jakub Alba <[email protected]> +// Copyright (C) 2018 Adam Reichold <[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/qt5/src/ArthurOutputDev.h b/qt5/src/ArthurOutputDev.h index c1ac37d3..12d3883f 100644 --- a/qt5/src/ArthurOutputDev.h +++ b/qt5/src/ArthurOutputDev.h @@ -14,7 +14,7 @@ // under GPL version 2 or later // // Copyright (C) 2005 Brad Hards <[email protected]> -// Copyright (C) 2005 Albert Astals Cid <[email protected]> +// Copyright (C) 2005, 2018 Albert Astals Cid <[email protected]> // Copyright (C) 2009, 2011 Carlos Garcia Campos <[email protected]> // Copyright (C) 2010 Pino Toscano <[email protected]> // Copyright (C) 2011 Andreas Hartmetz <[email protected]> diff --git a/qt5/src/poppler-annotation-helper.h b/qt5/src/poppler-annotation-helper.h index 0247ad85..93e29c31 100644 --- a/qt5/src/poppler-annotation-helper.h +++ b/qt5/src/poppler-annotation-helper.h @@ -3,6 +3,8 @@ * Copyright (C) 2008, Pino Toscano <[email protected]> * Copyright (C) 2012, Fabio D'Urso <[email protected]> * Copyright (C) 2018, Dileep Sankhla <[email protected]> + * Copyright (C) 2018, Carlos Garcia Campos <[email protected]> + * Copyright (C) 2018, Oliver Sander <[email protected]> * Adapting code from * Copyright (C) 2004 by Enrico Ros <[email protected]> * diff --git a/qt5/src/poppler-annotation.cc b/qt5/src/poppler-annotation.cc index ecebe04e..01817f09 100644 --- a/qt5/src/poppler-annotation.cc +++ b/qt5/src/poppler-annotation.cc @@ -9,6 +9,7 @@ * Copyright (C) 2018 Intevation GmbH <[email protected]> * Copyright (C) 2018 Dileep Sankhla <[email protected]> * Copyright (C) 2018 Tobias Deiminger <[email protected]> + * Copyright (C) 2018 Carlos Garcia Campos <[email protected]> * Adapting code from * Copyright (C) 2004 by Enrico Ros <[email protected]> * diff --git a/qt5/src/poppler-fontinfo.cc b/qt5/src/poppler-fontinfo.cc index 954017c9..80519dda 100644 --- a/qt5/src/poppler-fontinfo.cc +++ b/qt5/src/poppler-fontinfo.cc @@ -4,6 +4,7 @@ * Copyright (C) 2005, Brad Hards <[email protected]> * Copyright (C) 2005-2008, 2015, Albert Astals Cid <[email protected]> * Copyright (C) 2008, 2009, Pino Toscano <[email protected]> + * Copyright (C) 2018, Adam Reichold <[email protected]> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/qt5/src/poppler-page.cc b/qt5/src/poppler-page.cc index ed4ef36d..9bcb4945 100644 --- a/qt5/src/poppler-page.cc +++ b/qt5/src/poppler-page.cc @@ -21,6 +21,7 @@ * Copyright (C) 2017 Adrian Johnson <[email protected]> * Copyright (C) 2017, 2018 Klarälvdalens Datakonsult AB, a KDAB Group company, <[email protected]>. Work sponsored by the LiMux project of the city of Munich * Copyright (C) 2018 Intevation GmbH <[email protected]> + * Copyright (C) 2018, Tobias Deiminger <[email protected]> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/splash/Splash.cc b/splash/Splash.cc index 18a40675..00740dbd 100644 --- a/splash/Splash.cc +++ b/splash/Splash.cc @@ -20,6 +20,7 @@ // Copyright (C) 2012, 2017 Adrian Johnson <[email protected]> // Copyright (C) 2012 Matthias Kramm <[email protected]> // Copyright (C) 2018 Stefan Brüns <[email protected]> +// Copyright (C) 2018 Adam Reichold <[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/splash/SplashBitmap.cc b/splash/SplashBitmap.cc index e1b8bcbd..bedc6f42 100644 --- a/splash/SplashBitmap.cc +++ b/splash/SplashBitmap.cc @@ -21,7 +21,7 @@ // Copyright (C) 2010, 2015 William Bader <[email protected]> // Copyright (C) 2011-2013 Thomas Freitag <[email protected]> // Copyright (C) 2012 Anthony Wesley <[email protected]> -// Copyright (C) 2015 Adam Reichold <[email protected]> +// Copyright (C) 2015, 2018 Adam Reichold <[email protected]> // Copyright (C) 2016 Kenji Uno <[email protected]> // Copyright (C) 2018 Martin Packman <[email protected]> // diff --git a/splash/SplashFTFont.cc b/splash/SplashFTFont.cc index b990a0b4..d347af30 100644 --- a/splash/SplashFTFont.cc +++ b/splash/SplashFTFont.cc @@ -18,6 +18,7 @@ // Copyright (C) 2011 Andreas Hartmetz <[email protected]> // Copyright (C) 2012 Thomas Freitag <[email protected]> // Copyright (C) 2017 Adrian Johnson <[email protected]> +// Copyright (C) 2018 Oliver Sander <[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/splash/SplashFTFont.h b/splash/SplashFTFont.h index 68875c49..25376e9a 100644 --- a/splash/SplashFTFont.h +++ b/splash/SplashFTFont.h @@ -15,6 +15,7 @@ // Copyright (C) 2009 Petr Gajdos <[email protected]> // Copyright (C) 2011 Andreas Hartmetz <[email protected]> // Copyright (C) 2017 Adrian Johnson <[email protected]> +// Copyright (C) 2018 Oliver Sander <[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/splash/SplashFTFontFile.cc b/splash/SplashFTFontFile.cc index e932195e..b2bf4a5c 100644 --- a/splash/SplashFTFontFile.cc +++ b/splash/SplashFTFontFile.cc @@ -13,7 +13,7 @@ // // Copyright (C) 2006 Takashi Iwai <[email protected]> // Copyright (C) 2014, 2017 Adrian Johnson <[email protected]> -// Copyright (C) 2017 Oliver Sander <[email protected]> +// Copyright (C) 2017, 2018 Oliver Sander <[email protected]> // Copyright (C) 2018 Albert Astals Cid <[email protected]> // // To see a description of the changes please see the Changelog file that diff --git a/splash/SplashFTFontFile.h b/splash/SplashFTFontFile.h index 5f0fd489..f312a662 100644 --- a/splash/SplashFTFontFile.h +++ b/splash/SplashFTFontFile.h @@ -12,7 +12,7 @@ // under GPL version 2 or later // // Copyright (C) 2006 Takashi Iwai <[email protected]> -// Copyright (C) 2017 Oliver Sander <[email protected]> +// Copyright (C) 2017, 2018 Oliver Sander <[email protected]> // Copyright (C) 2017 Adrian Johnson <[email protected]> // // To see a description of the changes please see the Changelog file that diff --git a/splash/SplashFont.cc b/splash/SplashFont.cc index 873d97d7..ecedd621 100644 --- a/splash/SplashFont.cc +++ b/splash/SplashFont.cc @@ -12,6 +12,7 @@ // under GPL version 2 or later // // Copyright (C) 2007-2008, 2010, 2014 Albert Astals Cid <[email protected]> +// Copyright (C) 2018 Oliver Sander <[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/splash/SplashFont.h b/splash/SplashFont.h index 5995e4f4..4b7fe363 100644 --- a/splash/SplashFont.h +++ b/splash/SplashFont.h @@ -12,6 +12,7 @@ // under GPL version 2 or later // // Copyright (C) 2007-2008, 2018 Albert Astals Cid <[email protected]> +// Copyright (C) 2018 Oliver Sander <[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/splash/SplashFontEngine.cc b/splash/SplashFontEngine.cc index 8775aeb8..330ec642 100644 --- a/splash/SplashFontEngine.cc +++ b/splash/SplashFontEngine.cc @@ -19,6 +19,7 @@ // Copyright (C) 2013 Thomas Freitag <[email protected]> // Copyright (C) 2015 Dmytro Morgun <[email protected]> // Copyright (C) 2017 Adrian Johnson <[email protected]> +// Copyright (C) 2018 Oliver Sander <[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/splash/SplashFontEngine.h b/splash/SplashFontEngine.h index 93acaa9f..ea887f05 100644 --- a/splash/SplashFontEngine.h +++ b/splash/SplashFontEngine.h @@ -17,6 +17,7 @@ // Copyright (C) 2011 Andreas Hartmetz <[email protected]> // Copyright (C) 2013 Thomas Freitag <[email protected]> // Copyright (C) 2017 Adrian Johnson <[email protected]> +// Copyright (C) 2018 Oliver Sander <[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/splash/SplashXPathScanner.cc b/splash/SplashXPathScanner.cc index 9b6943dd..036370ae 100644 --- a/splash/SplashXPathScanner.cc +++ b/splash/SplashXPathScanner.cc @@ -14,6 +14,7 @@ // Copyright (C) 2008, 2010, 2014 Albert Astals Cid <[email protected]> // Copyright (C) 2010 Paweł Wiejacha <[email protected]> // Copyright (C) 2013, 2014 Thomas Freitag <[email protected]> +// Copyright (C) 2018 Stefan Brüns <[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/splash/SplashXPathScanner.h b/splash/SplashXPathScanner.h index 979d7786..5e4bd727 100644 --- a/splash/SplashXPathScanner.h +++ b/splash/SplashXPathScanner.h @@ -13,6 +13,7 @@ // // Copyright (C) 2013, 2014 Thomas Freitag <[email protected]> // Copyright (C) 2018 Albert Astals Cid <[email protected]> +// Copyright (C) 2018 Stefan Brüns <[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/utils/HtmlFonts.cc b/utils/HtmlFonts.cc index fca3e708..9ba91e9c 100644 --- a/utils/HtmlFonts.cc +++ b/utils/HtmlFonts.cc @@ -29,6 +29,7 @@ // Copyright (C) 2017 Jason Crain <[email protected]> // Copyright (C) 2018 Klarälvdalens Datakonsult AB, a KDAB Group company, <[email protected]>. Work sponsored by the LiMux project of the city of Munich // Copyright (C) 2018 Steven Boswell <[email protected]> +// Copyright (C) 2018 Adam Reichold <[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/utils/HtmlFonts.h b/utils/HtmlFonts.h index 431be6bd..7d0a7fb3 100644 --- a/utils/HtmlFonts.h +++ b/utils/HtmlFonts.h @@ -22,6 +22,7 @@ // Copyright (C) 2011 Steven Murdoch <[email protected]> // Copyright (C) 2011 Joshua Richardson <[email protected]> // Copyright (C) 2012 Igor Slepchin <[email protected]> +// Copyright (C) 2018 Adam Reichold <[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/utils/HtmlOutputDev.cc b/utils/HtmlOutputDev.cc index e265eaa0..8980f63c 100644 --- a/utils/HtmlOutputDev.cc +++ b/utils/HtmlOutputDev.cc @@ -42,6 +42,7 @@ // Copyright (C) 2017 Caolán McNamara <[email protected]> // Copyright (C) 2018 Klarälvdalens Datakonsult AB, a KDAB Group company, <[email protected]>. Work sponsored by the LiMux project of the city of Munich // Copyright (C) 2018 Thibaut Brard <[email protected]> +// Copyright (C) 2018 Adam Reichold <[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/utils/ImageOutputDev.h b/utils/ImageOutputDev.h index 74e6b320..61001c4c 100644 --- a/utils/ImageOutputDev.h +++ b/utils/ImageOutputDev.h @@ -19,6 +19,7 @@ // Copyright (C) 2010 Jakob Voss <[email protected]> // Copyright (C) 2012, 2013, 2017 Adrian Johnson <[email protected]> // Copyright (C) 2013 Thomas Freitag <[email protected]> +// Copyright (C) 2018 Albert Astals Cid <[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/utils/pdftocairo-win32.cc b/utils/pdftocairo-win32.cc index 21eb737c..35783a71 100644 --- a/utils/pdftocairo-win32.cc +++ b/utils/pdftocairo-win32.cc @@ -4,7 +4,7 @@ // // Copyright (C) 2014 Rodrigo Rivas Costa <[email protected]> // Copyright (C) 2014, 2017 Adrian Johnson <[email protected]> -// Copyright (C) 2017 Albert Astals Cid <[email protected]> +// Copyright (C) 2017, 2018 Albert Astals Cid <[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/utils/printencodings.cc b/utils/printencodings.cc index 8e4669ee..d4d25c73 100644 --- a/utils/printencodings.cc +++ b/utils/printencodings.cc @@ -1,6 +1,7 @@ /* * Copyright (C) 2008, Albert Astals Cid <[email protected]> * Copyright (C) 2017, Adrian Johnson <[email protected]> + * Copyright (C) 2018, Adam Reichold <[email protected]> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by _______________________________________________ poppler mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/poppler
