Skip to content

Releases: wez/wezterm

20191229-193639-e7aa2f3

30 Dec 03:39
Compare
Choose a tag to compare
fix typo for source upload

20191229-190132-847214c

30 Dec 03:04
Compare
Choose a tag to compare
Yet another different way to upload release assets

20191218-101156-bf35707

18 Dec 18:33
@wez wez
Compare
Choose a tag to compare
  • Configuration errors detected during config loading are now shown as a system notification
  • New font_dirs configuration option to specify a set of dirs to search for fonts. Useful for self-contained wezterm deployments.
  • The font_system option has been split into font_locator, font_shaper and font_rasterizer options.
  • Don't allow child processes to inherit open font files on posix systems!
  • Disable Nagle's algorithm for wezterm ssh sessions
  • Add native Wayland window system support

20191124-233250-cb9fd7d

25 Nov 07:43
@wez wez
Compare
Choose a tag to compare

Main changes since the last tag:

  • New tab bar UI displays tabs and allows creating new tabs
  • Configuration file changes are hot reloaded and take effect automatically on save
  • wezterm ssh user@host for ad-hoc SSH sessions. You may also define SSH multiplexer sessions.
  • wezterm serial /dev/ttyUSB0 to connect to your Arduino
  • wezterm imgcat /some/image.png to display images inline in the terminal using the iTerm2 image protocol
  • IME support on macOS and Windows systems
  • Automatic fallback to software rendering if no GPU is available (eg: certain types of remote desktop sessions)

20190626-162911-cc019ce

26 Jun 23:49
@wez wez
Compare
Choose a tag to compare
don't build nightly-nightly builds

20190623-095503-6999f15

23 Jun 17:06
@wez wez
Compare
Choose a tag to compare
really fix ' issue, schedule a nightly pre-release

20190622-182319-23f8c9d

23 Jun 02:30
@wez wez
Compare
Choose a tag to compare
add another link to multiplexing docs

20190602-182820-c0e3bdf

03 Jun 01:58
@wez wez
Compare
Choose a tag to compare
termwiz: avoid emitting a wake event on a spurious pipe wakeup

20190520-072639-015a97e: add pty example that runs whoami

20 May 14:59
@wez wez
Compare
Choose a tag to compare
Refs: https://github.com/wez/wezterm/issues/27

20190507-215356-073f9fb

08 May 05:16
@wez wez
Compare
Choose a tag to compare
use AtomicUsize::new(0) instead of ATOMIC_USIZE_INIT

Replace ATOMIC_USIZE_INIT with AtomicUsize::new(0) as the constant has been
deprecated in favour of calling the constructor.