From d387bfa573207116c1233a24a25f3884f8d7f4de4643cc79c2c294eb083c2810 Mon Sep 17 00:00:00 2001 From: Soc Virnyl Estela Date: Mon, 21 Nov 2022 03:49:03 +0000 Subject: [PATCH] - Update to version 20221119.145034.49b9839f: * fix IME composition status applying to all panes * allow disabling tabs, new tab button in tab bar * Update macos docs with wezterm CLI installation (#2619) * docs: changelog for https://github.com/wez/wezterm/pull/2661 * Fix relative CWD path given on command line being interpreted as within the server's CWD * fixes flow chart and typo in config file docs * docs: changelog for https://github.com/wez/wezterm/pull/2636 * Fix background cover algorithm * Fix dragging by left or right status with retro tab bar * docs: fix MoveTabRelative default key assignments * docs: update first example to use wezterm.action style * gui: improve error message for unsupported height/width values for Color and Gradient * webgpu: improve messaging when no adapters are found * webgpu: minor optimization of shader * use constants for has_color values in wgsl shader and in the rust code * webgpu: support hsv transforms * fix resizing on windows when wgpu is enabled * add some config options to influence webgpu selection * make drawRect work on macos when using webgpu * This makes webgpu actually render * fixup crash when running in webgpu mode * plumb webgpu code into draw path * Abstract more over the render state, add RenderContext * put WebGpuState into an Rc * Add IndexBuffer abstraction * Add VertexBuffer abstraction * Add MappedVertexBuffer abstraction * make TripleLayerQuadAlloctor::Gpu(BorrowedLayers) self-referential * use a self-referential struct for mapping vertexbuffers * erase generic T from Atlas, Sprite, CachedGlyph etc. * notionally allow webgpu texture atlas creation * make Vertex conform to Pod * Basic useless wgpu based rendering foundation * deps: update raw-window-handle * docs: add_wsl_distributions_to_launch_menu was removed * partially handling overflowing tab titles * changelog for https://github.com/wez/wezterm/pull/2746 * Allow windows installer to run on arm64 emulating x64 * rustdoc markdown fences-- * xcursor: parse and follow theme inheritance * reduce size of BoxedQuad by 2/3 * quads: switch to allocating quads rather than contiguous vertices * remove dead code * Add support for heap profiling using dhat * perf: adjust clustering when bidi is disabled * lfucache: improve LFU algorithm and structure * refactor: move lfucache into its own crate * cargo update * docs: remove wezterm-nightly-bin AUR link * gui: fix cursor color invalidation issue * Fix horizontal wheel events * docs for #2702 * keyevent: fixup prevent_fallback processing * docs: changelog for #2112 * wezterm.terminfo: add statusline entries * cargo update * Fix compiler warning * keys: add prevent_fallback option for ActivateKeyTable * docs: changelog for https://github.com/wez/wezterm/pull/2670 * Continue parsing cmdline arguments in the desktop file * Allow to pass the command to execute via "-e" * rust 1.65 does a better job with enum packing * termwiz: release 0.19 * fix: temp fix for Android build error * deps: cargo update for openssl * deps: cargo update * deps: remove async-std dep OBS-URL: https://build.opensuse.org/package/show/X11:terminals/wezterm?expand=0&rev=48 --- _service | 5 +- cargo_config | 5 +- vendor.tar.gz | 4 +- ...erm-20220905.102802.7d4b8249+git147.tar.gz | 3 - wezterm-20221119.145034.49b9839f.tar.gz | 3 + wezterm.changes | 72 +++++++++++++++++++ wezterm.obsinfo | 6 +- wezterm.spec | 2 +- 8 files changed, 88 insertions(+), 12 deletions(-) delete mode 100644 wezterm-20220905.102802.7d4b8249+git147.tar.gz create mode 100644 wezterm-20221119.145034.49b9839f.tar.gz diff --git a/_service b/_service index afd354e..16210bf 100644 --- a/_service +++ b/_service @@ -1,9 +1,10 @@ https://github.com/wez/wezterm.git - @PARENT_TAG@+git@TAG_OFFSET@ + @PARENT_TAG@ git - 43f2265ef1ccfbb52e6596982156df57c382e1aa + 49b9839fdb41eff4d2aae3bb91e6a4befb9cd20b + 20221119-145034-49b9839f (\d+)-(\d+)-(\w+) \1.\2.\3 enable diff --git a/cargo_config b/cargo_config index 0cce5ad..73f9992 100644 --- a/cargo_config +++ b/cargo_config @@ -16,4 +16,7 @@ branch = "waiting-on-release" replace-with = "vendored-sources" [source.vendored-sources] -directory = "vendor" \ No newline at end of file +directory = "vendor" + +[profile] +release = { strip = "symbols", lto = "thin", opt-level = "z" } diff --git a/vendor.tar.gz b/vendor.tar.gz index 190df66..5a80de5 100644 --- a/vendor.tar.gz +++ b/vendor.tar.gz @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ab87099a1b1492dce4c7c50e021d09a87f24be838b2d838c8faa330a42f4100b -size 100300347 +oid sha256:7ee7226de9331668365569a3fa242ff753f06d50dec6fad664471b91aa6e3f4c +size 102967082 diff --git a/wezterm-20220905.102802.7d4b8249+git147.tar.gz b/wezterm-20220905.102802.7d4b8249+git147.tar.gz deleted file mode 100644 index c26fb15..0000000 --- a/wezterm-20220905.102802.7d4b8249+git147.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:08c58e7914b0f1bd9de0a6840a3f0a39a93d1db3deeb5f2e08bef71bf5d7d3e4 -size 547430400 diff --git a/wezterm-20221119.145034.49b9839f.tar.gz b/wezterm-20221119.145034.49b9839f.tar.gz new file mode 100644 index 0000000..a80a893 --- /dev/null +++ b/wezterm-20221119.145034.49b9839f.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:634c26fb8f1c15e9c5a2f42f0f675e18e4bd486c64ef3ee0a3dbdb4c0773822f +size 124929618 diff --git a/wezterm.changes b/wezterm.changes index 7096956..6736073 100644 --- a/wezterm.changes +++ b/wezterm.changes @@ -1,3 +1,75 @@ +------------------------------------------------------------------- +Mon Nov 21 03:25:19 UTC 2022 - socvirnyl.estela@gmail.com + +- Update to version 20221119.145034.49b9839f: + * fix IME composition status applying to all panes + * allow disabling tabs, new tab button in tab bar + * Update macos docs with wezterm CLI installation (#2619) + * docs: changelog for https://github.com/wez/wezterm/pull/2661 + * Fix relative CWD path given on command line being interpreted as within the server's CWD + * fixes flow chart and typo in config file docs + * docs: changelog for https://github.com/wez/wezterm/pull/2636 + * Fix background cover algorithm + * Fix dragging by left or right status with retro tab bar + * docs: fix MoveTabRelative default key assignments + * docs: update first example to use wezterm.action style + * gui: improve error message for unsupported height/width values for Color and Gradient + * webgpu: improve messaging when no adapters are found + * webgpu: minor optimization of shader + * use constants for has_color values in wgsl shader and in the rust code + * webgpu: support hsv transforms + * fix resizing on windows when wgpu is enabled + * add some config options to influence webgpu selection + * make drawRect work on macos when using webgpu + * This makes webgpu actually render + * fixup crash when running in webgpu mode + * plumb webgpu code into draw path + * Abstract more over the render state, add RenderContext + * put WebGpuState into an Rc + * Add IndexBuffer abstraction + * Add VertexBuffer abstraction + * Add MappedVertexBuffer abstraction + * make TripleLayerQuadAlloctor::Gpu(BorrowedLayers) self-referential + * use a self-referential struct for mapping vertexbuffers + * erase generic T from Atlas, Sprite, CachedGlyph etc. + * notionally allow webgpu texture atlas creation + * make Vertex conform to Pod + * Basic useless wgpu based rendering foundation + * deps: update raw-window-handle + * docs: add_wsl_distributions_to_launch_menu was removed + * partially handling overflowing tab titles + * changelog for https://github.com/wez/wezterm/pull/2746 + * Allow windows installer to run on arm64 emulating x64 + * rustdoc markdown fences-- + * xcursor: parse and follow theme inheritance + * reduce size of BoxedQuad by 2/3 + * quads: switch to allocating quads rather than contiguous vertices + * remove dead code + * Add support for heap profiling using dhat + * perf: adjust clustering when bidi is disabled + * lfucache: improve LFU algorithm and structure + * refactor: move lfucache into its own crate + * cargo update + * docs: remove wezterm-nightly-bin AUR link + * gui: fix cursor color invalidation issue + * Fix horizontal wheel events + * docs for #2702 + * keyevent: fixup prevent_fallback processing + * docs: changelog for #2112 + * wezterm.terminfo: add statusline entries + * cargo update + * Fix compiler warning + * keys: add prevent_fallback option for ActivateKeyTable + * docs: changelog for https://github.com/wez/wezterm/pull/2670 + * Continue parsing cmdline arguments in the desktop file + * Allow to pass the command to execute via "-e" + * rust 1.65 does a better job with enum packing + * termwiz: release 0.19 + * fix: temp fix for Android build error + * deps: cargo update for openssl + * deps: cargo update + * deps: remove async-std dep + ------------------------------------------------------------------- Thu Nov 3 18:30:01 UTC 2022 - Jan Engelhardt diff --git a/wezterm.obsinfo b/wezterm.obsinfo index d8e2f2e..344bd5f 100644 --- a/wezterm.obsinfo +++ b/wezterm.obsinfo @@ -1,4 +1,4 @@ name: wezterm -version: termwiz-0.18.0+git67 -mtime: 1666583447 -commit: 43f2265ef1ccfbb52e6596982156df57c382e1aa +version: 20221119.145034.49b9839f +mtime: 1668894634 +commit: 49b9839fdb41eff4d2aae3bb91e6a4befb9cd20b diff --git a/wezterm.spec b/wezterm.spec index c9dbb2d..bd7dc80 100644 --- a/wezterm.spec +++ b/wezterm.spec @@ -19,7 +19,7 @@ %global rustflags -Clink-arg=-Wl,-z,relro,-z,now -C debuginfo=2 Name: wezterm -Version: 20220905.102802.7d4b8249+git147 +Version: 20221119.145034.49b9839f Release: 0 Summary: GPU-accelerated cross-platform terminal emulator and multiplexer URL: https://github.com/wez/wezterm