Skip to content

Commit 699e450

Browse files
committed
version bumps ad doc update
1 parent 9b77123 commit 699e450

File tree

5 files changed

+35
-4
lines changed

5 files changed

+35
-4
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,27 @@ All notable changes to this project will be documented in this file.
33

44
This project adheres to [Semantic Versioning](http://semver.org/).
55

6+
## [1.6.0] - 2023-03-20
7+
8+
### What's Changed
9+
* Add NetBSD instructions by @0323pin in https://github.com/solidiquis/erdtree/pull/77
10+
* Add repology badge by @jubalh in https://github.com/solidiquis/erdtree/pull/76
11+
* fix issue where level wasn't being read from config by @solidiquis in https://github.com/solidiquis/erdtree/pull/78
12+
* add scoop manifest by @fawni in https://github.com/solidiquis/erdtree/pull/80
13+
* default to num logical cpus rather than 4 threads by @solidiquis in https://github.com/solidiquis/erdtree/pull/81
14+
* Add support for generating shell completions by @Brezak in https://github.com/solidiquis/erdtree/pull/82
15+
* Fix miscoloration of directories that have extension by @fawni in https://github.com/solidiquis/erdtree/pull/83
16+
* [Optimization] - Upgraded heap-based tree data structure to an index-tree by @solidiquis in https://github.com/solidiquis/erdtree/pull/86
17+
* Replace tempdir crate with tempfile crate by @Brezak in https://github.com/solidiquis/erdtree/pull/87
18+
* fix issue where ansi escapes were being printed raw on windows by @solidiquis in https://github.com/solidiquis/erdtree/pull/90
19+
20+
### New Contributors
21+
* @0323pin made their first contribution in https://github.com/solidiquis/erdtree/pull/77
22+
* @jubalh made their first contribution in https://github.com/solidiquis/erdtree/pull/76
23+
* @Brezak made their first contribution in https://github.com/solidiquis/erdtree/pull/82
24+
25+
**Full Changelog**: https://github.com/solidiquis/erdtree/compare/v1.5.2...1.6.0
26+
627
## [1.5.2] - 2023-03-15
728

829
### Bug Fixes

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "erdtree"
3-
version = "1.5.2"
3+
version = "1.6.0"
44
edition = "2021"
55
authors = ["Benjamin Nguyen <[email protected]>"]
66
description = """

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ A modern, vibrant, and multi-threaded file-tree visualizer and disk usage analyz
2929
- [Hardlinks](#hardlinks)
3030
- [File coloring](#file-coloring)
3131
- [Icons](#icons)
32+
- [Completions](#completions)
3233
* [Comparisons against similar programs](#comparisons-against-similar-programs)
3334
- [tree command](#tree-command)
3435
- [Advantages over exa --tree](#advantages-over-exa---tree)
@@ -211,6 +212,15 @@ If your icons look something like this:
211212

212213
this means that the font you are using doesn't include the relevant glyphs. To resolve this issue download a [NerdFont](https://www.nerdfonts.com/) and hook it up to your terminal emulator.
213214

215+
### Completions
216+
217+
`--completions` is used to generate auto-completions for common shells so that the `tab` key can attempt to complete your command or give you hints; where you place the output highly depends on your shell as well as your setup. In my environment where I use `zshell` with `oh-my-zsh`, I would install completions like so:
218+
219+
```
220+
$ et --completions zsh > ~/.oh-my-zsh/completions/_et
221+
$ source ~/.zshrc
222+
```
223+
214224
## Comparisons against similar programs
215225

216226
### `tree` command

src/render/context/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ use std::{
1515
usize,
1616
};
1717

18-
/// Operations to load in `.erdtree.toml` defaults.
18+
/// Operations to load in defaults from configuration file.
1919
pub mod config;
2020

2121
/// Unit tests for [Context]
@@ -26,7 +26,7 @@ mod test;
2626
#[derive(Parser, Debug)]
2727
#[command(name = "erdtree")]
2828
#[command(author = "Benjamin Nguyen. <[email protected]>")]
29-
#[command(version = "1.5.2")]
29+
#[command(version = "1.6.0")]
3030
#[command(about = "erdtree (et) is a multi-threaded filetree visualizer and disk usage analyzer.", long_about = None)]
3131
pub struct Context {
3232
/// Root directory to traverse; defaults to current working directory

0 commit comments

Comments
 (0)