docs: changelog

This commit is contained in:
Jack Wills
2023-01-21 22:06:53 +00:00
parent 3858e2ac23
commit a53de908c6
3 changed files with 4 additions and 3 deletions
+1
View File
@@ -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]
+1 -1
View File
@@ -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
+2 -2
View File
@@ -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<Mutex<AppData>>,
docker_rx: Receiver<DockerMessage>,