games/chess-tui: update to 2.2.0
2.2.0
- feat: blinking selected cell cursor by @thomas-mauran in #169
- feat: improve the color selection popup by @thomas-mauran in #171
- feat: allow engine to have an argument too by @thomas-mauran in #172
- feat: deb build by @thomas-mauran in #173
2.1.2
- build on intel macos
2.1.1
- fix style for the vertical alignment of the left side number
- fix the piece style with different scaling
2.1.0
- ci: build for aarch64-macos, aarch64-linux and x64-windows as well by @jarjk in #162
- feat: add sounds by @thomas-mauran in #161
- feat: lichess + doc + disconnect by @thomas-mauran in #165
[9 lines not shown]
[AMDGPU] Add test for v_fmamk_f16/v_fmaak_f16 in real-true16. NFC
This is to display a bug in real true16 mode that we do not have
an allocatable 16-bit VGPR class and these instructions do not
have VOP3 forms for allocatable VGPR_16 to be used. To use these
instructions 'VGPR_16_Lo128' must be allocable.
virtio: Fix condition for buffer chaining, negotiate VIRTIO_F_ANY_LAYOUT
In 0.9-only time, the VIO_HAVE_MRG_RXBUF macro checked just for the
VIRTIO_NET_F_MRG_RXBUF feature. The meaning was later changed to
(version_1 || VIRTIO_NET_F_MRG_RXBUF), but the new meaning is only
correct for one use of the macro. The buffer chaining must check for the
MRG_RXBUF feature exclusively.
On the other hand, the check if we have to split the header from the
rest of the buffer in the rx queue is a workaround for old kvm versions.
The standard has since then gained the ANY_LAYOUT feature flag to turn
off this workaround. According to the virtio 1.x standard, we should
accept VIRTIO_F_ANY_LAYOUT if it is offered for transitional devices.
ANY_LAYOUT is implicit if VERSION_1 has been negotiated.
Since accepting ANY_LAYOUT only relaxes the requirements for us, we can
simply accept it globally for all virtio device types. vioblk(4) and
vioscsi(4) unconditionally use the strict buffer layout required for
legacy devices without ANY_LAYOUT, anyway.
[4 lines not shown]
[llvm][utils] Make git-llvm-push not convert remote URLs (#173303)
Previously git-llvm-push would convert all remote URLs to HTTPS,
including SSH remotes for reasons not motivated in the original PR. This
would cause issues in some setups where the HTTPs remote would be
read-only. This patch makes it so that git-llvm-push does not convert
SSH remotes to HTTPS remotes, preserving what the user originally
intended.
Fixes #172828.
[CIR] Canonicalization: leverage MLIR traits and folding
Replace custom rewrite patterns with dedicated fold implementations for ScopeOp, or rely on DCE in cases of effect-less SwitchOp.
[libclang/python] Add release notes for `reparse` throwing (#173301)
``TranslationUnit.reparse`` will now throw an exception when an error
occurs. Previously, errors were silently ignored.
[lldb-dap] Avoid unnecessary allocations when creating variables. (#172661)
This reduces unnecessary string allocations and copies when handling the
variables request.