[poppler] 3 commits - CMakeLists.txt configure.ac cpp/Doxyfile gtk-doc.make NEWS poppler/CairoFontEngine.cc poppler/CairoOutputDev.cc poppler/CairoOutputDev.h poppler/GfxFont.cc poppler/Makefile.am qt4/src qt5/src utils/pdftocairo.cc
Albert Astals Cid
aacid at kemper.freedesktop.org
Thu Apr 28 23:25:39 UTC 2016
CMakeLists.txt | 4 ++--
NEWS | 20 ++++++++++++++++++++
configure.ac | 2 +-
cpp/Doxyfile | 2 +-
gtk-doc.make | 2 +-
poppler/CairoFontEngine.cc | 2 +-
poppler/CairoOutputDev.cc | 2 +-
poppler/CairoOutputDev.h | 1 +
poppler/GfxFont.cc | 2 +-
poppler/Makefile.am | 2 +-
qt4/src/Doxyfile | 2 +-
qt5/src/Doxyfile | 2 +-
utils/pdftocairo.cc | 1 +
13 files changed, 33 insertions(+), 11 deletions(-)
New commits:
commit a0c3fd3f18232c126815a129158e0c4cd3a819a9
Author: Albert Astals Cid <aacid at kde.org>
Date: Fri Apr 29 00:14:24 2016 +0200
New version and soversion
diff --git a/CMakeLists.txt b/CMakeLists.txt
index d385893..580ab03 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -22,7 +22,7 @@ if (ECM_FOUND)
endif()
set(POPPLER_MAJOR_VERSION "0")
-set(POPPLER_MINOR_VERSION "42")
+set(POPPLER_MINOR_VERSION "43")
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 59.0.0 SOVERSION 59)
+set_target_properties(poppler PROPERTIES VERSION 60.0.0 SOVERSION 60)
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/configure.ac b/configure.ac
index 5c2f015..72ea87d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
m4_define([poppler_version_major],[0])
-m4_define([poppler_version_minor],[42])
+m4_define([poppler_version_minor],[43])
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 70cb343..88075af 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.42.0
+PROJECT_NUMBER = 0.43.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/gtk-doc.make b/gtk-doc.make
index 45a3350..e4a12a5 100644
--- a/gtk-doc.make
+++ b/gtk-doc.make
@@ -142,7 +142,7 @@ GTK_DOC_V_XML=$(GTK_DOC_V_XML_$(V))
GTK_DOC_V_XML_=$(GTK_DOC_V_XML_$(AM_DEFAULT_VERBOSITY))
GTK_DOC_V_XML_0=@echo " DOC Building XML";
-sgml-build.stamp: setup-build.stamp $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt $(expand_content_files) xml/gtkdocentities.ent
+sgml-build.stamp: setup-build.stamp $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(HFILE_GLOB) $(CFILE_GLOB) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt $(expand_content_files) xml/gtkdocentities.ent
$(GTK_DOC_V_XML)_source_dir='' ; \
for i in $(DOC_SOURCE_DIR) ; do \
_source_dir="$${_source_dir} --source-dir=$$i" ; \
diff --git a/poppler/Makefile.am b/poppler/Makefile.am
index df64dbf..da15c8b 100644
--- a/poppler/Makefile.am
+++ b/poppler/Makefile.am
@@ -327,7 +327,7 @@ libpoppler_la_LIBADD = \
$(win32_libs)
libpoppler_la_LDFLAGS = \
- -version-info 59:0:0 \
+ -version-info 60:0:0 \
@create_shared_lib@ \
@auto_import_flags@
diff --git a/qt4/src/Doxyfile b/qt4/src/Doxyfile
index 41bc8e4..4d4f96b 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.42.0
+PROJECT_NUMBER = 0.43.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 9e4df28..d2a9170 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.42.0
+PROJECT_NUMBER = 0.43.0
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.
commit da91593e834d4e617213466331226347f1688a53
Author: Albert Astals Cid <aacid at kde.org>
Date: Fri Apr 29 00:12:59 2016 +0200
News
diff --git a/NEWS b/NEWS
index 43af835..437a1c6 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,23 @@
+Release 0.43.0
+ core:
+ * Implement sanity check for linearization usage. Bug #92482
+ * Add SymbolMT as an alias for the Symbol font. Bug #93168
+ * Fix some blank files. Bug #94756
+ * cairo: fix fillToStrokePathClip crash and rendering. Bug #62905
+ * cairo: Check if PDF knows the width of 'm' in case of substituted font. Bug #94054
+ * cairo: save mask state and don't extend image mask. bug #94234
+ * SplashOuputDev: Compile with C++11 compilers that don't define isinfinite. Bug #94761
+ * typo fixes
+
+ utils:
+ * pdftocairo: Calculate rotation before scaling. Bug #94655
+
+ qt4:
+ * Fix crash on certain PDF form item activation actions. Bug #94873
+
+ qt5:
+ * Fix crash on certain PDF form item activation actions. Bug #94873
+
Release 0.42.0
core:
* Add the support for version 5 + revision 6 documents. Bug #85368
commit bdd25a2583552fe8e72dcf4bc17d9f488b7c1268
Author: Albert Astals Cid <aacid at kde.org>
Date: Fri Apr 29 00:07:24 2016 +0200
Update Cs
diff --git a/poppler/CairoFontEngine.cc b/poppler/CairoFontEngine.cc
index 1e23d78..e13607f 100644
--- a/poppler/CairoFontEngine.cc
+++ b/poppler/CairoFontEngine.cc
@@ -27,7 +27,7 @@
// Copyright (C) 2010 Jan Kümmel <jan+freedesktop at snorc.org>
// Copyright (C) 2012 Hib Eris <hib at hiberis.nl>
// Copyright (C) 2013 Thomas Freitag <Thomas.Freitag at alfa.de>
-// Copyright (C) 2015 Jason Crain <jason at aquaticape.us>
+// Copyright (C) 2015, 2016 Jason Crain <jason at aquaticape.us>
//
// 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 a4c7a6a..b0987b3 100644
--- a/poppler/CairoOutputDev.cc
+++ b/poppler/CairoOutputDev.cc
@@ -27,7 +27,7 @@
// Copyright (C) 2009, 2010 David Benjamin <davidben at mit.edu>
// Copyright (C) 2011-2014 Thomas Freitag <Thomas.Freitag at alfa.de>
// Copyright (C) 2012 Patrick Pfeifer <p2000 at mailinator.com>
-// Copyright (C) 2012, 2015 Jason Crain <jason at aquaticape.us>
+// Copyright (C) 2012, 2015, 2016 Jason Crain <jason at aquaticape.us>
// Copyright (C) 2015 Suzuki Toshiya <mpsuzuki at hiroshima-u.ac.jp>
//
// To see a description of the changes please see the Changelog file that
diff --git a/poppler/CairoOutputDev.h b/poppler/CairoOutputDev.h
index 0f88778..103a326 100644
--- a/poppler/CairoOutputDev.h
+++ b/poppler/CairoOutputDev.h
@@ -22,6 +22,7 @@
// Copyright (C) 2008 Michael Vrable <mvrable at cs.ucsd.edu>
// Copyright (C) 2010-2013 Thomas Freitag <Thomas.Freitag at alfa.de>
// Copyright (C) 2015 Suzuki Toshiya <mpsuzuki at hiroshima-u.ac.jp>
+// Copyright (C) 2016 Jason Crain <jason at aquaticape.us>
//
// 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/GfxFont.cc b/poppler/GfxFont.cc
index f535d87..ea23e03 100644
--- a/poppler/GfxFont.cc
+++ b/poppler/GfxFont.cc
@@ -30,7 +30,7 @@
// Copyright (C) 2012 Yi Yang <ahyangyi at gmail.com>
// Copyright (C) 2012 Suzuki Toshiya <mpsuzuki at hiroshima-u.ac.jp>
// Copyright (C) 2012 Thomas Freitag <Thomas.Freitag at alfa.de>
-// Copyright (C) 2013-2015 Jason Crain <jason at aquaticape.us>
+// Copyright (C) 2013-2016 Jason Crain <jason at aquaticape.us>
// Copyright (C) 2014 Olly Betts <olly at survex.com>
//
// To see a description of the changes please see the Changelog file that
diff --git a/utils/pdftocairo.cc b/utils/pdftocairo.cc
index 83eeba0..71c60ef 100644
--- a/utils/pdftocairo.cc
+++ b/utils/pdftocairo.cc
@@ -29,6 +29,7 @@
// Copyright (C) 2013 Lu Wang <coolwanglu at gmail.com>
// Copyright (C) 2013 Suzuki Toshiya <mpsuzuki at hiroshima-u.ac.jp>
// Copyright (C) 2014 Rodrigo Rivas Costa <rodrigorivascosta at gmail.com>
+// Copyright (C) 2016 Jason Crain <jason at aquaticape.us>
//
// 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
More information about the poppler
mailing list