CMakeLists.txt | 4 ++-- NEWS | 27 +++++++++++++++++++++++++++ cpp/Doxyfile | 2 +- glib/CMakeLists.txt | 2 +- qt5/src/Doxyfile | 2 +- qt5/src/poppler-link.cc | 4 ++-- qt5/src/poppler-link.h | 6 ++++-- 7 files changed, 38 insertions(+), 9 deletions(-)
New commits: commit 9414cc632c17afb7b78c559447b2044268f06cfc Author: Albert Astals Cid <[email protected]> Date: Thu Dec 6 17:22:06 2018 +0100 Poppler 0.72.0 diff --git a/CMakeLists.txt b/CMakeLists.txt index 88a53c47..fa86ea22 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -36,7 +36,7 @@ if (ECM_FOUND) endif() set(POPPLER_MAJOR_VERSION "0") -set(POPPLER_MINOR_VERSION "71") +set(POPPLER_MINOR_VERSION "72") set(POPPLER_MICRO_VERSION "0") set(POPPLER_VERSION "${POPPLER_MAJOR_VERSION}.${POPPLER_MINOR_VERSION}.${POPPLER_MICRO_VERSION}") @@ -484,7 +484,7 @@ add_library(poppler STATIC ${poppler_SRCS}) else() add_library(poppler ${poppler_SRCS}) endif() -set_target_properties(poppler PROPERTIES VERSION 82.0.0 SOVERSION 82) +set_target_properties(poppler PROPERTIES VERSION 83.0.0 SOVERSION 83) 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 dac411a6..40299059 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,30 @@ +Release 0.72.0: + core: + * Fix checkbox lacking AP not bein able to change state. Issue #655 + * Draw line annotation endings (arrow, circle, ...) + * cairo: Don't use UNIQUE_ID for PS output, to avoid using PS memory on cairo >= 1.5.10 + * Be more stubborn looking for a nssdb. Issue #669 + * GooString::fromInt: Repair the return value. + * Minor performance improvements + * Avoid cycles in PDF parsing + * Stream::makeFilter: Fix memory leak + * Fix various issues with malformed files + * Rename GooString::getCString to GooString::c_str + * Regenerate UnicodeDecompTables.h from python 3.7.1 + + utils: + * pdfdetach: Check for valid embedded file before trying to save it. Issue #661 + * pdfdetach: Check for valid file name of embedded file before using it to determine save path. Issue #660 + * Fix typos in utils. + + glib: + * Fix missing PopplerAttachment destructor call + * Support getting form widget additional actions. + * docs: Small improvements + + qt5: + * Internally compile with -DQT_NO_SIGNALS_SLOTS_KEYWORDS + Release 0.71.0: core: * Replace the implementation of GooString by std::string but keep the exact interface intact. diff --git a/cpp/Doxyfile b/cpp/Doxyfile index ac16cf3d..bdf8e16b 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.71.0 +PROJECT_NUMBER = 0.72.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 beae865a..ecdd38ca 100644 --- a/glib/CMakeLists.txt +++ b/glib/CMakeLists.txt @@ -86,7 +86,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.10.0 SOVERSION 8) +set_target_properties(poppler-glib PROPERTIES VERSION 8.11.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) commit 8db8b4ead169e9ac3ad3f274828f6ad25951a6fb Author: Albert Astals Cid <[email protected]> Date: Thu Dec 6 17:21:32 2018 +0100 qt5: Revert involuntary ABI change diff --git a/qt5/src/Doxyfile b/qt5/src/Doxyfile index 9c967499..58fbafa6 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.71.0 +PROJECT_NUMBER = 0.72.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/poppler-link.cc b/qt5/src/poppler-link.cc index 2ede7f2f..da3d5d8b 100644 --- a/qt5/src/poppler-link.cc +++ b/qt5/src/poppler-link.cc @@ -591,7 +591,7 @@ class LinkMoviePrivate : public LinkPrivate } // LinkRendition - LinkRendition::LinkRendition( const QRectF &linkArea, ::MediaRendition *rendition, int operation, const QString &script, const Ref annotationReference ) + LinkRendition::LinkRendition( const QRectF &linkArea, ::MediaRendition *rendition, int operation, const QString &script, const Ref &annotationReference ) // clazy:exclude=function-args-by-value : Link( *new LinkRenditionPrivate( linkArea, rendition, static_cast<enum ::LinkRendition::RenditionOperation>(operation), script, annotationReference ) ) { } @@ -658,7 +658,7 @@ class LinkMoviePrivate : public LinkPrivate } // LinkMovie - LinkMovie::LinkMovie( const QRectF &linkArea, Operation operation, const QString &annotationTitle, const Ref annotationReference ) + LinkMovie::LinkMovie( const QRectF &linkArea, Operation operation, const QString &annotationTitle, const Ref &annotationReference ) // clazy:exclude=function-args-by-value : Link( *new LinkMoviePrivate( linkArea, operation, annotationTitle, annotationReference ) ) { } diff --git a/qt5/src/poppler-link.h b/qt5/src/poppler-link.h index 01729730..cfca8966 100644 --- a/qt5/src/poppler-link.h +++ b/qt5/src/poppler-link.h @@ -496,7 +496,8 @@ class POPPLER_QT5_EXPORT LinkRendition : public Link * \param annotationReference the object reference of the screen annotation associated with this rendition action * \since 0.22 */ - LinkRendition( const QRectF &linkArea, ::MediaRendition *rendition, int operation, const QString &script, const Ref annotationReference ); + // TODO Next ABI break, remove & from annotationReference + LinkRendition( const QRectF &linkArea, ::MediaRendition *rendition, int operation, const QString &script, const Ref &annotationReference ); /** * Destructor. @@ -595,7 +596,8 @@ class POPPLER_QT5_EXPORT LinkMovie : public Link * * Note: This constructor is supposed to be used by Poppler::Page only. */ - LinkMovie( const QRectF &linkArea, Operation operation, const QString &annotationTitle, const Ref annotationReference ); + // TODO Next ABI break, remove & from annotationReference + LinkMovie( const QRectF &linkArea, Operation operation, const QString &annotationTitle, const Ref &annotationReference ); /** * Destructor. */ _______________________________________________ poppler mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/poppler
