diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d92e72..9183050 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ + dev container post create install cross, [2d253f034182741d434e4bac12317f24221d0d4a] ### Features +**all potentially considered breaking changes** + store Logs in own struct, use a hashset to track timestamps, hopefully closes #11, [657ea2d751a71f05b17547b47c492d5676817336] + Spawn docker commands into own thread, can now execute multiple docker commands at the same time, [9ec43e124a62a80f4e78acba85fc3af5980ce260] + align memory columns correctly, minimum byte display value now `0.00 kB`, rather than `0 B`, closes #20, [bd7dfcd2c512a527d66a1388f90006988a487186], [51c580010a24de2427373795803936d498dc8cee] diff --git a/README.md b/README.md index c73c654..52660c0 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ rm oxker_linux_x86_64.tar.gz oxker or, for automatic platform selection, download, and installation (to `$HOME/.local/bin`) -*One should verify all scripts before running in your shell* +*One should always verify script content before running in a shell* ```bash curl https://raw.githubusercontent.com/mrjackwills/oxker/main/install.sh | bash diff --git a/src/main.rs b/src/main.rs index 4e107cf..863ad56 100644 --- a/src/main.rs +++ b/src/main.rs @@ -35,12 +35,12 @@ use crate::docker_data::DockerMessage; const ENTRY_POINT: &str = "./start_oxker.sh"; -// write to file if `-g` is set? +/// write to file if `-g` is set? fn setup_tracing() { tracing_subscriber::fmt().with_max_level(Level::INFO).init(); } -// Create docker daemon handler, and only spawn up the docker data handler if a ping returns non-error +/// Create docker daemon handler, and only spawn up the docker data handler if a ping returns non-error async fn docker_init( app_data: &Arc>, docker_rx: Receiver,