NEWS | 39 +++++++++++++++++++++++++++++++++++ poppler/Annot.cc | 3 +- poppler/Annot.h | 1 poppler/TextOutputDev.cc | 2 - poppler/UTF.h | 1 qt4/src/poppler-annotation-private.h | 5 ++-- qt4/src/poppler-annotation.cc | 6 ++--- qt4/src/poppler-annotation.h | 6 ++--- 8 files changed, 53 insertions(+), 10 deletions(-)
New commits: commit 11a9a620276d199701be5811eb63687ace85ace1 Author: Albert Astals Cid <[email protected]> Date: Fri Sep 21 08:10:15 2012 +0200 Drop the s from AdditionalActionsType diff --git a/qt4/src/poppler-annotation-private.h b/qt4/src/poppler-annotation-private.h index 68c1b8e..3bfb5da 100644 --- a/qt4/src/poppler-annotation-private.h +++ b/qt4/src/poppler-annotation-private.h @@ -1,7 +1,8 @@ -/* poppler-link-extractor-private.h: qt interface to poppler +/* poppler-annotation-private.h: qt interface to poppler * Copyright (C) 2007, Pino Toscano <[email protected]> * Copyright (C) 2012, Tobias Koenig <[email protected]> * Copyright (C) 2012, Fabio D'Urso <[email protected]> + * Copyright (C) 2012, Albert Astals Cid <[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 @@ -102,7 +103,7 @@ class AnnotationPrivate : public QSharedData Ref pdfObjectReference() const; - Link* additionalAction( Annotation::AdditionalActionsType type ) const; + Link* additionalAction( Annotation::AdditionalActionType type ) const; }; } diff --git a/qt4/src/poppler-annotation.cc b/qt4/src/poppler-annotation.cc index c93c5b7..825bbf6 100644 --- a/qt4/src/poppler-annotation.cc +++ b/qt4/src/poppler-annotation.cc @@ -496,7 +496,7 @@ Ref AnnotationPrivate::pdfObjectReference() const return pdfAnnot->getRef(); } -Link* AnnotationPrivate::additionalAction( Annotation::AdditionalActionsType type ) const +Link* AnnotationPrivate::additionalAction( Annotation::AdditionalActionType type ) const { if ( pdfAnnot->getType() != Annot::typeScreen && pdfAnnot->getType() != Annot::typeWidget ) return 0; @@ -4300,7 +4300,7 @@ void ScreenAnnotation::setScreenTitle( const QString &title ) d->title = title; } -Link* ScreenAnnotation::additionalAction( AdditionalActionsType type ) const +Link* ScreenAnnotation::additionalAction( AdditionalActionType type ) const { Q_D( const ScreenAnnotation ); return d->additionalAction( type ); @@ -4352,7 +4352,7 @@ Annotation::SubType WidgetAnnotation::subType() const return AWidget; } -Link* WidgetAnnotation::additionalAction( AdditionalActionsType type ) const +Link* WidgetAnnotation::additionalAction( AdditionalActionType type ) const { Q_D( const WidgetAnnotation ); return d->additionalAction( type ); diff --git a/qt4/src/poppler-annotation.h b/qt4/src/poppler-annotation.h index 85669e0..5adc9a8 100644 --- a/qt4/src/poppler-annotation.h +++ b/qt4/src/poppler-annotation.h @@ -281,7 +281,7 @@ class POPPLER_QT4_EXPORT Annotation * * \since 0.22 */ - enum AdditionalActionsType + enum AdditionalActionType { CursorEnteringAction, ///< Performed when the cursor enters the annotation's active area CursorLeavingAction, ///< Performed when the cursor exists the annotation's active area @@ -869,7 +869,7 @@ class POPPLER_QT4_EXPORT ScreenAnnotation : public Annotation * * \since 0.22 */ - Link* additionalAction( AdditionalActionsType type ) const; + Link* additionalAction( AdditionalActionType type ) const; private: ScreenAnnotation(); @@ -904,7 +904,7 @@ class POPPLER_QT4_EXPORT WidgetAnnotation : public Annotation * * \since 0.22 */ - Link* additionalAction( AdditionalActionsType type ) const; + Link* additionalAction( AdditionalActionType type ) const; private: WidgetAnnotation(); commit 028e0e7ddf8c30d311feb937385ef21acd34a52d Author: Albert Astals Cid <[email protected]> Date: Thu Sep 20 18:13:08 2012 +0200 0.21.0 news diff --git a/NEWS b/NEWS index 2e874b9..69ba3c4 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,42 @@ +Release 0.21.0 + core: + * Support the modification of files with Encrypt + * Annotation improvements + * Form improvements + * Splash: Implement DeviceN support + * Splash: Avoid bogus memory error for tilingPattern + * TextOutputDev: Allow multiple fonts in a TextWord + * Kill the concept of base dir + * PSOutputDev: Always write HiResBoundingBox (Bug #53159) + * Convert UTF-16 to UCS-4 when reading toUnicode cmap + * GooString formatting: add support for uppercase hexadecimal + * Use error() instead of fprintf(stderr, ...) in Annot::layoutText + * poppler-config.h: remove WITH_FONTCONFIGURATION_* macros + + glib: + * Annotation improvements + * Add poppler_page_remove_annot() + * Add poppler_document_new_from_stream + * Add poppler_document_new_from_gfile + * Add poppler_page_find_text_with_options (Bug #2951) + * Demo improvements + * Port tests and demo to GTK+3 + + qt4: + * Add accessor methods for movie poster information + * Make 'additional actions' available in Annotation API (Bug #53589) + * Add whole-page search method to Poppler::Page + * Small changes in tests + + utils: + * pdftohtml: Make the output more xhtml compliant + * pdftohtml: Add -fontfullname. (Bug #49872) + * pdftohtml: Do not invoke gs anymore + + build system: + * Add the possibility of using lcms1 even if lcms2 is installed + * Remove extra fontconfig CFLAGS and LIBS + Release 0.20.4 core: * Improvements regarding embedded file handling. (KDE Bug #306008) commit 2f2d053352e04e434d83dd93dfdbd08ab5b23f2e Author: Albert Astals Cid <[email protected]> Date: Thu Sep 20 18:12:57 2012 +0200 Update copyrights diff --git a/poppler/Annot.cc b/poppler/Annot.cc index eb86147..53cbb67 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-2012 Albert Astals Cid <[email protected]> -// Copyright (C) 2007-2011 Carlos Garcia Campos <[email protected]> +// Copyright (C) 2007-2012 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]> @@ -26,6 +26,7 @@ // Copyright (C) 2011 José Aliste <[email protected]> // Copyright (C) 2012 Fabio D'Urso <[email protected]> // Copyright (C) 2012 Thomas Freitag <[email protected]> +// Copyright (C) 2012 Tobias Koenig <[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/Annot.h b/poppler/Annot.h index 876e70a..e495d06 100644 --- a/poppler/Annot.h +++ b/poppler/Annot.h @@ -23,6 +23,7 @@ // Copyright (C) 2008 Tomas Are Haavet <[email protected]> // Copyright (C) 2009-2011 Albert Astals Cid <[email protected]> // Copyright (C) 2012 Fabio D'Urso <[email protected]> +// Copyright (C) 2012 Tobias Koenig <[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/TextOutputDev.cc b/poppler/TextOutputDev.cc index 452a5ac..2be0b42 100644 --- a/poppler/TextOutputDev.cc +++ b/poppler/TextOutputDev.cc @@ -15,7 +15,7 @@ // // Copyright (C) 2005-2007 Kristian Høgsberg <[email protected]> // Copyright (C) 2005 Nickolay V. Shmyrev <[email protected]> -// Copyright (C) 2006-2008, 2011 Carlos Garcia Campos <[email protected]> +// Copyright (C) 2006-2008, 2011, 2012 Carlos Garcia Campos <[email protected]> // Copyright (C) 2006, 2007 Ed Catmur <[email protected]> // Copyright (C) 2006 Jeff Muizelaar <[email protected]> // Copyright (C) 2007, 2008, 2012 Adrian Johnson <[email protected]> diff --git a/poppler/UTF.h b/poppler/UTF.h index ec51e5a..079b3a2 100644 --- a/poppler/UTF.h +++ b/poppler/UTF.h @@ -14,6 +14,7 @@ // under GPL version 2 or later // // Copyright (C) 2008 Koji Otani <[email protected]> +// Copyright (C) 2012 Adrian Johnson <[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
_______________________________________________ poppler mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/poppler
