Accepting request 850670 from X11:terminals
OBS-URL: https://build.opensuse.org/request/show/850670 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/alacritty?expand=0&rev=12
This commit is contained in:
commit
5263943ad4
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9bc0e6ff9a0772ea522d7e34ab8371faa96e6cc4e588459966585f0dbb848dcb
|
||||
size 1500418
|
3
alacritty-0.6.0.tar.gz
Normal file
3
alacritty-0.6.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c794125a900a6477f1b40168dc9d22674a5326f32e4b083d6f1a45486d2505bf
|
||||
size 1404342
|
@ -1,3 +1,77 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 25 08:33:52 UTC 2020 - Martin Sirringhaus <martin.sirringhaus@suse.com>
|
||||
|
||||
- Update to 0.6.0
|
||||
Packaging
|
||||
* Minimum Rust version has been bumped to 1.43.0
|
||||
* The snapcraft.yaml file has been removed
|
||||
* Updated setab/setaf capabilities in alacritty-direct to use colons
|
||||
* WinPTY is now enabled only when targeting MSVC
|
||||
* Deprecated the WinPTY backend feature, disabling it by default
|
||||
Added
|
||||
* Secondary device attributes escape (CSI > 0 c)
|
||||
* Support for colon separated SGR 38/48
|
||||
* New Ctrl+C binding to cancel search and leave vi mode
|
||||
* Escapes for double underlines (CSI 4 : 2 m) and underline reset
|
||||
(CSI 4 : 0 m)
|
||||
* Configuration file option for sourcing other files (import)
|
||||
* CLI parameter --option/-o to override any configuration field
|
||||
* Escape sequences to report text area size in pixels (CSI 14 t) and in
|
||||
characters (CSI 18 t)
|
||||
* Support for single line terminals dimensions
|
||||
* Right clicking on Wayland's client side decorations will show application menu
|
||||
* Escape sequences to enable and disable window urgency hints
|
||||
(CSI ? 1042 h, CSI ? 1042 l)
|
||||
Changed
|
||||
* Cursors are now inverted when their fixed color is similar to the
|
||||
cell's background
|
||||
* Use the working directory of the terminal foreground process,
|
||||
instead of the shell's working directory, for SpawnNewInstance action
|
||||
* Fallback to normal underline for unsupported underline types in CSI 4 : ? m escapes
|
||||
* The user's background color is now used as the foreground for the render timer
|
||||
* Use yellow/red from the config for error and warning messages instead of fixed colors
|
||||
* Existing CLI parameters are now passed to instances spawned using SpawnNewInstance
|
||||
* Wayland's Client side decorations now use the search bar colors
|
||||
* Reduce memory usage by up to at least 30% with a full scrollback buffer
|
||||
* The number of zerowidth characters per cell is no longer limited to 5
|
||||
* SpawnNewInstance is now using the working directory of the terminal
|
||||
foreground process on macOS
|
||||
Fixed
|
||||
* Incorrect window location with negative window.position config options
|
||||
* Slow rendering performance with HiDPI displays, especially on macOS
|
||||
* Keys swallowed during search when pressing them right before releasing backspace
|
||||
* Crash when a wrapped line is rotated into the last line
|
||||
* Selection wrapping to the top when selecting below the error/warning bar
|
||||
* Pasting into clients only supporting UTF8_STRING mime type on Wayland
|
||||
* Crash when copying/pasting with neither pointer nor keyboard focus on Wayland
|
||||
* Crash due to fd leak on Wayland
|
||||
* IME window position with fullwidth characters in the search bar
|
||||
* Selection expanding over 2 characters when scrolled in history with fullwidth
|
||||
characters in use
|
||||
* Selection scrolling not starting when mouse is over the message bar
|
||||
* Incorrect text width calculation in message bar when the message contains
|
||||
multibyte characters
|
||||
* Remapped caps lock to escape not triggering escape bindings on Wayland
|
||||
* Crash when setting overly long title on Wayland
|
||||
* Switching in and out of various window states, like Fullscreen, not persisting
|
||||
window size on Wayland
|
||||
* Crash when providing 0 for XCURSOR_SIZE on Wayland
|
||||
* Gap between window and server side decorations on KWIN Wayland
|
||||
* Wayland's client side decorations not working after tty switch
|
||||
* Fullscreen startup mode not working on Wayland
|
||||
* Window not being rescaled when changing DPR of the current monitor on Wayland
|
||||
* Crash in some cases when pointer isn't presented upon startup on Wayland
|
||||
* IME not working on Wayland
|
||||
* Crash on startup on GNOME since its 3.37.90 version on Wayland
|
||||
* Touchpad scrolling scrolled less than it should on macOS/Wayland on scaled outputs
|
||||
* Incorrect modifiers at startup on X11
|
||||
* Add and Subtract keys are now named NumpadAdd and NumpadSubtract respectively
|
||||
* Feature checking when cross compiling between different operating systems
|
||||
* Crash when writing to the clipboard fails on Wayland
|
||||
* Crash with large negative font.offset.x/y
|
||||
* Visual bell getting stuck on the first frame
|
||||
* Zerowidth characters in the last column of the line
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Aug 2 22:42:32 UTC 2020 - Matthias Eliasson <elimat@opensuse.org>
|
||||
|
||||
|
@ -19,12 +19,12 @@
|
||||
# Use hardening ldflags.
|
||||
%global rustflags "-Clink-arg=-Wl,-z,relro,-z,now"
|
||||
Name: alacritty
|
||||
Version: 0.5.0
|
||||
Version: 0.6.0
|
||||
Release: 0
|
||||
Summary: A GPU-accelerated terminal emulator
|
||||
License: Apache-2.0
|
||||
URL: https://github.com/jwilm/alacritty/
|
||||
Source: https://github.com/jwilm/alacritty/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
||||
URL: https://github.com/alacritty/alacritty/
|
||||
Source: https://github.com/alacritty/alacritty/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
||||
Source1: vendor.tar.xz
|
||||
Source2: cargo_config
|
||||
Source3: README.suse-maint
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2b6fac58e49a5694f86d2cea3ab1e59ea7de95ba72085708a9596d05f2fad881
|
||||
size 13669080
|
||||
oid sha256:11a8ff3524542c6d369e0156a6c599f2ff47a0e918756714b924709aa261c5f6
|
||||
size 13845336
|
||||
|
Loading…
Reference in New Issue
Block a user