[poppler] 2 commits - CMakeLists.txt cpp/Doxyfile NEWS poppler/Error.cc poppler/UnicodeMapFuncs.h poppler/UTF.cc poppler/UTF.h qt5/src utils/JSInfo.cc utils/pdfdetach.cc utils/pdffonts.cc utils/pdfseparate.cc utils/pdfsig.cc utils/pdftohtml.cc utils/pdftotext.cc utils/printencodings.cc

Albert Astals Cid aacid at kemper.freedesktop.org
Sun Dec 3 19:33:19 UTC 2017


 CMakeLists.txt            |    6 +++---
 NEWS                      |   26 ++++++++++++++++++++++++++
 cpp/Doxyfile              |    2 +-
 poppler/Error.cc          |    2 +-
 poppler/UTF.cc            |    2 +-
 poppler/UTF.h             |    2 +-
 poppler/UnicodeMapFuncs.h |    1 +
 qt5/src/CMakeLists.txt    |    2 +-
 qt5/src/Doxyfile          |    2 +-
 utils/JSInfo.cc           |    2 +-
 utils/pdfdetach.cc        |    2 +-
 utils/pdffonts.cc         |    2 +-
 utils/pdfseparate.cc      |    1 +
 utils/pdfsig.cc           |    1 +
 utils/pdftohtml.cc        |    1 +
 utils/pdftotext.cc        |    1 +
 utils/printencodings.cc   |    1 +
 17 files changed, 44 insertions(+), 12 deletions(-)

New commits:
commit 72e0a3a087f160d819f7697a8536bbee12240c7a
Author: Albert Astals Cid <aacid at kde.org>
Date:   Sun Dec 3 20:25:06 2017 +0100

    0.62.0

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 2ed1398a..d8072a93 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -30,8 +30,8 @@ if (ECM_FOUND)
 endif()
 
 set(POPPLER_MAJOR_VERSION "0")
-set(POPPLER_MINOR_VERSION "61")
-set(POPPLER_MICRO_VERSION "1")
+set(POPPLER_MINOR_VERSION "62")
+set(POPPLER_MICRO_VERSION "0")
 set(POPPLER_VERSION "${POPPLER_MAJOR_VERSION}.${POPPLER_MINOR_VERSION}.${POPPLER_MICRO_VERSION}")
 
 set (CMAKE_CXX_STANDARD 11)
@@ -482,7 +482,7 @@ add_library(poppler STATIC ${poppler_SRCS})
 else()
 add_library(poppler ${poppler_SRCS})
 endif()
-set_target_properties(poppler PROPERTIES VERSION 72.0.0 SOVERSION 72)
+set_target_properties(poppler PROPERTIES VERSION 73.0.0 SOVERSION 73)
 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 733e470c..283dfc42 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,29 @@
+Release 0.62.0
+        core:
+         * Stop supporting lcms1, you really want to use lcms2 :)
+         * Stop supporting openjpeg1, you really want to use openjpeg2 :)
+         * Open files that state 8 bits as third field of W. Bug #103469
+         * GfxLabColorSpace::parse: Fix crash in broken documents. Bug #103582
+         * Fix leak if parseDA fails
+         * Include glibc.h where needed
+         * Document the meaning of the 'type' integer of a shading
+         * Fix UTF test fail
+         * INSTALL: add debug options
+
+        qt5:
+         * Add API to let the rendering process callback to get a partial rendering. Bug #103372
+
+        qt4:
+         * Remove the Qt4 frontend
+
+        utils:
+         * Support unicode on windows console
+         * pdfsig: install man page
+         * sort encoding list
+
+        glib:
+         * demo: fix warning
+
 Release 0.61.1
         core:
          * CairoOutputDev: don't overflow y * stride when accessing image data
diff --git a/cpp/Doxyfile b/cpp/Doxyfile
index 2c8adb03..584d9cbc 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.61.1
+PROJECT_NUMBER         = 0.62.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/CMakeLists.txt b/qt5/src/CMakeLists.txt
index 7993c33b..b54b0251 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 SHARED ${poppler_qt5_SRCS})
-set_target_properties(poppler-qt5 PROPERTIES VERSION 1.11.0 SOVERSION 1)
+set_target_properties(poppler-qt5 PROPERTIES VERSION 1.12.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 3055468f..a58b6b20 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.61.1
+PROJECT_NUMBER         = 0.62.0
 
 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
 # base path where the generated documentation will be put.
commit 90958363fd5e8c5e74a889e0c2140c71a0c09eb6
Author: Albert Astals Cid <aacid at kde.org>
Date:   Sun Dec 3 20:23:09 2017 +0100

    Add missing (C)

diff --git a/poppler/Error.cc b/poppler/Error.cc
index 71bd3ce9..ab43654d 100644
--- a/poppler/Error.cc
+++ b/poppler/Error.cc
@@ -17,7 +17,7 @@
 // Copyright (C) 2005 Albert Astals Cid <aacid at kde.org>
 // Copyright (C) 2007 Krzysztof Kowalczyk <kkowalczyk at gmail.com>
 // Copyright (C) 2012 Marek Kasik <mkasik at redhat.com>
-// Copyright (C) 2013 Adrian Johnson <ajohnson at redneon.com>
+// Copyright (C) 2013, 2017 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/UTF.cc b/poppler/UTF.cc
index 90771943..878837a8 100644
--- a/poppler/UTF.cc
+++ b/poppler/UTF.cc
@@ -14,7 +14,7 @@
 // under GPL version 2 or later
 //
 // Copyright (C) 2008 Koji Otani <sho at bbr.jp>
-// Copyright (C) 2012 Adrian Johnson <ajohnson at redneon.com>
+// Copyright (C) 2012, 2017 Adrian Johnson <ajohnson at redneon.com>
 // Copyright (C) 2012 Hib Eris <hib at hiberis.nl>
 // Copyright (C) 2016 Albert Astals Cid <aacid at kde.org>
 // Copyright (C) 2016 Jason Crain <jason at aquaticape.us>
diff --git a/poppler/UTF.h b/poppler/UTF.h
index bddb926d..704ba4de 100644
--- a/poppler/UTF.h
+++ b/poppler/UTF.h
@@ -4,7 +4,7 @@
 //
 // This file is licensed under the GPLv2 or later
 //
-// Copyright (C) 2012 Adrian Johnson <ajohnson at redneon.com>
+// Copyright (C) 2012, 2017 Adrian Johnson <ajohnson at redneon.com>
 // Copyright (C) 2016 Jason Crain <jason at aquaticape.us>
 //
 //========================================================================
diff --git a/poppler/UnicodeMapFuncs.h b/poppler/UnicodeMapFuncs.h
index 25c21c4e..b89ee6eb 100644
--- a/poppler/UnicodeMapFuncs.h
+++ b/poppler/UnicodeMapFuncs.h
@@ -14,6 +14,7 @@
 // under GPL version 2 or later
 //
 // Copyright (C) 2008 Koji Otani <sho at bbr.jp>
+// Copyright (C) 2017 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/utils/JSInfo.cc b/utils/JSInfo.cc
index 34f31d58..d755aae6 100644
--- a/utils/JSInfo.cc
+++ b/utils/JSInfo.cc
@@ -24,7 +24,7 @@
 #include "Form.h"
 #include "UnicodeMap.h"
 #include "UTF.h"
-#include "Win32Console.h"
+// #include "Win32Console.h"
 
 JSInfo::JSInfo(PDFDoc *docA, int firstPage) {
   doc = docA;
diff --git a/utils/pdfdetach.cc b/utils/pdfdetach.cc
index a39f817e..14498c7d 100644
--- a/utils/pdfdetach.cc
+++ b/utils/pdfdetach.cc
@@ -15,7 +15,7 @@
 //
 // Copyright (C) 2011 Carlos Garcia Campos <carlosgc at gnome.org>
 // Copyright (C) 2013 Yury G. Kudryashov <urkud.urkud at gmail.com>
-// Copyright (C) 2014 Adrian Johnson <ajohnson at redneon.com>
+// Copyright (C) 2014, 2017 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/utils/pdffonts.cc b/utils/pdffonts.cc
index 2867d51f..d8f25a22 100644
--- a/utils/pdffonts.cc
+++ b/utils/pdffonts.cc
@@ -16,7 +16,7 @@
 // Copyright (C) 2006 Dominic Lachowicz <cinamod at hotmail.com>
 // Copyright (C) 2007-2008, 2010 Albert Astals Cid <aacid at kde.org>
 // Copyright (C) 2010 Hib Eris <hib at hiberis.nl>
-// Copyright (C) 2012 Adrian Johnson <ajohnson at redneon.com>
+// Copyright (C) 2012, 2017 Adrian Johnson <ajohnson at redneon.com>
 // Copyright (C) 2013 Suzuki Toshiya <mpsuzuki at hiroshima-u.ac.jp>
 //
 // To see a description of the changes please see the Changelog file that
diff --git a/utils/pdfseparate.cc b/utils/pdfseparate.cc
index 14fcf3f6..6b5a4359 100644
--- a/utils/pdfseparate.cc
+++ b/utils/pdfseparate.cc
@@ -10,6 +10,7 @@
 // Copyright (C) 2013 Daniel Kahn Gillmor <dkg at fifthhorseman.net>
 // Copyright (C) 2013 Suzuki Toshiya <mpsuzuki at hiroshima-u.ac.jp>
 // Copyright (C) 2017 Léonard Michelet <leonard.michelet at smile.fr>
+// Copyright (C) 2017 Adrian Johnson <ajohnson at redneon.com>
 //
 //========================================================================
 #include "config.h"
diff --git a/utils/pdfsig.cc b/utils/pdfsig.cc
index e31048f4..7077ab7f 100644
--- a/utils/pdfsig.cc
+++ b/utils/pdfsig.cc
@@ -9,6 +9,7 @@
 // Copyright 2015, 2017 Albert Astals Cid <aacid at kde.org>
 // Copyright 2016 Markus Kilås <digital at markuspage.com>
 // Copyright 2017 Hans-Ulrich Jüttner <huj at froreich-bioscientia.de>
+// Copyright (C) 2017 Adrian Johnson <ajohnson at redneon.com>
 //
 //========================================================================
 
diff --git a/utils/pdftohtml.cc b/utils/pdftohtml.cc
index 05a5b7e5..91f06ae3 100644
--- a/utils/pdftohtml.cc
+++ b/utils/pdftohtml.cc
@@ -24,6 +24,7 @@
 // Copyright (C) 2012 Luis Parravicini <lparravi at gmail.com>
 // Copyright (C) 2014 Pino Toscano <pino at kde.org>
 // Copyright (C) 2015 William Bader <williambader at hotmail.com>
+// Copyright (C) 2017 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/utils/pdftotext.cc b/utils/pdftotext.cc
index 5c3eaaa5..098eac91 100644
--- a/utils/pdftotext.cc
+++ b/utils/pdftotext.cc
@@ -25,6 +25,7 @@
 // Copyright (C) 2013 Yury G. Kudryashov <urkud.urkud at gmail.com>
 // Copyright (C) 2013 Suzuki Toshiya <mpsuzuki at hiroshima-u.ac.jp>
 // Copyright (C) 2015 Jeremy Echols <jechols at uoregon.edu>
+// Copyright (C) 2017 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/utils/printencodings.cc b/utils/printencodings.cc
index 2c4b9f27..2c098b4b 100644
--- a/utils/printencodings.cc
+++ b/utils/printencodings.cc
@@ -1,5 +1,6 @@
 /*
  * Copyright (C) 2008, Albert Astals Cid <aacid at kde.org>
+ * Copyright (C) 2017, Adrian Johnson <ajohnson at redneon.com>
  *
  * 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


More information about the poppler mailing list