A cross-platform, GPU-accelerated terminal emulator
https://github.com/alacritty/alacritty
Alacritty is a cross platform terminal emulator written in Rust that uses the GPU for rendering.
- Links to X11:terminals / alacritty
- Has a link diff
- Download package
-
Checkout Package
osc -A https://api.opensuse.org checkout home:jlkDE/alacritty && cd $_
- Create Badge
Refresh
Refresh
Source Files
Filename | Size | Changed |
---|---|---|
README.suse-maint | 0000000150 150 Bytes | |
_link | 0000000121 121 Bytes | |
_service | 0000001494 1.46 KB | |
alacritty-0.10.0.tar.xz | 0000966832 944 KB | |
alacritty.changes | 0000035458 34.6 KB | |
alacritty.spec | 0000004520 4.41 KB | |
cargo_config | 0000000100 100 Bytes | |
vendor.tar.xz | 0012954136 12.4 MB |
Revision 2 (latest revision is 25)
JL K (jlkDE)
committed
(revision 2)
- Pin rustflags via specfile - Add .lock to sources - Update to version 0.10.0 * feat: Option colors.transparent_background_colors to allow applying opacity to all background colors * feat: Support for running multiple windows from a single Alacritty instance (see docs/features.md) * feat: Urgency support on Wayland via xdg_activation_v1 * refactor: ExpandSelection is now a configurable mouse binding action * refactor: Config option background_opacity, you should use window.opacity instead * refactor: Reload configuration files when their symbolic link is replaced * refactor: Strip trailing whitespaces when yanking from a block selection * refactor: Display area keeps history position when viewport is cleared * refactor: Commands spawn from the current directory of the foreground shell in Unix-like systems * refactor: Remove trailing newline from strings taken from hints or simple/semantic selections * refactor: Builtin font is now used for box drawing characters from U+2500 to U+259f * refactor: Logs now print the time since startup instead of the local time * fix: Line indicator obstructing vi mode cursor when scrolled into history * fix: Vi mode search starting in the line below the vi cursor * fix: Invisible cursor with matching foreground/background colors * fix: Crash when hovering over a match emptied by post-processing * fix: Crash when the vi cursor is on the scrollback and viewport clear is invoked * fix: Freeze when the vi cursor is on the scrollback and scrollback clear is invoked * fix: Vi cursor on topmost of the display moving downward when scrolled into history with active output * fix: Input lag on Wayland with Nvidia binary driver * fix: Crash when hovering the mouse over fullwidth characters * fix: Do not create logfile if the file already exists M _service A alacritty-0.10.0.tar.xz D alacritty-0.9.0.tar.xz M alacritty.changes M alacritty.spec M vendor.tar.xz Diff for working copy: . Index: _service =================================================================== --- _service (revision d95e03d19d8a83612a3dd7826003ae80) +++ _service (working copy) @@ -6,8 +6,8 @@ <service name="obs_scm" mode="disabled"> <param name="scm">git</param> <param name="url">https://github.com/alacritty/alacritty.git</param> - <param name="revision">fed349aa2c567cbba900d56f72a830be45e0dfc8</param> - <param name="version">0.9.0</param> + <param name="revision">998250f3c3168855ede9ee14be9a52f884f12055</param> + <param name="version">0.10.0</param> <param name="exclude">.builds</param> <param name="exclude">.github</param> Index: alacritty.changes =================================================================== --- alacritty.changes (revision d95e03d19d8a83612a3dd7826003ae80) +++ alacritty.changes (working copy) @@ -1,8 +1,54 @@ +------------------------------------------------------------------- +Thu Feb 3 20:48:50 UTC 2022 - JL K <me@jlk.one> + +- Update to version 0.10.0 + * feat: Option colors.transparent_background_colors to allow + applying opacity to all background colors + * feat: Support for running multiple windows from a single + Alacritty instance (see docs/features.md) + * feat: Urgency support on Wayland via xdg_activation_v1 + * refactor: ExpandSelection is now a configurable mouse binding + action + * refactor: Config option background_opacity, you should use + window.opacity instead + * refactor: Reload configuration files when their symbolic link + is replaced + * refactor: Strip trailing whitespaces when yanking from a block + selection + * refactor: Display area keeps history position when viewport is + cleared + * refactor: Commands spawn from the current directory of the + foreground shell in Unix-like systems + * refactor: Remove trailing newline from strings taken from hints + or simple/semantic selections + * refactor: Builtin font is now used for box drawing characters + from U+2500 to U+259f + * refactor: Logs now print the time since startup instead of the + local time + * fix: Line indicator obstructing vi mode cursor when scrolled + into history + * fix: Vi mode search starting in the line below the vi cursor + * fix: Invisible cursor with matching foreground/background + colors + * fix: Crash when hovering over a match emptied by + post-processing + * fix: Crash when the vi cursor is on the scrollback and viewport + clear is invoked + * fix: Freeze when the vi cursor is on the scrollback and + scrollback clear is invoked + * fix: Vi cursor on topmost of the display moving downward when + scrolled into history with active output + * fix: Input lag on Wayland with Nvidia binary driver + * fix: Crash when hovering the mouse over fullwidth characters + * fix: Do not create logfile if the file already exists +- Pin rustflags via specfile +- Add .lock to sources + ------------------------------------------------------------------- Wed Dec 15 09:07:11 UTC 2021 - Guillaume GARDET <guillaume.gardet@opensuse.org> - Restore the removing of the checksum of config.guess and - config.sub for architectures that modify them. + config.sub for architectures that modify them. It was wrongly dropped with previous commit. ------------------------------------------------------------------- Index: alacritty.spec =================================================================== --- alacritty.spec (revision d95e03d19d8a83612a3dd7826003ae80) +++ alacritty.spec (working copy) @@ -1,7 +1,7 @@ # # spec file for package alacritty # -# Copyright (c) 2021 SUSE LLC +# Copyright (c) 2022 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -16,8 +16,10 @@ # +%global rustflags '-Clink-arg=-Wl,-z,relro,-z,now' + Name: alacritty -Version: 0.9.0 +Version: 0.10.0 Release: 0 Summary: A GPU-accelerated terminal emulator License: Apache-2.0 @@ -26,6 +28,7 @@ Source1: vendor.tar.xz Source2: cargo_config Source3: README.suse-maint +Source4: .lock BuildRequires: cargo-packaging BuildRequires: cmake BuildRequires: fdupes @@ -82,7 +85,7 @@ %endif %build -%{cargo_build} +RUSTFLAGS=%{rustflags} %{cargo_build} %install mkdir -p "%{buildroot}%{_bindir}" Index: vendor.tar.xz =================================================================== Binary file 'vendor.tar.xz' has changed. Index: alacritty-0.10.0.tar.xz =================================================================== Binary file 'alacritty-0.10.0.tar.xz' added. Index: alacritty-0.9.0.tar.xz =================================================================== Binary file 'alacritty-0.9.0.tar.xz' deleted.
Comments 0