copyq: update to 15.0.0
* Added
- CSS properties for pinned/notes indicator color and width. See
Plugin Indicators.
- One Dark theme. Thanks to @jetm (Javier Tia).
- Diagnostic information in About dialog and version output for easier
troubleshooting.
- Script function stats() now includes per-process memory information.
* Changed
- "Show under mouse cursor" shortcut now hides the window if it is already
visible (#2272).
- Updated icon font to Font Awesome 7.2.0.
- Dropped private Qt header usage (replaced with public QNativeInterface API).
- Dropped support for unmaintained Qt 5 version of the app.
- Improved performance of scripts.
[14 lines not shown]
[Clang] diagnosing missing Vulkan environment when using SPIR-V triple (#190840)
When a user passes '-target spirv' without specififying a vulkan
environment ttriple, SPIRVTargetInfo will fire an assert instead of
throwing an error diagnostic. Added this diagnostic in
CompilerInstance::createTarget() before target is initialized. Fixes
https://github.com/llvm/llvm-project/issues/189964
[X86] combineINSERT_SUBVECTOR - attempt to widen mask predicate as scalar integer instead of inserting into a zero vXi1 vector (#192699)
Fold vXi1 insert_subvector(zero_vector(),bitcast(scalar_mask),idx) ->
bitcast(shl(zext(scalar_mask),idx))
vXi1 zero widening and insertion has to rely on kshiftl/kshiftr pairs,
but if the mask was a scalar it can be a lot cheaper to just widen it to
a wider (legal) scalar first.
Cleans up some codegen for #192034 - first step towards pruning all the
VMOVSH patterns we've ended up :/
libarchive: Staticize some variables
This code was not being built due to errors in our libarchive
configuration. Now that those have been addressed, staticize some
variables that trip a “no previous extern declaration” error. This
is a subset of upstream PR 2962.
MFC after: 1 week
Reviewed by: mm
Differential Revision: https://reviews.freebsd.org/D56471
Firewall: Aliases - fix typo in error log (remove url as it has no value anyway) and make parser a bit more resilient by trapping all errors. closes https://github.com/opnsense/core/issues/10168