forked from pool/wezterm
- Update to version 20220624.141144.bd1b7c5d+git264:
* really fix termwiz --all-features build * lua: expose metrics to lua * fix termwiz --all-features build * wezterm.format: now supports rgba colors * termwiz: allow setting alpha for SGR fg, bg attributes * termwiz: ColorSpec now allows for alpha to be tracked * allow setting alpha for OSC 10, 11, 12 * term: avoid panic in phys_row when row is out of range * deps: harfbuzz -> 5.0.1 * tabs: revise active index after killing panes * deps: zstd 0.6 -> 0.11 * docs: fix typo in changelog * fix "no pane" tab hang when two panes close at once * Pane::search: expose range, limit. Limit quickselect by default * ci: try uploading sha256 files alongside release assets * json: fix visited hash set * termwiz: refactor: split line into sub-modules * docs: changelog for https://github.com/wez/wezterm/issues/2162 * term: fixup cursor position during rewrap * cargo update * search: fix coordinates for matches at EOL * mux: prefer compressed Lines when syncing * Line::wrap now prefers cluster storage * docs: changelog for scrollback/search improvements * search: debounce searches by ~350ms * search: fix incorrect highlight in search results * search: improve coordinates for new search implementation * rangeset: fix accidentally quadratic complexity * localpane: revise search method implementation OBS-URL: https://build.opensuse.org/package/show/X11:terminals/wezterm?expand=0&rev=22
This commit is contained in:
parent
7edf7c01f2
commit
335a19f2c7
4
_service
4
_service
@ -3,7 +3,7 @@
|
||||
<param name="url">https://github.com/wez/wezterm</param>
|
||||
<param name="versionformat">@PARENT_TAG@+git@TAG_OFFSET@</param>
|
||||
<param name="scm">git</param>
|
||||
<param name="revision">73993a60b42d2bd195712e4e3c408c13da79b3ed</param>
|
||||
<param name="revision">c7c81e316187dfc28d23fbd6444d2ab1b8ee5c32</param>
|
||||
<param name="versionrewrite-pattern">(\d+)-(\d+)-(\w+)</param>
|
||||
<param name="versionrewrite-replacement">\1.\2.\3</param>
|
||||
<param name="changesgenerate">enable</param>
|
||||
@ -18,7 +18,7 @@
|
||||
<service name="cargo_vendor" mode="disabled">
|
||||
<param name="srcdir">wezterm</param>
|
||||
<param name="compression">gz</param>
|
||||
<param name="update">false</param>
|
||||
<param name="update">true</param>
|
||||
</service>
|
||||
<service name="cargo_audit" mode="disabled">
|
||||
<param name="srcdir">wezterm</param>
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ae1d60f8fb816336c251881519d983ef7f0595bf359186d856a3baeae625ca22
|
||||
size 90564125
|
||||
oid sha256:9d3f96e62adb4589ae2bb8aa44534663e03d062d1a1a7f7cbf698f91388cf5f6
|
||||
size 91023491
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4c2c20d63a442c24b7f298b495272510a0dc65f72a07664ce91fe22a31e20398
|
||||
size 118316064
|
3
wezterm-20220624.141144.bd1b7c5d+git264.tar.gz
Normal file
3
wezterm-20220624.141144.bd1b7c5d+git264.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:591ee6438188b31b96d0c679791832b309cf40a3461385f200105a793ede9dd7
|
||||
size 118419892
|
@ -1,3 +1,101 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jul 28 03:04:12 UTC 2022 - socvirnyl.estela@gmail.com
|
||||
|
||||
- Update to version 20220624.141144.bd1b7c5d+git264:
|
||||
* really fix termwiz --all-features build
|
||||
* lua: expose metrics to lua
|
||||
* fix termwiz --all-features build
|
||||
* wezterm.format: now supports rgba colors
|
||||
* termwiz: allow setting alpha for SGR fg, bg attributes
|
||||
* termwiz: ColorSpec now allows for alpha to be tracked
|
||||
* allow setting alpha for OSC 10, 11, 12
|
||||
* term: avoid panic in phys_row when row is out of range
|
||||
* deps: harfbuzz -> 5.0.1
|
||||
* tabs: revise active index after killing panes
|
||||
* deps: zstd 0.6 -> 0.11
|
||||
* docs: fix typo in changelog
|
||||
* fix "no pane" tab hang when two panes close at once
|
||||
* Pane::search: expose range, limit. Limit quickselect by default
|
||||
* ci: try uploading sha256 files alongside release assets
|
||||
* json: fix visited hash set
|
||||
* termwiz: refactor: split line into sub-modules
|
||||
* docs: changelog for https://github.com/wez/wezterm/issues/2162
|
||||
* term: fixup cursor position during rewrap
|
||||
* cargo update
|
||||
* search: fix coordinates for matches at EOL
|
||||
* mux: prefer compressed Lines when syncing
|
||||
* Line::wrap now prefers cluster storage
|
||||
* docs: changelog for scrollback/search improvements
|
||||
* search: debounce searches by ~350ms
|
||||
* search: fix incorrect highlight in search results
|
||||
* search: improve coordinates for new search implementation
|
||||
* rangeset: fix accidentally quadratic complexity
|
||||
* localpane: revise search method implementation
|
||||
* term: refactor getting logical lines
|
||||
* term/termwiz: microoptimize set cell
|
||||
* termwiz: microoptimize ClusteredLine::set_last_cell_was_wrapped
|
||||
* termwiz: micro-optimize ClusteredLine::new(), set_last_wrapped
|
||||
* termwiz: don't claim that visible_cells is double-ended
|
||||
* termwiz: avoid cluster -> vec conversions in a few more cases
|
||||
* term: default to cluster storage
|
||||
* term: compress rows as they move into scrollback
|
||||
* Line::as_str() -> Cow<str>
|
||||
* termwiz: add clustered line storage for line
|
||||
* line: introduce possibility of alternate cell backing
|
||||
* termwiz: refactor Line::visible_cells()
|
||||
* fix reloading the global config when the appearance changes
|
||||
* termwiz: add bench for Cell creation/drop
|
||||
* term: refactor the charset/remapping out of flush_print
|
||||
* termwiz: add static WcLookupTable to codegen
|
||||
* termwiz: micro-optimize grapheme_column_width
|
||||
* termwiz: add criterion benches for wcwidth
|
||||
* termwiz: make emoji presentation very slightly more efficient
|
||||
* term: remove Line::invalidate_implicit_hyperlinks calls
|
||||
* Docs: Clean and slim the flowchart ...
|
||||
* Docs: Bring the connected nodes together ...
|
||||
* Docs: Improve the order in this mermaid code ...
|
||||
* Docs: Merge the common action in the keyb-concepts
|
||||
* docs: note about `wezterm-gui.exe --help` not outputting anything
|
||||
* wezterm cli spawn: update help and clap constraints
|
||||
* revise bug report template
|
||||
* quote pwd in open-wezterm-here
|
||||
* deploy: don't try to strip a shell script
|
||||
* Add open-wezterm-here script
|
||||
* rustfmt
|
||||
* update shell completions for `wezter show-keys` subcommand
|
||||
* wezterm cli: --workspace requires --new-window
|
||||
* add ClearScrollback example that adds CTRL-L after clearing
|
||||
* fix tab `x` button being obscured by tab title text
|
||||
* add gelatyx to verify-pages workflow
|
||||
* color schemes: add alias concept
|
||||
* sync nightfox color schemes
|
||||
* gui-startup event now accepts SpawnCommand
|
||||
* config: revert taking name from the first comment line of toml color scheme files
|
||||
* docs: changelog for #2253 #2273
|
||||
* docs: apply stylua formatting
|
||||
* docs: fix lua syntax
|
||||
* docs: split MuxPane
|
||||
* docs: fix lua syntax issues
|
||||
* docs: only try to format tracked files
|
||||
* docs: reformat lua code
|
||||
* key table activation timeout is now reset on matching key presses
|
||||
* add MuxTab:set_zoomed and SetPaneZoomState keyassignment
|
||||
* docs: fix parameters to call_after callback
|
||||
* lua: add wezterm.time.call_after and wezterm.reload_configuration
|
||||
* rustfmt
|
||||
* cargo update
|
||||
* lua: add wezterm.time and Time object
|
||||
* docs: changelog for #2103 #2271
|
||||
* add `--cwd .` to desktop file `Exec` field
|
||||
* change exec command in desktop file
|
||||
* term: fix encoding for modified F1-F4
|
||||
* lua: add wezterm.procinfo module
|
||||
* lua: add tostring impls for window, tab and pane objects
|
||||
* docs: clarify what happens when appearance changes
|
||||
* add Catppuccin color schemes
|
||||
* retro tab bar: use resolved palette for colors
|
||||
* schemes: prefer name from metadata when loading toml
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Jul 16 04:06:51 UTC 2022 - socvirnyl.estela@gmail.com
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
|
||||
Name: wezterm
|
||||
Version: 20220624.141144.bd1b7c5d+git171
|
||||
Version: 20220624.141144.bd1b7c5d+git264
|
||||
Release: 0
|
||||
Summary: GPU-accelerated cross-platform terminal emulator and multiplexer
|
||||
URL: https://github.com/wez/wezterm
|
||||
|
Loading…
Reference in New Issue
Block a user