Skip to content

Commit

Permalink
chore(repo): version 0.35.0 (#2230)
Browse files Browse the repository at this point in the history
* chore(assets): new readme animation

* chore(assets): increase animation resolution

* chore(assets): improve animation

* chore(assets): improve animation

* docs(readme): some cleanups and clarifications

* docs(readme): fix links and wording

* chore(version): bump development version
  • Loading branch information
imsnif committed Mar 7, 2023
1 parent 38451aa commit 112782e
Show file tree
Hide file tree
Showing 9 changed files with 29 additions and 36 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "zellij"
version = "0.34.5"
version = "0.35.0"
authors = ["Aram Drevekenin <aram@poor.dev>"]
edition = "2021"
description = "A terminal workspace with batteries included"
Expand All @@ -17,9 +17,9 @@ anyhow = "1.0"
thiserror = "1.0.30"
names = { version = "0.13.0", default-features = false }
miette = { version = "3.3.0", features = ["fancy"] }
zellij-client = { path = "zellij-client/", version = "0.34.5" }
zellij-server = { path = "zellij-server/", version = "0.34.5" }
zellij-utils = { path = "zellij-utils/", version = "0.34.5" }
zellij-client = { path = "zellij-client/", version = "0.35.0" }
zellij-server = { path = "zellij-server/", version = "0.35.0" }
zellij-utils = { path = "zellij-utils/", version = "0.35.0" }
log = "0.4.17"
dialoguer = "0.10.1"
suggest = "0.4"
Expand Down
29 changes: 11 additions & 18 deletions README.md
Expand Up @@ -19,41 +19,36 @@

<h4 align="center">
[<a href="https://zellij.dev/documentation/installation">Installation</a>]
[<a href="https://zellij.dev/documentation/overview">Overview</a>]
[<a href="https://zellij.dev/screencasts/">Screencasts & Tutorials</a>]
[<a href="https://zellij.dev/documentation/configuration">Configuration</a>]
[<a href="https://zellij.dev/documentation/layouts-templates">Templates</a>]
[<a href="https://zellij.dev/documentation/layouts">Layouts</a>]
[<a href="https://zellij.dev/documentation/faq">FAQ</a>]
</h4>

# What is this?

[Zellij](https://en.wikipedia.org/wiki/Zellij) is a workspace aimed at developers, ops-oriented people and anyone who loves the terminal.
At its core, it is a terminal multiplexer (similar to [tmux](https://github.com/tmux/tmux) and [GNU Screen](https://www.gnu.org/software/screen/)), but this is merely its infrastructure layer.
[Zellij](https://en.wikipedia.org/wiki/Zellij) is a workspace aimed at developers, ops-oriented people and anyone who loves the terminal. Similar programs are sometimes called "Terminal Multiplexers".

Zellij includes a [layout system](https://zellij.dev/documentation/layouts.html), and a [plugin system](https://zellij.dev/documentation/plugins.html) allowing one to create plugins in any language that compiles to WebAssembly.
Zellij is designed around the philosophy that one must not sacrifice simplicity for power, taking pride in its great experience out of the box as well as the advanced features it places at its users' fingertips.

You can get started by [installing](https://zellij.dev/documentation/installation.html) Zellij and reading the [overview](https://zellij.dev/documentation/overview.html).
Zellij is geared toward beginner and power users alike - allowing deep customizability, personal automation through [layouts](https://zellij.dev/documentation/layouts.html), true multiplayer collaboration, unique UX features such as floating and stacked panes, and a [plugin system](https://zellij.dev/documentation/plugins.html) allowing one to create plugins in any language that compiles to WebAssembly.

For more details about our future plans, read about upcoming features in our [roadmap](#roadmap).
You can get started by [installing](https://zellij.dev/documentation/installation.html) Zellij and checking out the [Screencasts & Tutorials](https://zellij.dev/screencasts/).

Zellij was initially called ***Mosaic***.
For more details about our future plans, read about upcoming features in our [roadmap](#roadmap).

## How do I install it?

You can install with `cargo`:
The easiest way to install Zellij is through a [package for your OS](./docs/THIRD_PARTY_INSTALL.md).

```
cargo install --locked zellij
```
If one is not available for your OS, you could download a prebuilt binary from the [latest release](https://github.com/zellij-org/zellij/releases/latest) and place it in your `$PATH`. If you'd like, we could [automatically choose one for you](#try-zellij-without-installing).

Or if want to a prebuilt binary, you can download it from our [releases](https://github.com/zellij-org/zellij/releases), or use [`cargo-binstall`](https://github.com/ryankurte/cargo-binstall).
You can also install (compile) with `cargo`:

```
cargo-binstall zellij
cargo install --locked zellij
```

Or you can also use [Third Party Repositories](./docs/THIRD_PARTY_INSTALL.md).

#### Try Zellij without installing

bash/zsh:
Expand Down Expand Up @@ -91,8 +86,6 @@ For configuring Zellij, please see the [Configuration Documentation](https://zel

Zellij should be ready for everyday use, but it's still classified as a beta. This means that there might be a rare crash or wrong behaviour here and there, but that once found it should be fixed rather quickly. If this happens to you, we would be very happy if you could open an issue and tell us how to reproduce it as best you can.



## Roadmap
Presented here is the project roadmap, divided into three main sections.

Expand Down
Binary file modified assets/demo.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions zellij-client/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "zellij-client"
version = "0.34.5"
version = "0.35.0"
authors = ["Kunal Mohan <kunalmohan99@gmail.com>"]
edition = "2021"
description = "The client-side library for Zellij"
Expand All @@ -14,7 +14,7 @@ serde = { version = "1.0", features = ["derive"] }
url = { version = "2.2.2", features = ["serde"] }
serde_yaml = "0.8"
serde_json = "1.0"
zellij-utils = { path = "../zellij-utils/", version = "0.34.5" }
zellij-utils = { path = "../zellij-utils/", version = "0.35.0" }
log = "0.4.17"

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions zellij-server/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "zellij-server"
version = "0.34.5"
version = "0.35.0"
authors = ["Kunal Mohan <kunalmohan99@gmail.com>"]
edition = "2021"
description = "The server-side library for Zellij"
Expand All @@ -21,7 +21,7 @@ url = "2.2.2"
wasmer = "2.3.0"
wasmer-wasi = "2.3.0"
cassowary = "0.3.0"
zellij-utils = { path = "../zellij-utils/", version = "0.34.5" }
zellij-utils = { path = "../zellij-utils/", version = "0.35.0" }
log = "0.4.17"
typetag = "0.1.7"
chrono = "0.4.19"
Expand Down
2 changes: 1 addition & 1 deletion zellij-tile-utils/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "zellij-tile-utils"
version = "0.34.5"
version = "0.35.0"
authors = ["denis <denismaximov98@gmail.com>"]
edition = "2021"
description = "A utility library for Zellij plugins"
Expand Down
4 changes: 2 additions & 2 deletions zellij-tile/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "zellij-tile"
version = "0.34.5"
version = "0.35.0"
authors = ["Brooks J Rady <b.j.rady@gmail.com>"]
edition = "2021"
description = "A small client-side library for writing Zellij plugins"
Expand All @@ -12,4 +12,4 @@ serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
strum = "0.20.0"
strum_macros = "0.20.0"
zellij-utils = { path = "../zellij-utils/", version = "0.34.5" }
zellij-utils = { path = "../zellij-utils/", version = "0.35.0" }
2 changes: 1 addition & 1 deletion zellij-utils/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "zellij-utils"
version = "0.34.5"
version = "0.35.0"
authors = ["Kunal Mohan <kunalmohan99@gmail.com>"]
edition = "2021"
description = "A utility library for Zellij client and server"
Expand Down

0 comments on commit 112782e

Please sign in to comment.