From 8607d082dc5e0aacbd74279786bf98b1a5923b00 Mon Sep 17 00:00:00 2001 From: kxxt Date: Thu, 2 May 2024 09:43:10 +0800 Subject: [PATCH] chore: release 0.1.0-beta.1 --- CHANGELOG.md | 27 +++++++++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 29 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c32039c9..8b24978d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,32 @@ # Changelog +## v0.1.0-beta.1 + +tracexec v0.1.0-beta.1 released! + +Changes since v0.1.0-alpha.8: + +### Added + +- Add "Environment" tab to the details popup in TUI. +- Add scroll bars to event list in TUI. +- Handle argv[0] in logging mode. +- Send `Ctrl+S` to pty by pressing `Alt+S` when event list is active in TUI. + +### Changed + +- TUI now automatically selects the first/last event when the list is scrolled to the top/bottom or page up/down. +- In logging mode, the color of pid now matches TUI. + +### Fixed + +- Don't use option separator `-` in cmdline because it implies `--ignore-environment`. +- Fix the logic of argv[0] handling for both logging and TUI mode. +- Handle edge cases for the TUI event list when there are no events. +- Two off-by-one errors in the TUI event list. +- Clean up legacy code in pseduo terminal handling. +- Some typos. + ## v0.1.0-alpha.8 tracexec v0.1.0-alpha.8 released! diff --git a/Cargo.lock b/Cargo.lock index 77400c6b..a69546f8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1602,7 +1602,7 @@ dependencies = [ [[package]] name = "tracexec" -version = "0.1.0-alpha.8" +version = "0.1.0-beta.1" dependencies = [ "arboard", "atoi", diff --git a/Cargo.toml b/Cargo.toml index c3e2aa2d..826fa980 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tracexec" -version = "0.1.0-alpha.8" +version = "0.1.0-beta.1" edition = "2021" authors = ["Levi Zim "] description = "A small utility for tracing execve{,at}"