CHANGES IN R 4.0.3:
NEW FEATURES:
* On platforms using configure option --with-internal-tzcode,
additional values "internal" and (on macOS only) "macOS" are
accepted for the environment variable TZDIR. (See ?TZDIR.)
On macOS, "macOS" is used by default if the system timezone
database is a newer version than that in the R installation.
* When install.packages(type = "source") fails to find a package in
a repository it mentions package versions which are excluded by
their R version requirement and links to hints on why a package
might not be found.
* The default value for options("timeout") can be set from
enviromnent variable R_DEFAULT_INTERNET_TIMEOUT, still defaulting
to 60 (seconds) if that is not set or invalid.
This may be needed when child R processes are doing downloads,
for example during the installation of source packages which
download jars or other forms of data.
LINK-TIME OPTIMIZATION on a UNIX-ALIKE:
* There is now support for parallelized Link-Time Optimization
(LTO) with GCC and for 'thin' LTO with clang _via_ setting the
LTO macro.
* There is support for setting a different LTO flag for the Fortran
compiler, including to empty when mixing clang and gfortran (as
on macOS). See file config.site.
* There is a new LTO_LD macro to set linker options for LTO
compilation, for example to select an alternative linker or to
parallelize thin LTO.
DEPRECATED AND DEFUNCT:
* The LINPACK argument to chol.default(), chol2inv(),
solve.default() and svd() has been defunct since R 3.1.0. Using
it now gives a warning which will become an error in R 4.1.0.
BUG FIXES:
* The code mitigating stack overflow with PCRE regexps on very long
strings is enabled for PCRE2 < 10.30 also when JIT is enabled,
since stack overflows have been seen in that case.
* Fix to correctly show the group labels in dotchart() (which where
lost in the ylab improvement for R 4.0.0).
* addmargins(*, ..) now also works when fn() is a local function,
thanks to bug report and patch PR#17124 from Alex Bertram.
* rank(x) and hence sort(x) now work when x is an object (as per
is.object(x)) of type "raw" _and_ provides a valid `[` method,
e.g., for gmp::as.bigz(.) numbers.
* chisq.test(*, simulate.p.value=TRUE) and r2dtable() now work
correctly for large table entries (in the millions). Reported by
Sebastian Meyer and investigated by more helpers in PR#16184.
* Low-level socket read/write operations have been fixed to
correctly signal communication errors. Previously, such errors
could lead to a segfault due to invalid memory access. Reported
and debugged by Dmitriy Selivanov in PR#17850.
* quantile(x, pr) works more consistently for pr values slightly
outside [0,1], thanks to Suharto Anggono's PR#17891.
Further, quantile(x, prN, names=FALSE) now works even when prN
contains NAs, thanks to Anggono's PR#17892. Ditto for ordered
factors or Date objects when type = 1 or 3, thanks to PR#17899.
* Libcurl-based internet access, including curlGetHeaders(), was
not respecting the "timeout" option. If this causes
unanticipated timeouts, consider increasing the default by
setting R_DEFAULT_INTERNET_TIMEOUT.
* as.Date(<char>) now also works with an initial "", thanks to
Michael Chirico's PR#17909.
* isS3stdGeneric(f) now detects an S3 generic also when it it is
trace()d, thanks to Gabe Becker's PR#17917.
* R_allocLD() has been fixed to return memory aligned for long
double type PR#16534.
* fisher.test() no longer segfaults when called again after its
internal stack has been exceeded PR#17904.
* Accessing a long vector represented by a compact integer sequence
no longer segfaults (reported and debugged by Hugh Parsonage).
* duplicated() now works also for strings with multiple encodings
inside a single vector PR#17809.
* phyper(11, 15, 0, 12, log.p=TRUE) no longer gives NaN; reported
as PR#17271 by Alexey Stukalov.
* Fix incorrect calculation in logLik.nls() PR#16100, patch from
Sebastian Meyer.
* A very old bug could cause a segfault in model.matrix() when
terms involved logical variables. Part of PR#17879.
* model.frame.default() allowed data = 1, leading to involuntary
variable capture (rest of PR#17879).
* tar() no longer skips non-directory files, thanks to a patch by
Sebastian Meyer, fixing the remaining part of PR#16716.
A Spotify client using Qt as a simpler, lighter alternative to the official
client, inspired by spotify-tui.
Much like spotify-tui, you need an actual Spotify client running, which can be
configured from within the app.
Also like other clients, controlling music playback requires Spotify Premium.
Open source client library for Spotify. It enables applications to use Spotify's
service to contol and play music via various backends, and to act as a Spotify
Connect receiver.
It is an alternative to the official and deprecated closed-source libspotify.
Additionally, it will provide extra features which are not available in the
official library.
Note: librespot only works with Spotify Premium. This will remain the case for
the foreseeable future, as we are unlikely to work on implementing the features
such as limited skips and adverts that would be required to make librespot
compliant with free accounts.
Changelog:
* Allow customizing mangling of generic parameters in C (#575)
* Box<T> simplifies to T* in C (4ce324c)
* ManuallyDrop<T> and MaubeUninit<T> simplify to T in C, and are opaque in C++ (0076a17)
* C++ supports a derive-ostream annotation to derive serialization of structs, unions and enums (#582)
* Large character constants have been fixed on Windows (#586)
* Constants are now generated for typedefs, etc (#589)
* The `sort_by` configuration option has been made to work for constants (#587)
* Default sort order is source order now (sort_by = "None"), and can be changed by the above option (#587)
YeahWM is a h* window manager for X based on evilwm and aewm.
Features:
* Sloppy Focus.
* BeOS-like tabbed titles, which can be repositioned.
* Support for Xinerama.
* Simple Appearance.
* Good keyboard control.
* Creative usage of the mouse.
* Respects aspect size hints.
* Solid resize and move operations.
* Virtual Desktops.
* "Magic" screen edges for desktop switching.
* Snapping to other windows and screen borders when moving windows.
* Small binary size(ca. 23kb).
* Little resource usage.
3.9.0 Release highlights
New syntax features:
PEP 584, union operators added to dict;
PEP 585, type hinting generics in standard collections;
PEP 614, relaxed grammar restrictions on decorators.
New built-in features:
PEP 616, string methods to remove prefixes and suffixes.
New features in the standard library:
PEP 593, flexible function and variable annotations;
os.pidfd_open() added that allows process management without races and signals.
Interpreter improvements:
PEP 573, fast access to module state from methods of C extension types;
PEP 617, CPython now uses a new parser based on PEG;
a number of Python builtins (range, tuple, set, frozenset, list, dict) are now sped up using PEP 590 vectorcall;
garbage collection does not block on resurrected objects;
a number of Python modules (_abc, audioop, _bz2, _codecs, _contextvars, _crypt, _functools, _json, _locale, math, operator, resource, time, _weakref) now use multiphase initialization as defined by PEP 489;
a number of standard library modules (audioop, ast, grp, _hashlib, pwd, _posixsubprocess, random, select, struct, termios, zlib) are now using the stable ABI defined by PEP 384.
New library modules:
PEP 615, the IANA Time Zone Database is now present in the standard library in the zoneinfo module;
an implementation of a topological sort of a graph is now provided in the new graphlib module.
Release process changes:
PEP 602, CPython adopts an annual release cycle.
This was deleted a few years ago due to the gtk1 deprecation, but
removing its dependency on gtk1 is trivial and does not impact
its functionality.
I consider qvwm essential software for fun.
-
qvwm is a window manager for the X Window System which provides a user
experience very close to Windows 95/98. It is small and extremely fast.
Version 0.15
This is the last release before v1.0. In this release, we added more RFCs
implementations and did some refactors for JOSE:
RFC8037: CFRG Elliptic Curve Diffie-Hellman (ECDH) and Signatures in JSON Object Signing and Encryption (JOSE)
RFC7638: JSON Web Key (JWK) Thumbprint
We also fixed bugs for integrations:
Fixed support for HTTPX>=0.14.3
Added OAuth clients of HTTPX back
Fixed parallel token refreshes for HTTPX async OAuth 2 client
Raise OAuthError when callback contains errors
Breaking Change:
The parameter algorithms in JsonWebSignature and JsonWebEncryption
are changed. Usually you don't have to care about it since you won't use it directly.
Whole JSON Web Key is refactored, please check JSON Web Key (JWK)
3.3.0:
* sync_to_async now defaults to thread-sensitive mode being on
* async_to_sync now works inside of forked processes
* WsgiToAsgi now correctly clamps its response body when Content-Length is set
This release contains no new language features, though it does add one
long-awaited standard library feature. It is mostly quality of life
improvements, library stabilizations and const-ifications, and toolchain
improvements.
https://blog.rust-lang.org/2020/10/08/Rust-1.47.html
pkgsrc changes:
---------------
* Remove the pkgconfig file generation since the version of libusb1 cannot
be obtained by parsing LIBUSB_API_VERSION from libusb.h (e.g. FreeBSD
provides 0x01000102 for 1.0.13 and Arch provides 0x01000107 for 1.0.23).
* At least FreeBSD, Debian and Arch provides a libusb-1.0.pc file for
their native implementation. Link this file to ${BUILDLINK_DIR}.
* Add logic in mk/buildlink3 to find pkgconfig files in common pkgconfig
directories (for at least FreeBSD, Debian and Arch).
These no longer support being executed via a symlink, failing with errors
such as:
xcode-select: Failed to locate 'gmake', and no install could be requested
This breaks the entire .tools/bin directory, so we just have to avoid them
and use tools from pkgsrc instead.
It's likely a lot more will need to be added to this list, but this is
enough to get devel/cmake building at least.
This is required for find-libs.mk to continue detecting the presence of
libraries supported by the system. It's definitely not ideal, and only
still works because Apple happens to ship .tdb files for each library, and
these are found via the current "lib${_lib_}.*" glob.
Patch taken from sjmulder@, I only limited it to Big Sur for now in case
there are issues using the SDK directory on older releases.
Changelog:
Changes
Thunderbird will no longer automatically install updates when Preferences tab is opened
Fixes
OpenPGP: Improved support for encrypting with subkeys
OpenPGP: Encrypted messages with international characters were sometimes displayed incorrectly
Single-click deletion of recipient pills with middle mouse button restored
Searching an address book list did not display results
Windows installer was unreadable with Windows in high contrast mode
Dark mode, high contrast, and Windows theming fixes
The new release of macOS removes system libraries from the file system, only
providing access to them via a linker cache and dlopen(). This obviously
breaks many assumptions about how libraries work on Unix systems, and so we
unfortunately need to cripple various checks when running on those systems.
Introduce DARWIN_NO_SYSTEM_LIBS which, when defined, will trigger alternate
behaviour in the infrastructure. Currently this is in two places:
* In CHECK_SHLIBS, skip any path beginning with /usr/lib.
* In registered package metadata, any path beginning with /usr/lib is
removed from REQUIRES.
The former fixes all package builds, while the second will be necessary for
package managers such as pkgin, as they will no longer be able to verify that
those files are available on the target system.
This is obviously a gross hack, and removes our ability to ensure that the
target system is suitable for the packages we are attempting to install, but
Apple have left us with no alternative, and users will unfortunately be left
to find out at runtime instead.
It's likely this will need to be extended to /System/Library paths too, but
this is required first to actually get packages building before we can start
running bulk builds.
Changelog:
Bugs fixed compared to 7.0.2 rc1:
tdf#133358 Crash in: sw::GetParaPropsNode [Caolan McNamara]
tdf#133812 Style 'Result' and 'Result2' have been removed; Subtotals do not get automatic formatting any longer [Eike Rathke]
tdf#134157 Edit with external tool causes a CPU hit [Tomofumi Yagi]
tdf#134782 layout change with paragraph line spacing in table cells caused by fix for bug 125300 [Michael Stahl]
tdf#135879 can not unprotect bookmarks [Michael Stahl]
tdf#136559 Calc freezes when click "All" in auto-filter dialog [Caolan McNamara]
tdf#136737 Grid in the Change Icon dialog is oversized [Caolan McNamara]
tdf#136805 Export to PDF/A-1a is not PDF/A conformant [Jan-Marek Glogowski]
tdf#136985 Crash after resolving comment, undoing and opening redo steps [Caolan McNamara]
Bugs fixed compared to 7.0.1 RC2
ofz#25684 keep ParseCMAP within legal area [Caolan McNamara]
ofz#25696 OOM [Caolan McNamara]
rhbz#1875377 PDF export in calc does not export labels [Caolan McNamara]
rhbz#1878275 Changing "Start at" number never changes unless you do something else to reinitialize bullets and numbering inputs [Caolan McNamara]
tdf#95640 FILEOPEN: Custom lists not imported from MSO XLSX files [Serge Krot]
tdf#96725 CONFIGURATION: "Open With > LibreOffice" missing for AppleWorks (.cwk) files on Mac [Tor Lillqvist]
tdf#103602 new documents fail ODF validation with Error: unexpected attribute "draw:fill" [Michael Stahl]
tdf#107459 MATCH with third parameter MatchType=-1 fails if the SearchVector is passed directly as the result of an array-formula. [Eike Rathke]
tdf#108673 FILESAVE XLSX: Copy-pasting cell validation may result in a sheet reference error saved as invalid xlsx content [Serge Krot]
tdf#112342 FILEOPEN DOCX Page breaks are before the images in Microsoft Word, but after images in LibreOffice Writer [Attila Bakos]
tdf#118682 FILESAVE DOCX formula field exported as plain text, losing the formula [Laszlo Nemeth]
tdf#119286 Sanitize documents using "Find & Replace" getting slower and slower [Noel Grandin]
tdf#120760 FILEOPEN Z-order of objects in attached DOCX is wrong [Szabolcs Toth]
tdf#121189 Chart is not shown after saving .odp as .pptx [Daniel Arato (NISZ)]
tdf#127471 Copied calc diagram in gdi format looks ok under linux, but the fonts looks weird under windows. [Samuel Mehrbrodt]
tdf#127802 FONT EFFECTS: Not possible to hide/unhide when selection contains both hidden and unhidden text (GTK3) [Caolan McNamara]
tdf#127932 Printing progress dialog briefly shows the total page numbers multiplied by ten in the beginning [Juergen Funk]
tdf#131420 Filesave DOCX: Border from frame not present after RT [Tibor Nagy]
tdf#131456 Writer Tabbed: Wrong Portrait icon in Orientation toolbox [Rizal Muttaqin]
tdf#131537 FILESAVE DOCX OLE objects "Display as icon" setting ignored on opening [Daniel Arato (NISZ)]
tdf#131581 Hang/Freeze pressing Search in Expert Configuration without search string [Caolan McNamara]
tdf#131801 add support for paragraph mark formatting with character style for DOCX [Vasily Melenchuk]
tdf#132105 COUNTBLANK function fails with external references [Eike Rathke]
tdf#132160 Crash in swlo!SwRedlineData::SetSeqNo [Michael Stahl]
tdf#132483 FILEOPEN DOCX OLE object aligned to page opens in shifted position [Bakos Attila]
tdf#132555 FILEOPEN PPTX: border around image is missing [Miklos Vajna]
tdf#132561 Export of jpeg or png from Draw shows white/light-grey shadow [Noel Grandin]
tdf#132614 Autocorrect conversion error (bracket to enclosed characters) [DaeHyun Sung]
tdf#132688 Display of diacritics added to existing files is broken in lines with punctuation or footnotes/endnotes [Noel Grandin]
tdf#132940 Crash mergedlo!vcl::Region::operator= (with really specific steps) [Noel Grandin]
tdf#133015 FILEOPEN PPTX: text box gets displaced by text coming from master page (which Office 365 does not show) [Gulsah Kose]
tdf#133163 Saving DOCX document with formula cell in table removes formula [Laszlo Nemeth]
tdf#133327 Calc only saves background color up to column BL for additional row of the same background color with empty row in between ( steps on comment 16 ) [Noel Grandin]
tdf#133490 Unwanted "Text box" movement after Undo'ing last Move [Xisco Fauli, Vasily Melenchuk]
tdf#133502 annotation has wrong position in LO 7.0 [Noel Grandin]
tdf#133564 Text OK on button in Autofilter window doesn't show (macOS) [Thorsten Wagner]
tdf#133853 Number of columns in large sheets 16385 (XFE) instead of XFD (16384) [Aron Budea]
tdf#134174 FILEOPEN PPTX: image shown rotated 90 degrees [Gulsah Kose]
tdf#134225 Pie chart data label moves outside of chart area [Balazs Varga]
tdf#134413 Previews in area bitmap dialog are shrinking after deleting/inserting new items [Caolan McNamara]
tdf#134439 Page Break: editing "Text flow > Breaks" gives differing results depending on where the cursor is situated [Caolan McNamara]
tdf#134477 MsgBox macro function always creates an icon next to the text [Caolan McNamara]
tdf#134491 Calc UI: icons of "Text Extension" radio buttons broken in Calc>Sidebar>Alignment (Regression to 6.4.4) [andreas kainz]
tdf#134583 Gallery: Glow effect paints the document yellow [andreas kainz]
tdf#134607 LO7RC1 - LANGPACK macOS - many versions fail to recognize LibreOffice7 installation as valid on Catalina [Christian Lohmaier]
tdf#134708 Erratic behaviors in Basic IDE [Thorsten Wagner]
tdf#134746 Images disappearing when editing text in libre writer (tracking changes enabled) [Michael Stahl]
tdf#134887 New toolbar button doesn't update the icon after theme change and missing support for extra large icons [Rizal Muttaqin]
tdf#134923 FIND & REPLACE DIALOG: Keyboard Shortcut not recognized [Caolan McNamara]
tdf#134928 Colibre: Paragraph background color bucket in the sidebar has a red stripe which is confusing [Rizal Muttaqin]
tdf#135001 Crash delete/undo an resize shape [Michael Stahl]
tdf#135016 FILESAVE DOCX: Error The file couteps in comment 6 ) [Miklos Vajna]
tdf#135018 CRASH: Track Changes: Accepting All Changes [Michael Stahl]
tdf#135042 Gallery: Incorrect Scrollbar behaviour after resizing the sidebar [Caolan McNamara]
tdf#135056 Freeze hang/after deleting index SwPosition::dumpAsXml [Michael Stahl]
tdf#135094 Slides show completely black in presentation mode (Linux kf5 and gtk3) [Miklos Vajna]
tdf#135128 Writer: Changing shadow's color is changing shadow distance [Caolan McNamara]
tdf#135149 Image in frame in DOCX not deleted when pressing delete [Miklos Vajna]
tdf#135181 UI: Zoom slider in toolbar of Calc's print preview is not transparent (gen) [Noel Grandin]
tdf#135184 FILEOPEN XLSX Dotted lines disappeared [Regina Henschel]
tdf#135265 UI: Manage Changes dialog shows the format changes with the same green + icon as insert changes [Rizal Muttaqin]
tdf#135342 Impress generates a wrong PPTX file after Minimize presentation [Mike Kaganski]
tdf#135395 Going to presentation mode with single font work takes 30 seconds since 7.1 with Skia Raster [Lubos Lunak]
tdf#135412 CRASH: Undoing paste of section with flys [Michael Stahl]
tdf#135457 CRASH in a BASIC macro [Michael Stahl]
tdf#135487 UI: Color stripe for font color or highlight color is missing (skia) [Lubos Lunak]
tdf#135490 Fraction line in formulas not always shown in presentation view (Skia) [Lubos Lunak]
tdf#135500 UI: previously inserted images are broken (not Skia related) [Mike Kaganski]
tdf#135550 List Box not triggering any event macros [Caolan McNamara]
tdf#135565 Fonts preview and libreoffice cover illegible [Caolan McNamara]
tdf#135579 Deinstall of LO 7.0.0.3 on Win7Pro also deletes "VCRUNTIME140.dll" [Mike Kaganski]
tdf#135623 Tables are stacked onto each other after undo of page wrap change [Vasily Melenchuk, Xisco Fauli]
tdf#135625 Change "Drawing objects" in Calc's Navigator from a generic image to drawing object [Rizal Muttaqin]
tdf#135636 Deleting page break not working, if the cursor is on different page [Caolan McNamara]
tdf#135640 Sidebar: Styles tree doesn't expand when clicking on text (gtk3) [Caolan McNamara]
tdf#135661 Image position broken after undo save & reload (and causes save error for DOCX) [Michael Stahl]
tdf#135665 FILEOPEN DOCX VML shape with Tight wrap imported incorrectly [Daniel Arato (NISZ)]
tdf#135670 Colibre: Wrong icon for Square Bevel and Octagon Bevel [Rizal Muttaqin]
tdf#135682 EDITING: If a table is the first element of the document, "Select All" does not select all [Miklos Vajna]
tdf#135721 Image removed after correcting word with right click context menu [Michael Stahl]
tdf#135736 Writer Tabbed: Wrong icon for "More Options" in Page Size toolbox [Rizal Muttaqin]
tdf#135743 For RTL locale, toolbar split button actions mirror popup dialog position and are positioning content unreadable out of frame [Caolan McNamara]
tdf#135755 Crash:right click to Manage Changes List on side bar [Julien Nabet]
tdf#135790 "%MOD1" appears in LO Tip of the Day #41 [Heiko Tietze]
tdf#135799 Error loading user-defined type with fixed-type array data field from password-protected library [Mike Kaganski]
tdf#135872 Sifr: Missing icons for Line Numbering [Rizal Muttaqin]
tdf#135888 copy/paste of text boxes results in separate shape and text frame [Michael Stahl]
tdf#135931 Breeze: Missing icons for Line Numbering [Rizal Muttaqin]
tdf#135942 crashtesting failure on export to docx [Mike Kaganski]
tdf#135950 Immediate CRASH: Highlight multiple cells in a Writer table and select FORMAT -> CHARACTER [Caolan McNamara]
tdf#135965 F1 for help is broken for the LibreLogo command line toolbar item [Caolan McNamara]
tdf#135973 FILESAVE DOCX: Restart Numbering (text:start-value="1") Not Reserved [Vasily Melenchuk]
tdf#135997 SPECIAL CHARACTER DIALOG: Crash in: SvxCharacterMap::updateRecentCharControl() [Mike Kaganski]
tdf#136032 Basic Compiler Bug - incorrect syntax error message - Print #iNumber,"#" [Andreas Heinisch]
tdf#136047 FILEOPEN PPTX: image from master page appears reverted ("white hole") [Mike Kaganski]
tdf#136062 UI Calc Manage Changes dialog has incorrect button texts [Gabor Kelemen]
tdf#136094 Background color doesn't work for all UNO controls (gtk3/kf5) [Michael Weghorn]
tdf#136107 crash on export of selection [Julien Nabet]
tdf#136113 FILEOPEN XLSX Shape editing does not change modified status of file [Noel Grandin]
tdf#136127 Crash: Add Protected PDF file on Photo Album [Julien Nabet]
tdf#136133 LibreOffice crash with GetInvolved and Donate infobar [Julien Nabet]
tdf#136139 Endless loop when opening file containing EMF image [Lubos Lunak]
tdf#136143 Regression Err:448 in Optional arguments [Andreas Heinisch]
tdf#136161 Ctrl+F should highlight the previously searched text, for easy replacement [Caolan McNamara]
tdf#136189 Crash rejecting track and changes sorted by author [Caolan McNamara]
tdf#136238 Deleting a very very large cross page table (26 pages) very very slow [Noel Grandin]
tdf#136240 File Opening ODT: Slow opening (polypolygon issue) (Skia Raster/Vulkan) [Lubos Lunak]
tdf#136242 Calc: Minverse() - when selecting the matrix from function wizard, wrong interval is selected [Caolan McNamara]
tdf#136269 Calc: Inserting a function - Search bar is not focus by default [Caolan McNamara]
tdf#136282 Fix for bug #99197 breaks openning of an rtl ms-word document [Justin Luth]
tdf#136323 LibreOffice 6.4.3.2 crash ASSERT: "object == obj" in qaccessiblecache.cpp, line 122 [Michael Weghorn]
tdf#136364 Multiple non-contiguous ranges (range list/concatenation/union) broken on import from Excel and in UI [Eike Rathke]
tdf#136377 Fedora 32 - dnf instead of yum [Julien Nabet]
tdf#136423 XShapeGrouper::group does not work with a single shape [Samuel Mehrbrodt]
tdf#136455 GTK3: Unable to open Standard Filter in a file with large quantity of data rows [Caolan McNamara]
tdf#136471 Applying a spell checker suggestion adds the result also to the autocorrect replacement list (since 7.0) [Tamas Zolnai]
tdf#136474 Selecting just-created motion path animation effect in the custom animation panel causes undefined funkiness (gen and kf5) [Caolan McNamara]
tdf#136494 Field in Address Book Source dialog overflows its pane [Caolan McNamara]
tdf#136512 Infinite event loop in vcl/unx/gtk3/gtk3gtkdata.cxx [Caolan McNamara]
tdf#136545 CRASH: Running presentation (gen) [Caolan McNamara]
tdf#136553 Writer document canvas does not refresh with Skia rendering [Lubos Lunak]
tdf#136575 Skia: Assert failing opening attachment 42154 [Lubos Lunak]