CMakeLists.txt | 4 ++-- NEWS | 33 +++++++++++++++++++++++++++++++++ configure.ac | 2 +- cpp/CMakeLists.txt | 2 +- cpp/Doxyfile | 2 +- cpp/Makefile.am | 2 +- glib/CMakeLists.txt | 2 +- glib/Makefile.am | 2 +- poppler/CairoOutputDev.cc | 2 +- poppler/CairoOutputDev.h | 2 +- poppler/Link.cc | 2 +- poppler/Makefile.am | 2 +- qt4/src/CMakeLists.txt | 2 +- qt4/src/Doxyfile | 2 +- qt4/src/Makefile.am | 2 +- qt5/src/CMakeLists.txt | 2 +- qt5/src/Doxyfile | 2 +- qt5/src/Makefile.am | 2 +- 18 files changed, 51 insertions(+), 18 deletions(-)
New commits: commit 5641644f485b402cd906d3db73a22a00eb00489b Author: Albert Astals Cid <[email protected]> Date: Mon Jul 25 00:14:30 2016 +0200 Poppler 0.46 diff --git a/CMakeLists.txt b/CMakeLists.txt index 34a5bdb..c90d0e8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -22,7 +22,7 @@ if (ECM_FOUND) endif() set(POPPLER_MAJOR_VERSION "0") -set(POPPLER_MINOR_VERSION "45") +set(POPPLER_MINOR_VERSION "46") set(POPPLER_MICRO_VERSION "0") set(POPPLER_VERSION "${POPPLER_MAJOR_VERSION}.${POPPLER_MINOR_VERSION}.${POPPLER_MICRO_VERSION}") @@ -502,7 +502,7 @@ add_library(poppler STATIC ${poppler_SRCS}) else(MSVC) add_library(poppler SHARED ${poppler_SRCS}) endif(MSVC) -set_target_properties(poppler PROPERTIES VERSION 62.0.0 SOVERSION 62) +set_target_properties(poppler PROPERTIES VERSION 63.0.0 SOVERSION 63) 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 d5762ab..0a8ff44 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,36 @@ +Release 0.46.0 + core: + * cairo: fix bug in setAntialias() + * cairo: Fix tiling patterns with BBox with non-zero x,y + * cairo: try finding glyphs in substitute fonts by unicode value. Bug #96994 + * Added XRef modification flag + * Added DocInfo setters & getters + * Be less strict when parsing FitH Link destinations. Bug #96661 + + utils: + * pdftocairo: revert the use of groups for blending into white page + * pdftocairo: Use fprintf for printing errors + * pdfinfo: Don't print pdf info when printing metadata, javascript, or structure. Bug #96801 + + glib: + * Added document property setters & simplified getters + * make document metatag gobject properties writeable + + cpp: + * pass len to GooString constructor in detail::ustring_to_unicode_GooString(). Bug #96426 + * Added functions to save a document + * Added document property setters & getters + + qt4: + * Added document property setters & simplified getters + + qt5: + * Added document property setters & simplified getters + + build system: + * configure: Don't use -fPIC on cygwin + * configure: Work with non gnu greps + Release 0.45.0 core: * SplashOutputDev: Fix iccTransform + splashModeXBGR8 diff --git a/configure.ac b/configure.ac index d545786..f008e25 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ m4_define([poppler_version_major],[0]) -m4_define([poppler_version_minor],[45]) +m4_define([poppler_version_minor],[46]) m4_define([poppler_version_micro],[0]) m4_define([poppler_version],[poppler_version_major.poppler_version_minor.poppler_version_micro]) diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt index 1128016..d702777 100644 --- a/cpp/CMakeLists.txt +++ b/cpp/CMakeLists.txt @@ -23,7 +23,7 @@ set(poppler_cpp_SRCS ) add_library(poppler-cpp SHARED ${poppler_cpp_SRCS}) -set_target_properties(poppler-cpp PROPERTIES VERSION 0.2.1 SOVERSION 0) +set_target_properties(poppler-cpp PROPERTIES VERSION 0.3.0 SOVERSION 0) target_link_libraries(poppler-cpp poppler ${ICONV_LIBRARIES}) if(MSVC) target_link_libraries(poppler-cpp LINK_PRIVATE ${poppler_LIBS}) diff --git a/cpp/Doxyfile b/cpp/Doxyfile index 9a061d0..0bb8461 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.45.0 +PROJECT_NUMBER = 0.46.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/cpp/Makefile.am b/cpp/Makefile.am index 98e2af0..91fb15c 100644 --- a/cpp/Makefile.am +++ b/cpp/Makefile.am @@ -69,6 +69,6 @@ libpoppler_cpp_la_LIBADD = \ $(LIBICONV) libpoppler_cpp_la_LDFLAGS = \ - -version-info 2:1:2 \ + -version-info 3:0:3 \ @create_shared_lib@ \ @auto_import_flags@ diff --git a/glib/CMakeLists.txt b/glib/CMakeLists.txt index e522028..a40fc8a 100644 --- a/glib/CMakeLists.txt +++ b/glib/CMakeLists.txt @@ -81,7 +81,7 @@ set(poppler_glib_generated_SRCS ${CMAKE_SOURCE_DIR}/poppler/CairoRescaleBox.cc ) add_library(poppler-glib SHARED ${poppler_glib_SRCS} ${poppler_glib_generated_SRCS}) -set_target_properties(poppler-glib PROPERTIES VERSION 8.7.0 SOVERSION 8) +set_target_properties(poppler-glib PROPERTIES VERSION 8.8.0 SOVERSION 8) target_link_libraries(poppler-glib poppler ${GLIB2_LIBRARIES} ${CAIRO_LIBRARIES} ${FREETYPE_LIBRARIES}) if(HAVE_PTHREAD) target_link_libraries(poppler-glib -lpthread) diff --git a/glib/Makefile.am b/glib/Makefile.am index 52669e2..c2605cb 100644 --- a/glib/Makefile.am +++ b/glib/Makefile.am @@ -82,7 +82,7 @@ libpoppler_glib_la_LIBADD = \ $(FREETYPE_LIBS) libpoppler_glib_la_LDFLAGS = \ - -version-info 15:0:7 \ + -version-info 16:0:8 \ @create_shared_lib@ \ @auto_import_flags@ diff --git a/poppler/Makefile.am b/poppler/Makefile.am index 3d32e79..26cc82c 100644 --- a/poppler/Makefile.am +++ b/poppler/Makefile.am @@ -327,7 +327,7 @@ libpoppler_la_LIBADD = \ $(win32_libs) libpoppler_la_LDFLAGS = \ - -version-info 62:0:0 \ + -version-info 63:0:0 \ @create_shared_lib@ \ @auto_import_flags@ diff --git a/qt4/src/CMakeLists.txt b/qt4/src/CMakeLists.txt index 189eca2..2b55e6b 100644 --- a/qt4/src/CMakeLists.txt +++ b/qt4/src/CMakeLists.txt @@ -30,7 +30,7 @@ set(poppler_qt4_SRCS ) qt4_automoc(${poppler_qt4_SRCS}) add_library(poppler-qt4 SHARED ${poppler_qt4_SRCS}) -set_target_properties(poppler-qt4 PROPERTIES VERSION 4.9.0 SOVERSION 4) +set_target_properties(poppler-qt4 PROPERTIES VERSION 4.10.0 SOVERSION 4) target_link_libraries(poppler-qt4 poppler ${QT4_QTCORE_LIBRARY} ${QT4_QTGUI_LIBRARY} ${QT4_QTXML_LIBRARY}) if(MSVC) target_link_libraries(poppler-qt4 poppler ${poppler_LIBS}) diff --git a/qt4/src/Doxyfile b/qt4/src/Doxyfile index f0aaee2..f586dbf 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.45.0 +PROJECT_NUMBER = 0.46.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/qt4/src/Makefile.am b/qt4/src/Makefile.am index df37fe3..2fa73b0 100644 --- a/qt4/src/Makefile.am +++ b/qt4/src/Makefile.am @@ -60,7 +60,7 @@ libpoppler_qt4_la_LIBADD = \ $(POPPLER_QT4_LIBS) libpoppler_qt4_la_LDFLAGS = \ - -version-info 13:0:9 \ + -version-info 14:0:10 \ @create_shared_lib@ \ @auto_import_flags@ diff --git a/qt5/src/CMakeLists.txt b/qt5/src/CMakeLists.txt index 091a71f..b4513a7 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.6.0 SOVERSION 1) +set_target_properties(poppler-qt5 PROPERTIES VERSION 1.7.0 SOVERSION 1) target_link_libraries(poppler-qt5 poppler ${Qt5Core_LIBRARIES} ${Qt5Gui_LIBRARIES} ${Qt5Xml_LIBRARIES}) if(MSVC) target_link_libraries(poppler-qt5 poppler ${poppler_LIBS}) diff --git a/qt5/src/Doxyfile b/qt5/src/Doxyfile index 2c1aedd..745a019 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.45.0 +PROJECT_NUMBER = 0.46.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/Makefile.am b/qt5/src/Makefile.am index 4f9f2a9..7f81a76 100644 --- a/qt5/src/Makefile.am +++ b/qt5/src/Makefile.am @@ -60,7 +60,7 @@ libpoppler_qt5_la_LIBADD = \ $(POPPLER_QT5_LIBS) libpoppler_qt5_la_LDFLAGS = \ - -version-info 7:0:6 \ + -version-info 8:0:7 \ @create_shared_lib@ \ @auto_import_flags@ commit 97375143f458a9f12009d798ec43364d548051b9 Author: Albert Astals Cid <[email protected]> Date: Sun Jul 24 23:59:09 2016 +0200 update Copyrights diff --git a/poppler/CairoOutputDev.cc b/poppler/CairoOutputDev.cc index 6cc9bdb..bd18cde 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-2015 Adrian Johnson <[email protected]> +// Copyright (C) 2008-2016 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/CairoOutputDev.h b/poppler/CairoOutputDev.h index 3fa9eca..4a1cd99 100644 --- a/poppler/CairoOutputDev.h +++ b/poppler/CairoOutputDev.h @@ -18,7 +18,7 @@ // Copyright (C) 2005, 2006 Kristian Høgsberg <[email protected]> // Copyright (C) 2005 Nickolay V. Shmyrev <[email protected]> // Copyright (C) 2006-2011, 2013 Carlos Garcia Campos <[email protected]> -// Copyright (C) 2008, 2009, 2011-2015 Adrian Johnson <[email protected]> +// Copyright (C) 2008, 2009, 2011-2016 Adrian Johnson <[email protected]> // Copyright (C) 2008 Michael Vrable <[email protected]> // Copyright (C) 2010-2013 Thomas Freitag <[email protected]> // Copyright (C) 2015 Suzuki Toshiya <[email protected]> diff --git a/poppler/Link.cc b/poppler/Link.cc index adc5f62..d4680db 100644 --- a/poppler/Link.cc +++ b/poppler/Link.cc @@ -16,7 +16,7 @@ // Copyright (C) 2006, 2008 Pino Toscano <[email protected]> // Copyright (C) 2007, 2010, 2011 Carlos Garcia Campos <[email protected]> // Copyright (C) 2008 Hugo Mercier <[email protected]> -// Copyright (C) 2008-2010, 2012-2014 Albert Astals Cid <[email protected]> +// Copyright (C) 2008-2010, 2012-2014, 2016 Albert Astals Cid <[email protected]> // Copyright (C) 2009 Kovid Goyal <[email protected]> // Copyright (C) 2009 Ilya Gorenbein <[email protected]> // Copyright (C) 2012 Tobias Koening <[email protected]>
_______________________________________________ poppler mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/poppler
