diff --git a/CHANGELOG.md b/CHANGELOG.md index a97eea52..382712f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,31 @@ # Changelog +## v0.1.0-alpha.6 + +tracexec v0.1.0-alpha.6 released! + +![tracexec v0.1.0-alpha.6](https://github.com/kxxt/tracexec/blob/main/screenshots/0.1.0-alpha.6.png?raw=true) + +Changes since v0.1.0-alpha.5: + +### Added/Changed + +- The panes in the TUI can now be resized by `G` and `S` keys. +- Vertical layout for the TUI is now supported. Use `--layout vertical` to enable it. +(Or dynamically switch between horizontal and vertical layout by `Alt+L` in the TUI) +- Line wrapping for bottom help text in the TUI. +- Hide navigation key bindings from the bottom help text in the TUI. +- Show verbose help text in the TUI when pressing `F1`. +- In TUI, failed exec events with `ENOENT` are now given a special color. +- Update the style of selected items and arg0 for the TUI. +- Title now shows on the left top corner in the TUI (alongside version). +- Scroll to (start/end)/top/bottom in the TUI by `(Shift + ) Home/End` keys. + +### Fixed + +- Don't render the TUI when the terminal is too small +- Don't horizontally scroll past content. + ## v0.1.0-alpha.5 tracexec v0.1.0-alpha.5 released! diff --git a/Cargo.lock b/Cargo.lock index 21c8e0f8..f577bc55 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1713,7 +1713,7 @@ dependencies = [ [[package]] name = "tracexec" -version = "0.1.0-alpha.5" +version = "0.1.0-alpha.6" dependencies = [ "arboard", "atoi", diff --git a/Cargo.toml b/Cargo.toml index 086c1e53..36476ba2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tracexec" -version = "0.1.0-alpha.5" +version = "0.1.0-alpha.6" edition = "2021" authors = ["Levi Zim "] description = "A small utility for tracing execve{,at}" diff --git a/screenshots/0.1.0-alpha.6.png b/screenshots/0.1.0-alpha.6.png new file mode 100644 index 00000000..e4f5c7a9 Binary files /dev/null and b/screenshots/0.1.0-alpha.6.png differ