* [PATCH] poppler: Update to version 22.02.0
@ 2022-02-03 21:52 Adolf Belka
2022-02-04 10:10 ` Peter Müller
0 siblings, 1 reply; 2+ messages in thread
From: Adolf Belka @ 2022-02-03 21:52 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 4468 bytes --]
- Update from 21.11.0 to 22.02.0
- Update of rootfile
- Changelog
Release 22.02.0:
core:
* Signature: Add a way to detect unsigned FormFieldSignature
* Signature: Suport background image when using left and right text
* Signature: Fix path where to search for Firefox NSS in Windows
* Signature: Fix NSS code to work correctly in Windows/Android
* Count only signature fields in PDFDoc::getNumSignatureFields
* Minor code improvements
qt:
* Allow signing unsigned signature fields
* Allow passing a background image for the signature when signing
* Allow passing the document password when signing
* Fix leftFontSize being ignored when signing
glib:
* try with utf8 password if latin1 fails
* New method for getting all signature fields of a document
* Fix compile with MSVC
utils:
* pdfsig: Fix compile with MSVC
build system:
* Fix NSS cmake check for MSVC
Release 22.01.0:
core:
* Allow local (relative to dll) fonts dir on Windows
* TextOutputDev: require more spacing between columns. Issue #1093
* Fix crash in Splash::gouraudTriangleShadedFill. Issue #1183
* Fix crash when calling Form::reset()
* GfxSeparationColorSpace: Check validity of colorspace and function. Issue #1184
* Minor code improvements
glib:
* Include glib.h before using defines from it
* Close file descriptors on error
* Plug some memory leaks
* Replace use of deprecated g_memdup/g_time_zone_new
* Remove FD-taking functions on windows
utils:
* pdfsig: Add support for documents with passwords
* pdfsig: Fix signing with -sign if nss password is needed
Release 21.12.0:
core:
* Add API to add images
* CairoOutputDev: Fix de-duping of Flate images
* Fix crash on broken files when using non-default ENABLE_ZLIB_UNCOMPRESS. Issue #393
* Minor code improvements
glib:
* Add API for validation of signatures
* Add API to read/save to file descriptor
utils:
* pdftohtml: Reduce sensitivity of duplicate detection. Issue #1117
build system:
* Increase C++ standard to 17
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/rootfiles/common/poppler | 10 +++++-----
lfs/poppler | 4 ++--
2 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/config/rootfiles/common/poppler b/config/rootfiles/common/poppler
index 546e8cb77..8bd35c272 100644
--- a/config/rootfiles/common/poppler
+++ b/config/rootfiles/common/poppler
@@ -31,6 +31,8 @@ usr/bin/pdfunite
#usr/include/poppler/Dict.h
#usr/include/poppler/Error.h
#usr/include/poppler/ErrorCodes.h
+#usr/include/poppler/FDPDFDocBuilder.h
+#usr/include/poppler/FILECacheLoader.h
#usr/include/poppler/FileSpec.h
#usr/include/poppler/FontEncodingTables.h
#usr/include/poppler/FontInfo.h
@@ -74,8 +76,6 @@ usr/bin/pdfunite
#usr/include/poppler/SecurityHandler.h
#usr/include/poppler/Sound.h
#usr/include/poppler/SplashOutputDev.h
-#usr/include/poppler/StdinCachedFile.h
-#usr/include/poppler/StdinPDFDocBuilder.h
#usr/include/poppler/Stream-CCITT.h
#usr/include/poppler/Stream.h
#usr/include/poppler/StructElement.h
@@ -171,10 +171,10 @@ usr/lib/libpoppler-cpp.so.0
usr/lib/libpoppler-cpp.so.0.9.0
#usr/lib/libpoppler-glib.so
usr/lib/libpoppler-glib.so.8
-usr/lib/libpoppler-glib.so.8.21.0
+usr/lib/libpoppler-glib.so.8.23.0
#usr/lib/libpoppler.so
-usr/lib/libpoppler.so.115
-usr/lib/libpoppler.so.115.0.0
+usr/lib/libpoppler.so.118
+usr/lib/libpoppler.so.118.0.0
#usr/lib/pkgconfig/poppler-cpp.pc
#usr/lib/pkgconfig/poppler-glib.pc
#usr/lib/pkgconfig/poppler.pc
diff --git a/lfs/poppler b/lfs/poppler
index d52c5e2ca..b91f16be6 100644
--- a/lfs/poppler
+++ b/lfs/poppler
@@ -24,7 +24,7 @@
include Config
-VER = 21.11.0
+VER = 22.02.0
THISAPP = poppler-$(VER)
DL_FILE = $(THISAPP).tar.xz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_MD5 = c1139795bc24a02b8a694f77233b8d22
+$(DL_FILE)_MD5 = 5f167d859b0ec3f416dbd929892c3c4d
install : $(TARGET)
--
2.35.1
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] poppler: Update to version 22.02.0
2022-02-03 21:52 [PATCH] poppler: Update to version 22.02.0 Adolf Belka
@ 2022-02-04 10:10 ` Peter Müller
0 siblings, 0 replies; 2+ messages in thread
From: Peter Müller @ 2022-02-04 10:10 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 4750 bytes --]
Reviewed-by: Peter Müller <peter.mueller(a)ipfire.org>
> - Update from 21.11.0 to 22.02.0
> - Update of rootfile
> - Changelog
> Release 22.02.0:
> core:
> * Signature: Add a way to detect unsigned FormFieldSignature
> * Signature: Suport background image when using left and right text
> * Signature: Fix path where to search for Firefox NSS in Windows
> * Signature: Fix NSS code to work correctly in Windows/Android
> * Count only signature fields in PDFDoc::getNumSignatureFields
> * Minor code improvements
> qt:
> * Allow signing unsigned signature fields
> * Allow passing a background image for the signature when signing
> * Allow passing the document password when signing
> * Fix leftFontSize being ignored when signing
> glib:
> * try with utf8 password if latin1 fails
> * New method for getting all signature fields of a document
> * Fix compile with MSVC
> utils:
> * pdfsig: Fix compile with MSVC
> build system:
> * Fix NSS cmake check for MSVC
> Release 22.01.0:
> core:
> * Allow local (relative to dll) fonts dir on Windows
> * TextOutputDev: require more spacing between columns. Issue #1093
> * Fix crash in Splash::gouraudTriangleShadedFill. Issue #1183
> * Fix crash when calling Form::reset()
> * GfxSeparationColorSpace: Check validity of colorspace and function. Issue #1184
> * Minor code improvements
> glib:
> * Include glib.h before using defines from it
> * Close file descriptors on error
> * Plug some memory leaks
> * Replace use of deprecated g_memdup/g_time_zone_new
> * Remove FD-taking functions on windows
> utils:
> * pdfsig: Add support for documents with passwords
> * pdfsig: Fix signing with -sign if nss password is needed
> Release 21.12.0:
> core:
> * Add API to add images
> * CairoOutputDev: Fix de-duping of Flate images
> * Fix crash on broken files when using non-default ENABLE_ZLIB_UNCOMPRESS. Issue #393
> * Minor code improvements
> glib:
> * Add API for validation of signatures
> * Add API to read/save to file descriptor
> utils:
> * pdftohtml: Reduce sensitivity of duplicate detection. Issue #1117
> build system:
> * Increase C++ standard to 17
>
> Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
> ---
> config/rootfiles/common/poppler | 10 +++++-----
> lfs/poppler | 4 ++--
> 2 files changed, 7 insertions(+), 7 deletions(-)
>
> diff --git a/config/rootfiles/common/poppler b/config/rootfiles/common/poppler
> index 546e8cb77..8bd35c272 100644
> --- a/config/rootfiles/common/poppler
> +++ b/config/rootfiles/common/poppler
> @@ -31,6 +31,8 @@ usr/bin/pdfunite
> #usr/include/poppler/Dict.h
> #usr/include/poppler/Error.h
> #usr/include/poppler/ErrorCodes.h
> +#usr/include/poppler/FDPDFDocBuilder.h
> +#usr/include/poppler/FILECacheLoader.h
> #usr/include/poppler/FileSpec.h
> #usr/include/poppler/FontEncodingTables.h
> #usr/include/poppler/FontInfo.h
> @@ -74,8 +76,6 @@ usr/bin/pdfunite
> #usr/include/poppler/SecurityHandler.h
> #usr/include/poppler/Sound.h
> #usr/include/poppler/SplashOutputDev.h
> -#usr/include/poppler/StdinCachedFile.h
> -#usr/include/poppler/StdinPDFDocBuilder.h
> #usr/include/poppler/Stream-CCITT.h
> #usr/include/poppler/Stream.h
> #usr/include/poppler/StructElement.h
> @@ -171,10 +171,10 @@ usr/lib/libpoppler-cpp.so.0
> usr/lib/libpoppler-cpp.so.0.9.0
> #usr/lib/libpoppler-glib.so
> usr/lib/libpoppler-glib.so.8
> -usr/lib/libpoppler-glib.so.8.21.0
> +usr/lib/libpoppler-glib.so.8.23.0
> #usr/lib/libpoppler.so
> -usr/lib/libpoppler.so.115
> -usr/lib/libpoppler.so.115.0.0
> +usr/lib/libpoppler.so.118
> +usr/lib/libpoppler.so.118.0.0
> #usr/lib/pkgconfig/poppler-cpp.pc
> #usr/lib/pkgconfig/poppler-glib.pc
> #usr/lib/pkgconfig/poppler.pc
> diff --git a/lfs/poppler b/lfs/poppler
> index d52c5e2ca..b91f16be6 100644
> --- a/lfs/poppler
> +++ b/lfs/poppler
> @@ -24,7 +24,7 @@
>
> include Config
>
> -VER = 21.11.0
> +VER = 22.02.0
>
> THISAPP = poppler-$(VER)
> DL_FILE = $(THISAPP).tar.xz
> @@ -40,7 +40,7 @@ objects = $(DL_FILE)
>
> $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
>
> -$(DL_FILE)_MD5 = c1139795bc24a02b8a694f77233b8d22
> +$(DL_FILE)_MD5 = 5f167d859b0ec3f416dbd929892c3c4d
>
> install : $(TARGET)
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-02-04 10:10 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-03 21:52 [PATCH] poppler: Update to version 22.02.0 Adolf Belka
2022-02-04 10:10 ` Peter Müller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox