diff --git a/CHANGELOG.md b/CHANGELOG.md index b6eaf582..c32039c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,30 @@ # Changelog +## v0.1.0-alpha.8 + +tracexec v0.1.0-alpha.8 released! + +Changes since v0.1.0-alpha.7: + +### Added/Changed + +- TUI: show basic statistics of events +- TUI: change colors for exec results. +- TUI: set frame rate from CLI by `--frame-rate/-F` option. +- TUI: default frame rate is now 60(previously 30). +- TUI: Add more details and scrollbar to the details popup. +- TUI: Copy to clipboard now works for the details popup. + +### Optimizations + +- Tweak tokio worker thread count. +- Reduce idle CPU usage in TUI mode. + - Lines and List are now cached for the event list. + +### Fixed + +- The formatting of interpreters now correctly respects color settings(e.g. NO_COLOR). + ## v0.1.0-alpha.7 tracexec v0.1.0-alpha.7 released! diff --git a/Cargo.lock b/Cargo.lock index 51b0259b..ae8bae56 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1775,7 +1775,7 @@ dependencies = [ [[package]] name = "tracexec" -version = "0.1.0-alpha.7" +version = "0.1.0-alpha.8" dependencies = [ "arboard", "atoi", diff --git a/Cargo.toml b/Cargo.toml index 00a24ba7..752ad519 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tracexec" -version = "0.1.0-alpha.7" +version = "0.1.0-alpha.8" edition = "2021" authors = ["Levi Zim "] description = "A small utility for tracing execve{,at}"