- Update to version 20220807.113146.c2fee766+git106:
* add user-var-changed event * improve error message in case wezterm-gui cannot be run * fixup invalidation of blinking cursor, and on focus change * cargo fmt * track fps and recent frame duration for diagnostic purposes * invalidate shape cache when reverse video mode changes * Add some comments about new Pane methods and helpers * flesh out some todos with new pane trait methods * implement new pane trait methods for copy and quickselect overlays * move shape & quad caching to hang off Line appdata * revise Pane line related funcs * termwiz: use interior mutability for Line::set_appdata * cargo fmt * disable some of the recent caching stuff * termwiz: remove reverse video attribute from Line * mux: remove stale portion of comment from Pane::get_lines * termwiz: associate appdata with a Line * fix copymode and quickselect overlays * trim down lru cache sizes * allow cursor_fg = "none" to use text fg color * gui: cache get_lines_with_hyperlinks_applied * optimize Pane::get_lines_with_hyperlinks_applied for empty rules case * gui: factor out background rect calc * fix blinking text * fixup retro tab bar * macos: make us run again on Mojave * docs: mention CPU utilization improvements in changelog * ssh: correctly expand %h tokens in ssh config * scroll to bottom on mouse input when mouse is grabbed OBS-URL: https://build.opensuse.org/package/show/X11:terminals/wezterm?expand=0&rev=33
This commit is contained in:
parent
0da9dbefb6
commit
3d42510851
2
_service
2
_service
@ -3,7 +3,7 @@
|
||||
<param name="url">https://github.com/wez/wezterm.git</param>
|
||||
<param name="versionformat">@PARENT_TAG@+git@TAG_OFFSET@</param>
|
||||
<param name="scm">git</param>
|
||||
<param name="revision">4fead3171ecdd1513d420af040c9ff75b9cefe41</param>
|
||||
<param name="revision">1398c0d4b03a0179bd0fb8c1067bf76b98a0d598</param>
|
||||
<param name="versionrewrite-pattern">(\d+)-(\d+)-(\w+)</param>
|
||||
<param name="versionrewrite-replacement">\1.\2.\3</param>
|
||||
<param name="changesgenerate">enable</param>
|
||||
|
@ -1,11 +1,6 @@
|
||||
[source.crates-io]
|
||||
replace-with = "vendored-sources"
|
||||
|
||||
[source."https://github.com/khvzak/mlua"]
|
||||
git = "https://github.com/khvzak/mlua"
|
||||
branch = "master"
|
||||
replace-with = "vendored-sources"
|
||||
|
||||
[source."https://github.com/wez/libssh-rs.git"]
|
||||
git = "https://github.com/wez/libssh-rs.git"
|
||||
replace-with = "vendored-sources"
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ad2c0c70fa58624a3076f0738bb52b048d4e7734bd30316fd939ce2f8208c0ba
|
||||
size 91173029
|
||||
oid sha256:0bf76790701141b95f0d31540005779002aacc66d2f45359b3f26a2b3a94eac4
|
||||
size 91222575
|
||||
|
3
wezterm-20220807.113146.c2fee766+git106.obscpio
Normal file
3
wezterm-20220807.113146.c2fee766+git106.obscpio
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b291dd4b532683df3e5f4651d8c5e9c9b839aea2d238f2cce094eb5e2dc97b47
|
||||
size 249491470
|
3
wezterm-20220807.113146.c2fee766+git106.tar.gz
Normal file
3
wezterm-20220807.113146.c2fee766+git106.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a85ddcf5c7ea3cfd4cf0d8cd35dd4e938fc317d6cb2fe9e187eae8f471209df2
|
||||
size 118536679
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0915427aefcd60275578b78e2e150217fc5d7b24ecadd3a5fe589d18513cfaf6
|
||||
size 249373710
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:846b803bfa5e30e17612b245f5efbe0b5682c8a6537514605c60767d4c9a28d0
|
||||
size 118513070
|
@ -1,5 +1,77 @@
|
||||
-------------------------------------------------------------------
|
||||
Sat Aug 20 06:20:08 UTC 2022 - socvirnyl.estela@gmail.com
|
||||
Sun Aug 28 00:34:09 UTC 2022 - Soc Virnyl Estela <socvirnyl.estela@gmail.com>
|
||||
|
||||
- Update to version 20220807.113146.c2fee766+git106:
|
||||
* add user-var-changed event
|
||||
* improve error message in case wezterm-gui cannot be run
|
||||
* fixup invalidation of blinking cursor, and on focus change
|
||||
* cargo fmt
|
||||
* track fps and recent frame duration for diagnostic purposes
|
||||
* invalidate shape cache when reverse video mode changes
|
||||
* Add some comments about new Pane methods and helpers
|
||||
* flesh out some todos with new pane trait methods
|
||||
* implement new pane trait methods for copy and quickselect overlays
|
||||
* move shape & quad caching to hang off Line appdata
|
||||
* revise Pane line related funcs
|
||||
* termwiz: use interior mutability for Line::set_appdata
|
||||
* cargo fmt
|
||||
* disable some of the recent caching stuff
|
||||
* termwiz: remove reverse video attribute from Line
|
||||
* mux: remove stale portion of comment from Pane::get_lines
|
||||
* termwiz: associate appdata with a Line
|
||||
* fix copymode and quickselect overlays
|
||||
* trim down lru cache sizes
|
||||
* allow cursor_fg = "none" to use text fg color
|
||||
* gui: cache get_lines_with_hyperlinks_applied
|
||||
* optimize Pane::get_lines_with_hyperlinks_applied for empty rules case
|
||||
* gui: factor out background rect calc
|
||||
* fix blinking text
|
||||
* fixup retro tab bar
|
||||
* macos: make us run again on Mojave
|
||||
* docs: mention CPU utilization improvements in changelog
|
||||
* ssh: correctly expand %h tokens in ssh config
|
||||
* scroll to bottom on mouse input when mouse is grabbed
|
||||
* Avoid full path canonicalization when resolving cwd
|
||||
* Add official dracula color scheme
|
||||
* add focus state to cache key
|
||||
* treat Constant ease-in-and-out as equivalent to "1 fps" case
|
||||
* improve blink easing scheduling
|
||||
* perf: cache quads by line
|
||||
* Abstract quad and layer allocation
|
||||
* add cheaper to cache shape info
|
||||
* start building out box model based render of pane
|
||||
* revise how uniforms are passed to shader
|
||||
* cargo update
|
||||
* conpty: work around mangled tmux title sequence
|
||||
* Add Sequoia color schemes
|
||||
* docs: changelog for max_fps https://github.com/wez/wezterm/discussions/2419
|
||||
* compensate for flickery TUI programs by going slower(!)
|
||||
* add pane select screenshot to appstream data
|
||||
* docs: fix typo
|
||||
* docs: CopyMode assignments now have their own individual pages
|
||||
* docs: changelog for https://github.com/wez/wezterm/issues/2350
|
||||
* respect close confirmation prompt when middle clicking a tab
|
||||
* deps: update zbus
|
||||
* cargo update
|
||||
* Add `fig` to shells for shell completion
|
||||
* macos: fixup CI build
|
||||
* macos: NSScreen::maximumFramesPerSecond is newish
|
||||
* docs: changelog for https://github.com/wez/wezterm/issues/2399
|
||||
* tab bar: force x and + buttons to be square
|
||||
* win32: implement max_fps option
|
||||
* win32: set ScreenInfo::max_fps
|
||||
* docs: fix link
|
||||
* add border size and color config
|
||||
* colors now override color_scheme
|
||||
* gui-startup event now also works for `wezterm ssh`.
|
||||
* fixup boundary condition for MoveBackwardZoneOfType
|
||||
* Fixup ActivatePaneDirection to respect edge intersection
|
||||
* x11: populate ScreenInfo::max_fps from xrandr
|
||||
* docs: changelog for https://github.com/wez/wezterm/pull/2402
|
||||
* Cache xdg-desktop-portal appearance
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Aug 20 06:20:08 UTC 2022 - Soc Virnyl Estela <socvirnyl.estela@gmail.com>
|
||||
|
||||
- Update to version 20220807.113146.c2fee766+git39:
|
||||
* macos: report max_fps in ScreenInfo
|
||||
@ -348,7 +420,7 @@ Thu Jun 23 14:49:14 UTC 2022 - socvirnyl.estela@gmail.com
|
||||
* github hyperlink example
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jun 16 13:04:52 UTC 2022 - socvirnyl.estela@gmail.com
|
||||
Thu Jun 16 13:04:52 UTC 2022 - Soc Virnyl Estela <socvirnyl.estela@gmail.com>
|
||||
|
||||
- Update to version 20220408.101518.b908e2dd^git356:
|
||||
* macos: use shift-tab hack with ctrl-shift-tab as well
|
||||
@ -367,7 +439,7 @@ Thu Jun 16 13:04:52 UTC 2022 - socvirnyl.estela@gmail.com
|
||||
* make enable_wayland = true the default
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 14 14:41:05 UTC 2022 - socvirnyl.estela@gmail.com
|
||||
Tue Jun 14 14:41:05 UTC 2022 - Soc Virnyl Estela <socvirnyl.estela@gmail.com>
|
||||
|
||||
- add completions for bash, fish, and zsh
|
||||
|
||||
@ -388,7 +460,7 @@ Tue Jun 14 14:41:05 UTC 2022 - socvirnyl.estela@gmail.com
|
||||
* fonts: fix automatic bold synthesis
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Jun 04 23:15:57 UTC 2022 - socvirnyl.estela@gmail.com
|
||||
Sat Jun 04 23:15:57 UTC 2022 - Soc Virnyl Estela <socvirnyl.estela@gmail.com>
|
||||
|
||||
- Update to version 20220408.101518.b908e2dd^git328:
|
||||
* x11: more hacks to deal with missing CONFIGURE_NOTIFY
|
||||
@ -419,7 +491,7 @@ Wed Jun 1 06:12:16 UTC 2022 - Soc Virnyl Estela <socvirnyl.estela@gmail.com>
|
||||
* Use clap::derive::Parser::parse() to fix deprecated warning
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat May 21 04:07:29 UTC 2022 - socvirnyl.estela@gmail.com
|
||||
Sat May 21 04:07:29 UTC 2022 - Soc Virnyl Estela <socvirnyl.estela@gmail.com>
|
||||
|
||||
- Update to version 20220408.101518.b908e2dd~232:
|
||||
* dynamic: allow defaulting to None for enum struct fields
|
||||
|
@ -1,4 +1,4 @@
|
||||
name: wezterm
|
||||
version: 20220807.113146.c2fee766+git39
|
||||
mtime: 1660968171
|
||||
commit: 4fead3171ecdd1513d420af040c9ff75b9cefe41
|
||||
version: 20220807.113146.c2fee766+git106
|
||||
mtime: 1661646141
|
||||
commit: 1398c0d4b03a0179bd0fb8c1067bf76b98a0d598
|
||||
|
@ -19,7 +19,7 @@
|
||||
%global rustflags -Clink-arg=-Wl,-z,relro,-z,now -C debuginfo=2
|
||||
|
||||
Name: wezterm
|
||||
Version: 20220807.113146.c2fee766+git39
|
||||
Version: 20220807.113146.c2fee766+git106
|
||||
Release: 0
|
||||
Summary: GPU-accelerated cross-platform terminal emulator and multiplexer
|
||||
URL: https://github.com/wez/wezterm
|
||||
|
Loading…
x
Reference in New Issue
Block a user