docs: changelog
This commit is contained in:
@@ -4,6 +4,7 @@
|
|||||||
+ dev container post create install cross, [2d253f034182741d434e4bac12317f24221d0d4a]
|
+ dev container post create install cross, [2d253f034182741d434e4bac12317f24221d0d4a]
|
||||||
|
|
||||||
### Features
|
### Features
|
||||||
|
**all potentially considered breaking changes**
|
||||||
+ store Logs in own struct, use a hashset to track timestamps, hopefully closes #11, [657ea2d751a71f05b17547b47c492d5676817336]
|
+ 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]
|
+ 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]
|
+ align memory columns correctly, minimum byte display value now `0.00 kB`, rather than `0 B`, closes #20, [bd7dfcd2c512a527d66a1388f90006988a487186], [51c580010a24de2427373795803936d498dc8cee]
|
||||||
|
|||||||
@@ -51,7 +51,7 @@ rm oxker_linux_x86_64.tar.gz oxker
|
|||||||
|
|
||||||
or, for automatic platform selection, download, and installation (to `$HOME/.local/bin`)
|
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
|
```bash
|
||||||
curl https://raw.githubusercontent.com/mrjackwills/oxker/main/install.sh | bash
|
curl https://raw.githubusercontent.com/mrjackwills/oxker/main/install.sh | bash
|
||||||
|
|||||||
+2
-2
@@ -35,12 +35,12 @@ use crate::docker_data::DockerMessage;
|
|||||||
|
|
||||||
const ENTRY_POINT: &str = "./start_oxker.sh";
|
const ENTRY_POINT: &str = "./start_oxker.sh";
|
||||||
|
|
||||||
// write to file if `-g` is set?
|
/// write to file if `-g` is set?
|
||||||
fn setup_tracing() {
|
fn setup_tracing() {
|
||||||
tracing_subscriber::fmt().with_max_level(Level::INFO).init();
|
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(
|
async fn docker_init(
|
||||||
app_data: &Arc<Mutex<AppData>>,
|
app_data: &Arc<Mutex<AppData>>,
|
||||||
docker_rx: Receiver<DockerMessage>,
|
docker_rx: Receiver<DockerMessage>,
|
||||||
|
|||||||
Reference in New Issue
Block a user