Skip to content

Releases: zellij-org/zellij

Release v0.37.0

18 Jun 12:27

Choose a tag to compare

In this release we've done a lot of work on our WebAssembly / WASI plugin system and are very excited to invite adventurous Rust developers to come pioneer our plugin system with us. To read more, please see the official Plugin Documentation.

Please also drop by our Discord or Matrix and show us the plugins you're working on!

Other Highlights

  • Some basic themes are now included with the release, give it a try by starting Zellij with zellij options --theme catppuccin-mocha
  • Layouts now support environment variables and tilde expansions
  • We can now provide a --cwd option when starting Zellij

All changes

New Contributors

Full Changelog: v0.36.0...v0.37.0

Release v0.36.0

13 Apr 08:44

Choose a tag to compare

This release includes some nice quality-of-life features, as well as some bug fixes.

Highlights

All changes

  • add my tweaked theme by @alekspickle in #2257
  • fix(screen): focus pane on screen edge when moving pane focus offtab by @imsnif in #2293
  • Correct summary by @Silejonu in #2235
  • Updated layout examples to .kdl from .yaml by @caleflat in #2250
  • fix(panes): adding panes to lone stack by @imsnif in #2298
  • fix(panes): closing a stacked pane should relayout by @imsnif in #2312
  • Fixed issue #1948 by @gbrigandi in #2322
  • feat(plugins): async plugin loading by @imsnif in #2327
  • docs(readme): update roadmap image by @imsnif in #2333
  • Add action to clear all buffers for a specific pane by @alekspickle in #2239
  • Added launch in xonsh by @anki-code in #2323
  • Add option to hide session name in tab-bar (deriving from #2172) by @marcel-baur in #2301
  • fix(layouts): don't default to default swap layouts on new-tab action by @imsnif in #2336
  • fix(layouts): nested attribute truncating by @imsnif in #2337
  • fix(scrollback-editor): properly invoke editor when command includes spaces by @imsnif in #2339
  • fix(layouts): focus tab race by @imsnif in #2340
  • feat(panes): allow defining an expanded stacked pane by @imsnif in #2343
  • fix(layout): pane focus in stack by @imsnif in #2344
  • fix(plugins): prevent Strider from opening double-panes when editing files by @imsnif in #2346
  • fix: set sticky bit on socket by @tlinford in #2141
  • chore(assets): adjust logo by @imsnif in #2358
  • fix: do not hold on to router thread handle until server exit by @tlinford in #2328

New Contributors

Full Changelog: v0.35.2...v0.36.0

Release v0.35.2

10 Mar 14:02

Choose a tag to compare

This is a patch release to fix some regressions and issues that came up in the last major release a few days ago. It only includes minor fixes.

What's Changed

  • fix(sessions): attach --create regression by @imsnif in #2247
  • fix(screen): hold and applylayout races by @imsnif in #2251
  • fix(ansi): pad line end when erasing characters by @imsnif in #2259

Full Changelog: v0.35.1...v0.35.2

Release v0.35.1

07 Mar 09:26

Choose a tag to compare

This release includes some major features and bug fixes.

Major features

  1. Stacked panes - try them out by opening 3 or more panes and then toggling the swap layout with Alt + []
  2. Swap layouts - You can now change the way the panes are arranged on screen, by default with Alt + []
  3. Floating panes can now be included in layouts

Notable bug fixes

  1. The loading screen is gone after the first run! The information queried from your terminal emulator will be cached in the default cache folder (~/.cache/zellij). If you change the font size or colors, you can update Zellij by removing the contents of this folder and reloading Zellij.
  2. The new-tab action now properly looks for your layouts in the default folder.
  3. Much more! See all changes below for more details.

All changes

New Contributors

Full Changelog: v0.34.4...v0.35.1

Release v0.34.4

13 Dec 14:11

Choose a tag to compare

This is a patch release to fix some regressions introduced in v0.34.3

Changes

  • Fix application crash when resizing with flexible plugin panes in layout (Issue #2006)
  • Allow the SHELL variable to contain non-absolute shell paths (e.g. SHELL=sh instead of SHELL=/bin/sh, Issue #2015)

Release v0.34.3

09 Dec 11:17

Choose a tag to compare

This is mostly a stability, performance and bug fix release, but also includes some nice additional features.

Main Changes

  1. Performance: both loading and rendering are significantly faster now and take less HW resources
  2. Loading screen: Zellij now has a minor loading screen (0.5 seconds) before it starts. This is so that input from STDIN will not be lost while Zellij queries the user's terminal emulator for pixel/cell ratio and the default colors
  3. We now fall back to /bin/sh if we can't find a $SHELL variable
  4. Users can now directionally decrease pane size and not just increase it - by default these are bound to HJKL (uppercase letter) in resize mode, but can be bound like anything to other keys.
  5. Lots of stability and bug fixes

Breaking Changes (mainly for plugin authors)

  1. If plugins exceed their scrollback, the lines will be deleted from the top and not the bottom as they were until now - this is to make the behaviour more consistent with "actual" terminals (lines are pushed into the scrollback rather than cut from below). Probably the most significant change here is that if you did \n at the last line of the plugin, you'll need to remove, otherwise you'll get an empty line at the end of the plugin pane.
  2. Whenever plugins (re-)render, they should completely re-render themselves without considering the previous cursor position or artifacts on screen
  3. The plugin update function now needs to return a bool value (0/1 in non-zellij-tile world), indicating whether the plugin needs to be rendered or not. This is significant because previously plugins who subscribed to the KeyPress event would render themselves on every keypress, regardless of whether anything changed. To make everything work, plugin authors can just always return true. To be a little smarter about it though, feel free to take a look at the Zellij default-plugins - who all return conditionally here.

For a full list of changes, please see: https://github.com/zellij-org/zellij/blob/main/CHANGELOG.md#0343---2022-12-09

Release v0.33.0

10 Nov 08:57

Choose a tag to compare

This release includes lots of bugfixes and improvements, as well as some much requested features after our recent configuration and layout revamp. Some highlights:

  • It's now possible to make Command Panes close when their process exits by using the close_on_exit true setting in the layout, or the --close-on-exit cli flag if opening them from the command line.
  • It's now also possible to start Command Panes suspended - meaning that their command will only run after initially pressing ENTER when focused on them. This can be useful when starting a dashboard-style layout and not wanting to immediately run all the commands.
  • Users can now toggle mouse mode at runtime using the ToggleMouseMode keybind (it is not bound by default so has to be explicitly bound in the keybinds configuration).
  • New themes! Check out our everforest and kanagawa themes.

Full list of changes

New Contributors

Full Changelog: v0.32.0...v0.33.0

Release v0.32.0

25 Oct 06:52

Choose a tag to compare

This is a pretty major Zellij release that includes lots of goodies mostly geared toward advanced users.

Notable Changes

  • All configuration has moved from YAML to KDL - see breaking change below
  • Command panes: try zellij run --floating -- ls -l
  • Send commands to Zellij through the CLI: see zellij action --help
  • New layout system

For more details and examples, see: https://zellij.dev/news/config-command-layouts/

Documentation for the new features

Breaking Change

This release changes the entire configuration language of Zellij from YAML to KDL. For configuration, layouts and themes.
When Zellij starts, it will prompt the user before converting the files automatically. The originals will not be modified.

This can also be done manually:

zellij convert-config /path/to/my/config.yaml > /path/to/my/config.kdl
zellij convert-layout /path/to/my/layout.yaml > /path/to/my/layout.kdl
zellij convert-theme /path/to/my/theme.yaml > /path/to/my/theme.kdl

All changes

New Contributors

Full Changelog: v0.31.4...v0.32.0

Release v0.31.4

09 Sep 11:05

Choose a tag to compare

This is a patch version including many stability and compatibility fixes, none of them breaking.

Changelog for this version

  • Terminal compatibility: improve vttest compliance (#1671)
  • fix: bracketed paste handling regression (#1689)
  • fix: occasional startup crashes (#1706)
  • fix: gracefully handle SSH disconnects (#1710)
  • fix: handle osc params larger than 1024 bytes (#1711)
  • Terminal compatibility: implement faux scrolling when in alternate screen mode(#1678)
  • fix: mouse-click on tab-bar in simplified-ui now always focuses the correct tab (#1658)
  • fix: sort UI cursors properly when multiple users are focused on the same pane (#1719)

All changes

New Contributors

Full Changelog: v0.31.3...v0.31.4

Release v0.31.3

18 Aug 07:01

Choose a tag to compare

This is a hotfix to fix a regression in the latest patch where Arrow-Up wasn't working.