Wez Furlong
227e375a5f
deps: cargo update
2021-07-26 08:16:03 -07:00
Wez Furlong
a1f55049c5
deps: upgrade open 1.4 -> 2.0
...
The main difference is that it can now use `wslview` to open things
across wsl boundaries.
closes : #982
2021-07-26 08:15:02 -07:00
Autumn Lamonte
d2e2c5dec6
#133 clean up DECREQTPARM
2021-07-24 23:19:51 -07:00
Autumn Lamonte
31aff81884
#133 DECREQTPARM - needs cleanup
2021-07-24 23:10:52 -07:00
Wez Furlong
6ddc8afc64
termwiz: recognize the XTGETTCAP DCS sequence
...
Parse and respond to this sequence docs can be found
https://invisible-island.net/xterm/ctlseqs/ctlseqs.html#h4-Device-Control-functions:DCS-plus-q-Pt-ST.F95
refs: https://github.com/wez/wezterm/issues/954
2021-07-24 21:06:48 -07:00
Wez Furlong
a2e882a7cb
deps: cargo update, and a couple of dependabot suggestions
2021-07-18 19:10:46 -07:00
Wez Furlong
a697b30223
window: add xsettings support on X11 systems
...
This allows reading xsettings which contain information about
both the active theme as well as the DPI.
refs: #947
2021-07-18 12:54:52 -07:00
Wez Furlong
a7326f6c41
cargo update
2021-07-11 20:08:24 -07:00
Wez Furlong
566243ade5
mux: add some metrics around reading from ptys
2021-07-10 21:06:54 -07:00
Wez Furlong
fc4c165ca3
window: update wgpu -> 0.9
...
This is still used only in an example
2021-07-09 20:37:34 -07:00
Wez Furlong
91d6344180
weird dependency hack for mac+windows
...
Adding an edge from wezterm-ssh -> async_ossl causes the
openssl vendoring feature selection logic to trigger, which
in turn allows `cargo build -p window --examples` to succeed
again on macos.
2021-07-09 20:34:42 -07:00
Wez Furlong
aac2e78970
update http_req -> 0.8
...
0.8 doesn't seem to build with rusttls, but I don't think
we need that any more: we've been using vendored openssl on windows
and mac for some time.
closes : #924
refs: https://github.com/jayjamesjay/http_req/issues/48
2021-07-07 13:37:57 -07:00
Wez Furlong
4f29f2bc80
cargo update
2021-07-07 13:27:16 -07:00
Wez Furlong
5044fcb98b
cargo update
2021-06-27 22:46:19 -07:00
Wez Furlong
0a00ffe98b
wayland: fix key repeat
...
The main culprit was the calloop feature that is used by default
in the underlying SCTK crate.
This commit:
* Routes keyboard processing via the same keyboard mapping code
that we use for X11
* Implements key repeats directly, and with awareness of elapsed
time in case the repeat rate is quicker than the event dispatching
quantum
* Disables the calloop feature of SCTK and let us do our own polling
of the wayland connection.
Critically, key repeat is sticky and unpredictable while calloop is
enabled.
closes : #669
2021-06-27 14:29:03 -07:00
Wez Furlong
edbb446183
deps: cargo update
2021-06-26 22:58:42 -07:00
Wez Furlong
e69869efa7
refactor deps so that window can depend on wezterm-font
...
I want to use this to render the font in the title bar
2021-06-26 22:58:42 -07:00
Wez Furlong
d04486f30a
wayland: replace andrew with tiny_skia
...
This has the consequence of removing the title bar text when
client side decorations are in use.
2021-06-26 22:58:42 -07:00
Wez Furlong
d1177a29c2
wayland: update to SCTK 0.14
2021-06-26 22:58:42 -07:00
Wez Furlong
355b2f5b5a
wayland: import ConceptFrame impl from SCTK
...
This has been removed in a later version, so pull it in ahead
of updating that dependency to verify that it builds.
2021-06-26 22:58:42 -07:00
Wez Furlong
4c0d789ac3
zeno -> tiny_skia
...
Mostly so that we can turn off anti-aliasing for smaller sizes,
but it also happens to be more complete anyway.
2021-06-25 22:55:42 -07:00
Wez Furlong
07799d0ab3
cargo update
2021-06-20 19:06:54 -07:00
Wez Furlong
1be3d016b1
deps: windows 0.9 -> 0.11
...
closes : #872
2021-06-16 08:29:09 -07:00
Wez Furlong
35b267677b
cargo update
2021-06-13 23:36:22 -07:00
Wez Furlong
6c702b568f
glyphcache: adopt zeno crate for drawing
...
This changes the fill_rect function over to use the zeno crate.
zeno allows describing a path and filling or stroking.
This commit doesn't strictly need that, but it sets things
up for more interesting custom glyphs in later commits.
refs: #584
refs: #588
2021-06-13 15:49:37 -07:00
Wez Furlong
4feefdd04a
cargo update
2021-06-07 08:32:05 -07:00
Wez Furlong
86cad2b1b0
cargo update
2021-05-30 23:06:36 -07:00
Wez Furlong
3093fb3eb6
wezterm-ssh: process Include statements
...
refs: https://github.com/wez/wezterm/issues/824
2021-05-28 22:16:24 -07:00
Wez Furlong
3f6ff534d3
windows: fix lingering cmd.exe panes
...
Since removing the regular periodic background tasks, we're now
prone to not noticing child processes exiting.
This commit explicictly schedules a thread to do that on Windows
so that we can close a tab as soon as it exits.
2021-05-28 15:11:29 -07:00
Wez Furlong
030e517b43
deps: metrics 0.15 -> 0.16, cargo update
2021-05-24 07:57:03 -07:00
Wez Furlong
f78190ec9c
filedescriptor: remove anyhow from public interface
...
Use thiserror instead
2021-05-23 14:24:01 -07:00
Arvedui
dbc278e59a
Fix spawning new tabs/windows in directory with urlunsafe paths
...
The CWD is internally stored as URL. The path component is therefore
stored percent_encoded. It must be decoded before use.
2021-05-18 08:33:06 -07:00
Wez Furlong
bf0320624d
cargo update
2021-05-17 07:28:56 -07:00
Wez Furlong
a59e9b1706
update metrics 0.14 -> 0.15
...
closes: https://github.com/wez/wezterm/pull/778
2021-05-11 19:20:24 -07:00
Wez Furlong
965e413c52
cargo update
2021-05-11 17:03:06 -07:00
Wez Furlong
4e6f341f10
window: wayland support is no longer optional at build time
2021-05-08 17:48:58 -07:00
Wez Furlong
058c3f612f
add wgpu example
2021-05-08 09:36:19 -07:00
Wez Furlong
c4e1f2434a
add raw-window-handle impls
2021-05-08 09:36:19 -07:00
Wez Furlong
d56bfd0b7f
window: separate gui window state from app state
...
Removes the callbacks type and replaces event dispatch with
an async capable channel.
This makes it a bit simpler to model some of the window internals,
and to prepare for a wgpu enabled future.
This changes have been tested only on linux so far.
2021-05-08 09:36:19 -07:00
Wez Furlong
d64b785290
deps: update windows dep to 0.4 -> 0.9
...
dependabot keeps trying and failing because lots of things changed.
Let's try and get ahead of it...
2021-05-03 22:05:35 -07:00
Wez Furlong
4af66ff4b1
wezterm-ssh: prep for release
2021-05-03 09:57:04 -07:00
Wez Furlong
7be475efb7
cargo update
2021-05-03 09:34:29 -07:00
Wez Furlong
8b71a57513
add debug overlay
...
Adds a `ShowDebugOverlay` key assignment that will create a tab
overlay that shows a limited number of recently logged events.
refs: https://github.com/wez/wezterm/issues/641
2021-05-03 09:19:38 -07:00
Wez Furlong
0c4c129b91
fonts: use toast notification for missing glyph notification
...
Popping open the config error window is a bit of overkill
2021-05-01 16:45:57 -07:00
Artur Sinila
faaf6dea30
cargo update
2021-05-01 11:29:39 -07:00
Wez Furlong
5b9be21165
prep for pty 0.4 release
2021-04-30 10:17:25 -07:00
Wez Furlong
d6c8eb1e3b
benchmarking shaping
...
`cargo test --release -p wezterm-gui -- --nocapture bench_shaping`:
```
running 1 test
100: 139.82µs
1000: 385.333µs
10000: 3.144203ms
test shapecache::test::bench_shaping ... ok
```
2021-04-27 21:48:15 -07:00
Wez Furlong
7e996950f6
add wezterm.truncate_to_width
...
refs: https://github.com/wez/wezterm/issues/647
2021-04-26 22:27:12 -07:00
Wez Furlong
9028da0a82
cargo update
2021-04-26 08:34:45 -07:00
Wez Furlong
9ddbcb4541
cargo update
2021-04-19 09:23:33 -07:00