- Update to version 20220905.102802.7d4b8249+git117:
* term: support utf8 mouse reporting (DECSET 1005) * cargo update * docs: changelog for https://github.com/wez/wezterm/issues/2559 * Allow cursor visibility to be changed by widgets * Add ResetTerminal and pane:inject_output method * add window-focus-changed event * Expose applying an AttributeChange on CellAttributes * x11: explicitly enable Dri2 * validate the config to prevent div by 0 for initial_cols/initial_rows * tweak --always-new-process messaging OBS-URL: https://build.opensuse.org/package/show/X11:terminals/wezterm?expand=0&rev=38
This commit is contained in:
parent
a7062831da
commit
c27ca45f49
2
_service
2
_service
@ -3,7 +3,7 @@
|
|||||||
<param name="url">https://github.com/wez/wezterm.git</param>
|
<param name="url">https://github.com/wez/wezterm.git</param>
|
||||||
<param name="versionformat">@PARENT_TAG@+git@TAG_OFFSET@</param>
|
<param name="versionformat">@PARENT_TAG@+git@TAG_OFFSET@</param>
|
||||||
<param name="scm">git</param>
|
<param name="scm">git</param>
|
||||||
<param name="revision">86c9d7814860a93cc16d5edc204751ea27e17f03</param>
|
<param name="revision">ed63d728bfe5b628352c9715617b7ca68ff96a54</param>
|
||||||
<param name="versionrewrite-pattern">(\d+)-(\d+)-(\w+)</param>
|
<param name="versionrewrite-pattern">(\d+)-(\d+)-(\w+)</param>
|
||||||
<param name="versionrewrite-replacement">\1.\2.\3</param>
|
<param name="versionrewrite-replacement">\1.\2.\3</param>
|
||||||
<param name="changesgenerate">enable</param>
|
<param name="changesgenerate">enable</param>
|
||||||
|
12
cargo_config
12
cargo_config
@ -1,18 +1,18 @@
|
|||||||
[source.crates-io]
|
[source.crates-io]
|
||||||
replace-with = "vendored-sources"
|
replace-with = "vendored-sources"
|
||||||
|
|
||||||
|
[source."https://github.com/rust-x-bindings/rust-xcb"]
|
||||||
|
git = "https://github.com/rust-x-bindings/rust-xcb"
|
||||||
|
rev = "a85a4cf8937898b1da972367df4648143ede38ea"
|
||||||
|
replace-with = "vendored-sources"
|
||||||
|
|
||||||
[source."https://github.com/wez/libssh-rs.git"]
|
[source."https://github.com/wez/libssh-rs.git"]
|
||||||
git = "https://github.com/wez/libssh-rs.git"
|
git = "https://github.com/wez/libssh-rs.git"
|
||||||
replace-with = "vendored-sources"
|
replace-with = "vendored-sources"
|
||||||
|
|
||||||
[source."https://github.com/wez/rust-xcb"]
|
|
||||||
git = "https://github.com/wez/rust-xcb"
|
|
||||||
branch = "ffi"
|
|
||||||
replace-with = "vendored-sources"
|
|
||||||
|
|
||||||
[source."https://github.com/wez/xcb-imdkit-rs.git"]
|
[source."https://github.com/wez/xcb-imdkit-rs.git"]
|
||||||
git = "https://github.com/wez/xcb-imdkit-rs.git"
|
git = "https://github.com/wez/xcb-imdkit-rs.git"
|
||||||
rev = "ede7c71b85fe2537efef6cf999a45690316211cf"
|
branch = "waiting-on-release"
|
||||||
replace-with = "vendored-sources"
|
replace-with = "vendored-sources"
|
||||||
|
|
||||||
[source.vendored-sources]
|
[source.vendored-sources]
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:c94c9602b53335ace2f93100640567ee768ca819fb6c310abafab6634d75ffaf
|
oid sha256:6950946dfa6af82892f3c4ac0349f2198d8d294b17b173674a4f21c2dc503311
|
||||||
size 91670232
|
size 93007403
|
||||||
|
3
wezterm-20220905.102802.7d4b8249+git117.tar.gz
Normal file
3
wezterm-20220905.102802.7d4b8249+git117.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:aef15130e1cd1e7361e0684a02c7974283e814b39f8be983a7f17814e9df05db
|
||||||
|
size 543057920
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:6868c5aeb957e63c8e8bca30a074b7b4432ee030338d95340583d9967ed7aa36
|
|
||||||
size 119311695
|
|
@ -1,5 +1,20 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 11 12:05:42 UTC 2022 - socvirnyl.estela@gmail.com
|
||||||
|
|
||||||
|
- Update to version 20220905.102802.7d4b8249+git117:
|
||||||
|
* term: support utf8 mouse reporting (DECSET 1005)
|
||||||
|
* cargo update
|
||||||
|
* docs: changelog for https://github.com/wez/wezterm/issues/2559
|
||||||
|
* Allow cursor visibility to be changed by widgets
|
||||||
|
* Add ResetTerminal and pane:inject_output method
|
||||||
|
* add window-focus-changed event
|
||||||
|
* Expose applying an AttributeChange on CellAttributes
|
||||||
|
* x11: explicitly enable Dri2
|
||||||
|
* validate the config to prevent div by 0 for initial_cols/initial_rows
|
||||||
|
* tweak --always-new-process messaging
|
||||||
|
|
||||||
------------------------------------------------------------------
|
------------------------------------------------------------------
|
||||||
Tue Sep 06 11:44:03 UTC 2022 - socvirnyl.estela@gmail.com
|
Tue Sep 06 11:44:03 UTC 2022 - Soc Virnyl Estela <socvirnyl.estela@gmail.com>
|
||||||
|
|
||||||
- Add _constraints file to avoid memory exhaustion.
|
- Add _constraints file to avoid memory exhaustion.
|
||||||
- Update to version 20220905.102802.7d4b8249+git3:
|
- Update to version 20220905.102802.7d4b8249+git3:
|
||||||
@ -60,7 +75,7 @@ Tue Sep 06 11:44:03 UTC 2022 - socvirnyl.estela@gmail.com
|
|||||||
* update conpty to v1.14.2281.0 release
|
* update conpty to v1.14.2281.0 release
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Aug 29 06:43:55 UTC 2022 - socvirnyl.estela@gmail.com
|
Mon Aug 29 06:43:55 UTC 2022 - Soc Virnyl Estela <socvirnyl.estela@gmail.com>
|
||||||
|
|
||||||
- Update to version 20220807.113146.c2fee766+git109:
|
- Update to version 20220807.113146.c2fee766+git109:
|
||||||
* deps: tiny-skia 0.7 -> 0.8
|
* deps: tiny-skia 0.7 -> 0.8
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
name: wezterm
|
name: wezterm
|
||||||
version: 20220905.102802.7d4b8249+git3
|
version: termwiz-0.18.0+git37
|
||||||
mtime: 1662423004
|
mtime: 1665468400
|
||||||
commit: 86c9d7814860a93cc16d5edc204751ea27e17f03
|
commit: ed63d728bfe5b628352c9715617b7ca68ff96a54
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
%global rustflags -Clink-arg=-Wl,-z,relro,-z,now -C debuginfo=2
|
%global rustflags -Clink-arg=-Wl,-z,relro,-z,now -C debuginfo=2
|
||||||
|
|
||||||
Name: wezterm
|
Name: wezterm
|
||||||
Version: 20220905.102802.7d4b8249+git3
|
Version: 20220905.102802.7d4b8249+git117
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: GPU-accelerated cross-platform terminal emulator and multiplexer
|
Summary: GPU-accelerated cross-platform terminal emulator and multiplexer
|
||||||
URL: https://github.com/wez/wezterm
|
URL: https://github.com/wez/wezterm
|
||||||
@ -32,6 +32,7 @@ BuildRequires: Mesa-libEGL-devel
|
|||||||
|
|
||||||
%if 0%{?suse_version} > 1500
|
%if 0%{?suse_version} > 1500
|
||||||
BuildRequires: cargo-packaging
|
BuildRequires: cargo-packaging
|
||||||
|
BuildRequires: rust+cargo >= 1.43
|
||||||
%else
|
%else
|
||||||
BuildRequires: rust+cargo >= 1.43
|
BuildRequires: rust+cargo >= 1.43
|
||||||
%endif
|
%endif
|
||||||
|
Loading…
Reference in New Issue
Block a user