Accepting request 707334 from X11:terminals
OBS-URL: https://build.opensuse.org/request/show/707334 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/alacritty?expand=0&rev=5
This commit is contained in:
commit
4e9317be5f
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d335f09ba914faf8d8b2ba91a67672aab3acd1a3bb1528ec3d9339381697f6a1
|
||||
size 892444
|
3
alacritty-0.3.2.tar.gz
Normal file
3
alacritty-0.3.2.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e2bc5323d505d9d487b2fdfc29f82a77e18b17f92de3988742950471808272f7
|
||||
size 1341205
|
@ -1,3 +1,70 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon May 13 14:25:40 UTC 2019 - Xaver Hellauer <xaver@hellauer.bayern>
|
||||
|
||||
- update to 0.3.2
|
||||
Fixed:
|
||||
* Panic on startup when using Conpty on Windows
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Apr 23 09:37:15 UTC 2019 - Dag Jönsson <dag@jnsson.eu>
|
||||
|
||||
- update to 0.3.1
|
||||
Added:
|
||||
* Added ScrollLineUp and ScrollLineDown actions for scrolling line by line
|
||||
Changed:
|
||||
* Alacritty now has a fixed minimum supported Rust version of 1.31.0
|
||||
Fixed:
|
||||
* Reset scrolling region when the RIS escape sequence is received
|
||||
* Subprocess spawning on macros
|
||||
* Unnecessary resize at startup
|
||||
* Text getting blurry after live-reloading shaders with padding active
|
||||
* Resize events are not send to the shell anymore if dimensions haven't
|
||||
changed
|
||||
* Minor performance issues with underline and strikeout checks
|
||||
* Rare bug which would extend underline and strikeout beyond the end of line
|
||||
* Cursors not spanning two lines when over double-width characters
|
||||
* Incorrect cursor dimensions if the font offset isn't 0
|
||||
- refresh vendor.tar.xz
|
||||
- changed buildrequires to reflect project changes
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Apr 9 16:05:59 UTC 2019 - Dag Jönsson <dagjo270@student.liu.se>
|
||||
|
||||
- upate to 0.3.0
|
||||
Added:
|
||||
* Ability to specify starting position with the --position flag
|
||||
* New configuration field window.position allows specifying the starting
|
||||
position
|
||||
* Added the ability to change the selection color
|
||||
* Text will reflow instead of truncating when resizing Alacritty
|
||||
* Underline text and change cursor when hovering over URLs with required
|
||||
modifiers pressed
|
||||
Changed:
|
||||
* Clicking on non-alphabetical characters in front of URLs will no longer
|
||||
open them
|
||||
Fixed
|
||||
* Slow startup time on some X11 systems
|
||||
* On Wayland, the --title flag will set the Window title now
|
||||
* Fix start_maximized option on X11
|
||||
* Terminfo support for extended capabilities
|
||||
* Crash when decreasing scrollback history in config while scrolled in
|
||||
history
|
||||
* Scrollback history live reload only working when shrinking lines
|
||||
- refresh vendor.tar.xz
|
||||
- man page and completions had been moved
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 22 22:11:30 UTC 2019 - Matthias Eliasson <elimat@opensuse.org>
|
||||
|
||||
- update to 0.2.9
|
||||
Changed:
|
||||
* Accept fonts which are smaller in width or height than a single pixel
|
||||
Fixed:
|
||||
* Incorrect font spacing after moving Alacritty between displays
|
||||
- refresh vendor.tar.xz
|
||||
- add --path flag to cargo install which is now required
|
||||
- minor cleanup with spec-cleaner
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 27 15:37:35 UTC 2018 - avindra@opensuse.org
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package alacritty
|
||||
#
|
||||
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -17,7 +17,7 @@
|
||||
|
||||
|
||||
Name: alacritty
|
||||
Version: 0.2.1
|
||||
Version: 0.3.2
|
||||
Release: 0
|
||||
Summary: A GPU-accelerated terminal emulator
|
||||
License: Apache-2.0
|
||||
@ -27,11 +27,11 @@ Source: https://github.com/jwilm/alacritty/archive/v%{version}.tar.gz#/%
|
||||
Source1: vendor.tar.xz
|
||||
BuildRequires: cargo
|
||||
BuildRequires: cmake
|
||||
BuildRequires: fontconfig-devel
|
||||
BuildRequires: freetype-devel
|
||||
BuildRequires: rust
|
||||
BuildRequires: rust-std
|
||||
BuildRequires: pkgconfig
|
||||
BuildRequires: rust >= 1.31.0
|
||||
BuildRequires: xclip
|
||||
BuildRequires: pkgconfig(fontconfig)
|
||||
|
||||
%description
|
||||
Alacritty is a terminal emulator written in Rust that leverages the GPU for
|
||||
@ -67,7 +67,7 @@ BuildArch: noarch
|
||||
The official zsh completion script for alacritty.
|
||||
|
||||
%prep
|
||||
%setup -q -n %{name}-%{version} -a1
|
||||
%setup -q -a1
|
||||
mkdir cargo-home
|
||||
cat >cargo-home/config <<EOF
|
||||
[source.crates-io]
|
||||
@ -89,17 +89,17 @@ cargo build --release %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
export CARGO_HOME=$PWD/cargo-home
|
||||
cargo install --root=%{buildroot}/%{_prefix}
|
||||
cargo install --root=%{buildroot}%{_prefix} --path=.
|
||||
|
||||
# rm duplicate license and useless toml file
|
||||
rm -fr %{buildroot}%{_datadir}
|
||||
rm %{buildroot}%{_prefix}/.crates.toml
|
||||
|
||||
# install man page and completions
|
||||
install -Dm 0644 %{name}.man %{buildroot}/%{_mandir}/man1/%{name}.1
|
||||
install -Dm 0644 %{name}-completions.bash %{buildroot}/%{_datadir}/bash-completion/completions/%{name}
|
||||
install -Dm 0644 %{name}-completions.fish %{buildroot}/%{_datadir}/fish/vendor_completions.d/%{name}.fish
|
||||
install -Dm 0644 %{name}-completions.zsh %{buildroot}/%{_datadir}/zsh/site-functions/_%{name}
|
||||
install -Dm 0644 extra/%{name}.man %{buildroot}/%{_mandir}/man1/%{name}.1
|
||||
install -Dm 0644 extra/completions/%{name}.bash %{buildroot}/%{_datadir}/bash-completion/completions/%{name}
|
||||
install -Dm 0644 extra/completions/%{name}.fish %{buildroot}/%{_datadir}/fish/vendor_completions.d/%{name}.fish
|
||||
install -Dm 0644 extra/completions/_%{name} %{buildroot}/%{_datadir}/zsh/site-functions/_%{name}
|
||||
|
||||
%files
|
||||
%license LICENSE-APACHE
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:32d3d7b2924d750d4dd1f76f2ecc32e1730051800622ef51119fef94401be64b
|
||||
size 13312016
|
||||
oid sha256:78f385b5a74e80ab7ab7902c3afea2ffbde87b2a686c9c5d6f53e426b1aaceef
|
||||
size 221091840
|
||||
|
Loading…
Reference in New Issue
Block a user